Current Path : /storage/v11800/sahityaonline/

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

Upload File :
Current File : /storage/v11800/sahityaonline/.db.sql
-- MariaDB dump 10.19  Distrib 10.6.9-MariaDB, for debian-linux-gnu (aarch64)
--
-- Host: localhost    Database: sahityaonlinedb
-- ------------------------------------------------------
-- Server version	10.6.9-MariaDB-1:10.6.9+maria~ubu2004

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

--
-- Table structure for table `wp_commentmeta`
--

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

--
-- Dumping data for table `wp_commentmeta`
--

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

--
-- Table structure for table `wp_comments`
--

DROP TABLE IF EXISTS `wp_comments`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_comments` (
  `comment_ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `comment_post_ID` bigint(20) unsigned NOT NULL DEFAULT 0,
  `comment_author` tinytext 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 `wp_comments`
--

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

--
-- Table structure for table `wp_e_events`
--

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

--
-- Dumping data for table `wp_e_events`
--

LOCK TABLES `wp_e_events` WRITE;
/*!40000 ALTER TABLE `wp_e_events` DISABLE KEYS */;
INSERT INTO `wp_e_events` VALUES (1,'{\"event\":\"modal load\",\"version\":\"\",\"details\":\"{\\\"placement\\\":\\\"Onboarding wizard\\\",\\\"step\\\":\\\"account\\\",\\\"user_state\\\":\\\"anon\\\"}\",\"ts\":\"2023-09-05T14:32:24.790-06:30\"}','2023-09-05 14:32:24');
/*!40000 ALTER TABLE `wp_e_events` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_links`
--

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

--
-- Dumping data for table `wp_links`
--

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

--
-- Table structure for table `wp_options`
--

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

--
-- Dumping data for table `wp_options`
--

LOCK TABLES `wp_options` WRITE;
/*!40000 ALTER TABLE `wp_options` DISABLE KEYS */;
INSERT INTO `wp_options` VALUES (1,'siteurl','https://sahityaonline.in8.cdn-alpha.com','yes'),(2,'home','https://sahityaonline.in8.cdn-alpha.com','yes'),(3,'blogname','My WordPress','yes'),(4,'blogdescription','','yes'),(5,'users_can_register','0','yes'),(6,'admin_email','wp@dxpsites.com','yes'),(7,'start_of_week','1','yes'),(8,'use_balanceTags','0','yes'),(9,'use_smilies','1','yes'),(10,'require_name_email','1','yes'),(11,'comments_notify','1','yes'),(12,'posts_per_rss','10','yes'),(13,'rss_use_excerpt','0','yes'),(14,'mailserver_url','mail.example.com','yes'),(15,'mailserver_login','login@example.com','yes'),(16,'mailserver_pass','password','yes'),(17,'mailserver_port','110','yes'),(18,'default_category','1','yes'),(19,'default_comment_status','open','yes'),(20,'default_ping_status','open','yes'),(21,'default_pingback_flag','1','yes'),(22,'posts_per_page','10','yes'),(23,'date_format','F j, Y','yes'),(24,'time_format','g:i a','yes'),(25,'links_updated_date_format','F j, Y g:i a','yes'),(26,'comment_moderation','0','yes'),(27,'moderation_notify','1','yes'),(28,'permalink_structure','/%postname%/','yes'),(29,'rewrite_rules','a:150:{s:11:\"^wp-json/?$\";s:22:\"index.php?rest_route=/\";s:14:\"^wp-json/(.*)?\";s:33:\"index.php?rest_route=/$matches[1]\";s:21:\"^index.php/wp-json/?$\";s:22:\"index.php?rest_route=/\";s:24:\"^index.php/wp-json/(.*)?\";s:33:\"index.php?rest_route=/$matches[1]\";s:17:\"^wp-sitemap\\.xml$\";s:23:\"index.php?sitemap=index\";s:17:\"^wp-sitemap\\.xsl$\";s:36:\"index.php?sitemap-stylesheet=sitemap\";s:23:\"^wp-sitemap-index\\.xsl$\";s:34:\"index.php?sitemap-stylesheet=index\";s:48:\"^wp-sitemap-([a-z]+?)-([a-z\\d_-]+?)-(\\d+?)\\.xml$\";s:75:\"index.php?sitemap=$matches[1]&sitemap-subtype=$matches[2]&paged=$matches[3]\";s:34:\"^wp-sitemap-([a-z]+?)-(\\d+?)\\.xml$\";s:47:\"index.php?sitemap=$matches[1]&paged=$matches[2]\";s:47:\"category/(.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:42:\"category/(.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:23:\"category/(.+?)/embed/?$\";s:46:\"index.php?category_name=$matches[1]&embed=true\";s:35:\"category/(.+?)/page/?([0-9]{1,})/?$\";s:53:\"index.php?category_name=$matches[1]&paged=$matches[2]\";s:17:\"category/(.+?)/?$\";s:35:\"index.php?category_name=$matches[1]\";s:44:\"tag/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:39:\"tag/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:20:\"tag/([^/]+)/embed/?$\";s:36:\"index.php?tag=$matches[1]&embed=true\";s:32:\"tag/([^/]+)/page/?([0-9]{1,})/?$\";s:43:\"index.php?tag=$matches[1]&paged=$matches[2]\";s:14:\"tag/([^/]+)/?$\";s:25:\"index.php?tag=$matches[1]\";s:45:\"type/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:40:\"type/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:21:\"type/([^/]+)/embed/?$\";s:44:\"index.php?post_format=$matches[1]&embed=true\";s:33:\"type/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?post_format=$matches[1]&paged=$matches[2]\";s:15:\"type/([^/]+)/?$\";s:33:\"index.php?post_format=$matches[1]\";s:42:\"e-landing-page/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:52:\"e-landing-page/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:72:\"e-landing-page/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:67:\"e-landing-page/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:67:\"e-landing-page/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:48:\"e-landing-page/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:31:\"e-landing-page/([^/]+)/embed/?$\";s:47:\"index.php?e-landing-page=$matches[1]&embed=true\";s:35:\"e-landing-page/([^/]+)/trackback/?$\";s:41:\"index.php?e-landing-page=$matches[1]&tb=1\";s:43:\"e-landing-page/([^/]+)/page/?([0-9]{1,})/?$\";s:54:\"index.php?e-landing-page=$matches[1]&paged=$matches[2]\";s:50:\"e-landing-page/([^/]+)/comment-page-([0-9]{1,})/?$\";s:54:\"index.php?e-landing-page=$matches[1]&cpage=$matches[2]\";s:39:\"e-landing-page/([^/]+)(?:/([0-9]+))?/?$\";s:53:\"index.php?e-landing-page=$matches[1]&page=$matches[2]\";s:31:\"e-landing-page/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:41:\"e-landing-page/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:61:\"e-landing-page/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:56:\"e-landing-page/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:56:\"e-landing-page/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:37:\"e-landing-page/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:45:\"elementskit-content/.+?/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:55:\"elementskit-content/.+?/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:75:\"elementskit-content/.+?/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:70:\"elementskit-content/.+?/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:70:\"elementskit-content/.+?/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:51:\"elementskit-content/.+?/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:34:\"elementskit-content/(.+?)/embed/?$\";s:52:\"index.php?elementskit_content=$matches[1]&embed=true\";s:38:\"elementskit-content/(.+?)/trackback/?$\";s:46:\"index.php?elementskit_content=$matches[1]&tb=1\";s:46:\"elementskit-content/(.+?)/page/?([0-9]{1,})/?$\";s:59:\"index.php?elementskit_content=$matches[1]&paged=$matches[2]\";s:53:\"elementskit-content/(.+?)/comment-page-([0-9]{1,})/?$\";s:59:\"index.php?elementskit_content=$matches[1]&cpage=$matches[2]\";s:42:\"elementskit-content/(.+?)(?:/([0-9]+))?/?$\";s:58:\"index.php?elementskit_content=$matches[1]&page=$matches[2]\";s:40:\"elementor-hf/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:50:\"elementor-hf/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:70:\"elementor-hf/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:65:\"elementor-hf/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:65:\"elementor-hf/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:46:\"elementor-hf/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:29:\"elementor-hf/([^/]+)/embed/?$\";s:45:\"index.php?elementor-hf=$matches[1]&embed=true\";s:33:\"elementor-hf/([^/]+)/trackback/?$\";s:39:\"index.php?elementor-hf=$matches[1]&tb=1\";s:41:\"elementor-hf/([^/]+)/page/?([0-9]{1,})/?$\";s:52:\"index.php?elementor-hf=$matches[1]&paged=$matches[2]\";s:48:\"elementor-hf/([^/]+)/comment-page-([0-9]{1,})/?$\";s:52:\"index.php?elementor-hf=$matches[1]&cpage=$matches[2]\";s:37:\"elementor-hf/([^/]+)(?:/([0-9]+))?/?$\";s:51:\"index.php?elementor-hf=$matches[1]&page=$matches[2]\";s:29:\"elementor-hf/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:39:\"elementor-hf/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:59:\"elementor-hf/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:54:\"elementor-hf/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:54:\"elementor-hf/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:35:\"elementor-hf/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:38:\"metform-form/.+?/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:48:\"metform-form/.+?/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:68:\"metform-form/.+?/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:63:\"metform-form/.+?/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:63:\"metform-form/.+?/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:44:\"metform-form/.+?/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:27:\"metform-form/(.+?)/embed/?$\";s:45:\"index.php?metform-form=$matches[1]&embed=true\";s:31:\"metform-form/(.+?)/trackback/?$\";s:39:\"index.php?metform-form=$matches[1]&tb=1\";s:39:\"metform-form/(.+?)/page/?([0-9]{1,})/?$\";s:52:\"index.php?metform-form=$matches[1]&paged=$matches[2]\";s:46:\"metform-form/(.+?)/comment-page-([0-9]{1,})/?$\";s:52:\"index.php?metform-form=$matches[1]&cpage=$matches[2]\";s:35:\"metform-form/(.+?)(?:/([0-9]+))?/?$\";s:51:\"index.php?metform-form=$matches[1]&page=$matches[2]\";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=114&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:8:{i:0;s:91:\"all-in-one-wp-migration-unlimited-extension/all-in-one-wp-migration-unlimited-extension.php\";i:1;s:51:\"all-in-one-wp-migration/all-in-one-wp-migration.php\";i:2;s:23:\"elementor/elementor.php\";i:3;s:37:\"elementskit-lite/elementskit-lite.php\";i:4;s:51:\"header-footer-elementor/header-footer-elementor.php\";i:5;s:39:\"jeg-elementor-kit/jeg-elementor-kit.php\";i:6;s:19:\"metform/metform.php\";i:7;s:43:\"template-kit-import/template-kit-import.php\";}','yes'),(34,'category_base','','yes'),(35,'ping_sites','http://rpc.pingomatic.com/','yes'),(36,'comment_max_links','2','yes'),(37,'gmt_offset','5.5','yes'),(38,'default_email_category','1','yes'),(39,'recently_edited','','no'),(40,'template','hello-elementor','yes'),(41,'stylesheet','hello-elementor','yes'),(42,'comment_registration','0','yes'),(43,'html_type','text/html','yes'),(44,'use_trackback','0','yes'),(45,'default_role','subscriber','yes'),(46,'db_version','55853','yes'),(47,'uploads_use_yearmonth_folders','1','yes'),(48,'upload_path','','yes'),(49,'blog_public','1','yes'),(50,'default_link_category','2','yes'),(51,'show_on_front','page','yes'),(52,'tag_base','','yes'),(53,'show_avatars','1','yes'),(54,'avatar_rating','G','yes'),(55,'upload_url_path','','yes'),(56,'thumbnail_size_w','150','yes'),(57,'thumbnail_size_h','150','yes'),(58,'thumbnail_crop','1','yes'),(59,'medium_size_w','300','yes'),(60,'medium_size_h','300','yes'),(61,'avatar_default','mystery','yes'),(62,'large_size_w','1024','yes'),(63,'large_size_h','1024','yes'),(64,'image_default_link_type','none','yes'),(65,'image_default_size','','yes'),(66,'image_default_align','','yes'),(67,'close_comments_for_old_posts','0','yes'),(68,'close_comments_days_old','14','yes'),(69,'thread_comments','1','yes'),(70,'thread_comments_depth','5','yes'),(71,'page_comments','0','yes'),(72,'comments_per_page','50','yes'),(73,'default_comments_page','newest','yes'),(74,'comment_order','asc','yes'),(75,'sticky_posts','a:0:{}','yes'),(76,'widget_categories','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(77,'widget_text','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(78,'widget_rss','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(79,'uninstall_plugins','a:1:{s:23:\"elementor/elementor.php\";a:2:{i:0;s:21:\"Elementor\\Maintenance\";i:1;s:9:\"uninstall\";}}','no'),(80,'timezone_string','','yes'),(81,'page_for_posts','0','yes'),(82,'page_on_front','114','yes'),(83,'default_post_format','0','yes'),(84,'link_manager_enabled','0','yes'),(85,'finished_splitting_shared_terms','1','yes'),(86,'site_icon','112','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','1709446767','yes'),(92,'disallowed_keys','','no'),(93,'comment_previously_approved','1','yes'),(94,'auto_plugin_theme_update_emails','a:0:{}','no'),(95,'auto_update_core_dev','enabled','yes'),(96,'auto_update_core_minor','enabled','yes'),(97,'auto_update_core_major','enabled','yes'),(98,'wp_force_deactivated_plugins','a:0:{}','yes'),(99,'initial_db_version','55853','yes'),(100,'wp_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','1','no'),(103,'widget_block','a:6:{i:2;a:1:{s:7:\"content\";s:19:\"<!-- wp:search /-->\";}i:3;a:1:{s:7:\"content\";s:154:\"<!-- wp:group --><div class=\"wp-block-group\"><!-- wp:heading --><h2>Recent Posts</h2><!-- /wp:heading --><!-- wp:latest-posts /--></div><!-- /wp:group -->\";}i:4;a:1:{s:7:\"content\";s:227:\"<!-- wp:group --><div class=\"wp-block-group\"><!-- wp:heading --><h2>Recent Comments</h2><!-- /wp:heading --><!-- wp:latest-comments {\"displayAvatar\":false,\"displayDate\":false,\"displayExcerpt\":false} /--></div><!-- /wp:group -->\";}i:5;a:1:{s:7:\"content\";s:146:\"<!-- wp:group --><div class=\"wp-block-group\"><!-- wp:heading --><h2>Archives</h2><!-- /wp:heading --><!-- wp:archives /--></div><!-- /wp:group -->\";}i:6;a:1:{s:7:\"content\";s:150:\"<!-- wp:group --><div class=\"wp-block-group\"><!-- wp:heading --><h2>Categories</h2><!-- /wp:heading --><!-- wp:categories /--></div><!-- /wp:group -->\";}s:12:\"_multiwidget\";i:1;}','yes'),(104,'sidebars_widgets','a:2:{s:19:\"wp_inactive_widgets\";a:5:{i:0;s:7:\"block-2\";i:1;s:7:\"block-3\";i:2;s:7:\"block-4\";i:3;s:7:\"block-5\";i:4;s:7:\"block-6\";}s:13:\"array_version\";i:3;}','yes'),(105,'cron','a:9:{i:1693894768;a:7:{s:32:\"recovery_mode_clean_expired_keys\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}s:18:\"wp_https_detection\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}s: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;}}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: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:1693904137;a:3:{s:19:\"wp_scheduled_delete\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}s:25:\"delete_expired_transients\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}s:21:\"wp_update_user_counts\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1693904139;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:1693904197;a:1:{s:28:\"wp_update_comment_type_batch\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:0:{}}}}i:1693904539;a:1:{s:28:\"elementor/tracker/send_event\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1693981168;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:1693990538;a:1:{s:21:\"ai1wm_storage_cleanup\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1695299990;a:1:{s:34:\"elementor_1_elementor_updater_cron\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:43:\"elementor_1_elementor_updater_cron_interval\";s:4:\"args\";a:0:{}s:8:\"interval\";i:300;}}}s:7:\"version\";i:2;}','yes'),(106,'widget_pages','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(107,'widget_calendar','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(108,'widget_archives','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(109,'widget_media_audio','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(110,'widget_media_image','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(111,'widget_media_gallery','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(112,'widget_media_video','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(113,'widget_meta','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(114,'widget_search','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(115,'widget_recent-posts','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(116,'widget_recent-comments','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(117,'widget_tag_cloud','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(118,'widget_nav_menu','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(119,'widget_custom_html','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(120,'_transient_wp_core_block_css_files','a:496:{i:0;s:84:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/archives/editor-rtl.css\";i:1;s:88:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/archives/editor-rtl.min.css\";i:2;s:80:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/archives/editor.css\";i:3;s:84:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/archives/editor.min.css\";i:4;s:83:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/archives/style-rtl.css\";i:5;s:87:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/archives/style-rtl.min.css\";i:6;s:79:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/archives/style.css\";i:7;s:83:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/archives/style.min.css\";i:8;s:81:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/audio/editor-rtl.css\";i:9;s:85:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/audio/editor-rtl.min.css\";i:10;s:77:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/audio/editor.css\";i:11;s:81:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/audio/editor.min.css\";i:12;s:80:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/audio/style-rtl.css\";i:13;s:84:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/audio/style-rtl.min.css\";i:14;s:76:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/audio/style.css\";i:15;s:80:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/audio/style.min.css\";i:16;s:80:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/audio/theme-rtl.css\";i:17;s:84:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/audio/theme-rtl.min.css\";i:18;s:76:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/audio/theme.css\";i:19;s:80:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/audio/theme.min.css\";i:20;s:82:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/avatar/editor-rtl.css\";i:21;s:86:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/avatar/editor-rtl.min.css\";i:22;s:78:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/avatar/editor.css\";i:23;s:82:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/avatar/editor.min.css\";i:24;s:81:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/avatar/style-rtl.css\";i:25;s:85:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/avatar/style-rtl.min.css\";i:26;s:77:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/avatar/style.css\";i:27;s:81:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/avatar/style.min.css\";i:28;s:81:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/block/editor-rtl.css\";i:29;s:85:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/block/editor-rtl.min.css\";i:30;s:77:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/block/editor.css\";i:31;s:81:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/block/editor.min.css\";i:32;s:82:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/button/editor-rtl.css\";i:33;s:86:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/button/editor-rtl.min.css\";i:34;s:78:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/button/editor.css\";i:35;s:82:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/button/editor.min.css\";i:36;s:81:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/button/style-rtl.css\";i:37;s:85:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/button/style-rtl.min.css\";i:38;s:77:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/button/style.css\";i:39;s:81:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/button/style.min.css\";i:40;s:83:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/buttons/editor-rtl.css\";i:41;s:87:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/buttons/editor-rtl.min.css\";i:42;s:79:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/buttons/editor.css\";i:43;s:83:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/buttons/editor.min.css\";i:44;s:82:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/buttons/style-rtl.css\";i:45;s:86:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/buttons/style-rtl.min.css\";i:46;s:78:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/buttons/style.css\";i:47;s:82:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/buttons/style.min.css\";i:48;s:83:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/calendar/style-rtl.css\";i:49;s:87:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/calendar/style-rtl.min.css\";i:50;s:79:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/calendar/style.css\";i:51;s:83:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/calendar/style.min.css\";i:52;s:86:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/categories/editor-rtl.css\";i:53;s:90:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/categories/editor-rtl.min.css\";i:54;s:82:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/categories/editor.css\";i:55;s:86:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/categories/editor.min.css\";i:56;s:85:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/categories/style-rtl.css\";i:57;s:89:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/categories/style-rtl.min.css\";i:58;s:81:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/categories/style.css\";i:59;s:85:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/categories/style.min.css\";i:60;s:80:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/code/editor-rtl.css\";i:61;s:84:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/code/editor-rtl.min.css\";i:62;s:76:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/code/editor.css\";i:63;s:80:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/code/editor.min.css\";i:64;s:79:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/code/style-rtl.css\";i:65;s:83:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/code/style-rtl.min.css\";i:66;s:75:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/code/style.css\";i:67;s:79:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/code/style.min.css\";i:68;s:79:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/code/theme-rtl.css\";i:69;s:83:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/code/theme-rtl.min.css\";i:70;s:75:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/code/theme.css\";i:71;s:79:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/code/theme.min.css\";i:72;s:83:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/columns/editor-rtl.css\";i:73;s:87:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/columns/editor-rtl.min.css\";i:74;s:79:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/columns/editor.css\";i:75;s:83:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/columns/editor.min.css\";i:76;s:82:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/columns/style-rtl.css\";i:77;s:86:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/columns/style-rtl.min.css\";i:78;s:78:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/columns/style.css\";i:79;s:82:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/columns/style.min.css\";i:80;s:90:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/comment-content/style-rtl.css\";i:81;s:94:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/comment-content/style-rtl.min.css\";i:82;s:86:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/comment-content/style.css\";i:83;s:90:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/comment-content/style.min.css\";i:84;s:91:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/comment-template/style-rtl.css\";i:85;s:95:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/comment-template/style-rtl.min.css\";i:86;s:87:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/comment-template/style.css\";i:87;s:91:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/comment-template/style.min.css\";i:88;s:103:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/comments-pagination-numbers/editor-rtl.css\";i:89;s:107:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/comments-pagination-numbers/editor-rtl.min.css\";i:90;s:99:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/comments-pagination-numbers/editor.css\";i:91;s:103:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/comments-pagination-numbers/editor.min.css\";i:92;s:95:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/comments-pagination/editor-rtl.css\";i:93;s:99:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/comments-pagination/editor-rtl.min.css\";i:94;s:91:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/comments-pagination/editor.css\";i:95;s:95:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/comments-pagination/editor.min.css\";i:96;s:94:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/comments-pagination/style-rtl.css\";i:97;s:98:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/comments-pagination/style-rtl.min.css\";i:98;s:90:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/comments-pagination/style.css\";i:99;s:94:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/comments-pagination/style.min.css\";i:100;s:90:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/comments-title/editor-rtl.css\";i:101;s:94:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/comments-title/editor-rtl.min.css\";i:102;s:86:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/comments-title/editor.css\";i:103;s:90:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/comments-title/editor.min.css\";i:104;s:84:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/comments/editor-rtl.css\";i:105;s:88:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/comments/editor-rtl.min.css\";i:106;s:80:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/comments/editor.css\";i:107;s:84:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/comments/editor.min.css\";i:108;s:83:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/comments/style-rtl.css\";i:109;s:87:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/comments/style-rtl.min.css\";i:110;s:79:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/comments/style.css\";i:111;s:83:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/comments/style.min.css\";i:112;s:81:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/cover/editor-rtl.css\";i:113;s:85:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/cover/editor-rtl.min.css\";i:114;s:77:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/cover/editor.css\";i:115;s:81:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/cover/editor.min.css\";i:116;s:80:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/cover/style-rtl.css\";i:117;s:84:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/cover/style-rtl.min.css\";i:118;s:76:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/cover/style.css\";i:119;s:80:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/cover/style.min.css\";i:120;s:83:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/details/editor-rtl.css\";i:121;s:87:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/details/editor-rtl.min.css\";i:122;s:79:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/details/editor.css\";i:123;s:83:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/details/editor.min.css\";i:124;s:82:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/details/style-rtl.css\";i:125;s:86:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/details/style-rtl.min.css\";i:126;s:78:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/details/style.css\";i:127;s:82:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/details/style.min.css\";i:128;s:81:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/embed/editor-rtl.css\";i:129;s:85:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/embed/editor-rtl.min.css\";i:130;s:77:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/embed/editor.css\";i:131;s:81:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/embed/editor.min.css\";i:132;s:80:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/embed/style-rtl.css\";i:133;s:84:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/embed/style-rtl.min.css\";i:134;s:76:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/embed/style.css\";i:135;s:80:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/embed/style.min.css\";i:136;s:80:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/embed/theme-rtl.css\";i:137;s:84:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/embed/theme-rtl.min.css\";i:138;s:76:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/embed/theme.css\";i:139;s:80:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/embed/theme.min.css\";i:140;s:80:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/file/editor-rtl.css\";i:141;s:84:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/file/editor-rtl.min.css\";i:142;s:76:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/file/editor.css\";i:143;s:80:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/file/editor.min.css\";i:144;s:79:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/file/style-rtl.css\";i:145;s:83:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/file/style-rtl.min.css\";i:146;s:75:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/file/style.css\";i:147;s:79:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/file/style.min.css\";i:148;s:84:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/footnotes/style-rtl.css\";i:149;s:88:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/footnotes/style-rtl.min.css\";i:150;s:80:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/footnotes/style.css\";i:151;s:84:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/footnotes/style.min.css\";i:152;s:84:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/freeform/editor-rtl.css\";i:153;s:88:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/freeform/editor-rtl.min.css\";i:154;s:80:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/freeform/editor.css\";i:155;s:84:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/freeform/editor.min.css\";i:156;s:83:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/gallery/editor-rtl.css\";i:157;s:87:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/gallery/editor-rtl.min.css\";i:158;s:79:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/gallery/editor.css\";i:159;s:83:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/gallery/editor.min.css\";i:160;s:82:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/gallery/style-rtl.css\";i:161;s:86:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/gallery/style-rtl.min.css\";i:162;s:78:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/gallery/style.css\";i:163;s:82:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/gallery/style.min.css\";i:164;s:82:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/gallery/theme-rtl.css\";i:165;s:86:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/gallery/theme-rtl.min.css\";i:166;s:78:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/gallery/theme.css\";i:167;s:82:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/gallery/theme.min.css\";i:168;s:81:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/group/editor-rtl.css\";i:169;s:85:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/group/editor-rtl.min.css\";i:170;s:77:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/group/editor.css\";i:171;s:81:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/group/editor.min.css\";i:172;s:80:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/group/style-rtl.css\";i:173;s:84:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/group/style-rtl.min.css\";i:174;s:76:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/group/style.css\";i:175;s:80:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/group/style.min.css\";i:176;s:80:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/group/theme-rtl.css\";i:177;s:84:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/group/theme-rtl.min.css\";i:178;s:76:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/group/theme.css\";i:179;s:80:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/group/theme.min.css\";i:180;s:82:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/heading/style-rtl.css\";i:181;s:86:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/heading/style-rtl.min.css\";i:182;s:78:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/heading/style.css\";i:183;s:82:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/heading/style.min.css\";i:184;s:80:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/html/editor-rtl.css\";i:185;s:84:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/html/editor-rtl.min.css\";i:186;s:76:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/html/editor.css\";i:187;s:80:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/html/editor.min.css\";i:188;s:81:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/image/editor-rtl.css\";i:189;s:85:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/image/editor-rtl.min.css\";i:190;s:77:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/image/editor.css\";i:191;s:81:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/image/editor.min.css\";i:192;s:80:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/image/style-rtl.css\";i:193;s:84:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/image/style-rtl.min.css\";i:194;s:76:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/image/style.css\";i:195;s:80:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/image/style.min.css\";i:196;s:80:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/image/theme-rtl.css\";i:197;s:84:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/image/theme-rtl.min.css\";i:198;s:76:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/image/theme.css\";i:199;s:80:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/image/theme.min.css\";i:200;s:90:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/latest-comments/style-rtl.css\";i:201;s:94:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/latest-comments/style-rtl.min.css\";i:202;s:86:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/latest-comments/style.css\";i:203;s:90:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/latest-comments/style.min.css\";i:204;s:88:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/latest-posts/editor-rtl.css\";i:205;s:92:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/latest-posts/editor-rtl.min.css\";i:206;s:84:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/latest-posts/editor.css\";i:207;s:88:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/latest-posts/editor.min.css\";i:208;s:87:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/latest-posts/style-rtl.css\";i:209;s:91:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/latest-posts/style-rtl.min.css\";i:210;s:83:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/latest-posts/style.css\";i:211;s:87:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/latest-posts/style.min.css\";i:212;s:79:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/list/style-rtl.css\";i:213;s:83:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/list/style-rtl.min.css\";i:214;s:75:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/list/style.css\";i:215;s:79:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/list/style.min.css\";i:216;s:86:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/media-text/editor-rtl.css\";i:217;s:90:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/media-text/editor-rtl.min.css\";i:218;s:82:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/media-text/editor.css\";i:219;s:86:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/media-text/editor.min.css\";i:220;s:85:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/media-text/style-rtl.css\";i:221;s:89:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/media-text/style-rtl.min.css\";i:222;s:81:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/media-text/style.css\";i:223;s:85:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/media-text/style.min.css\";i:224;s:80:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/more/editor-rtl.css\";i:225;s:84:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/more/editor-rtl.min.css\";i:226;s:76:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/more/editor.css\";i:227;s:80:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/more/editor.min.css\";i:228;s:91:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/navigation-link/editor-rtl.css\";i:229;s:95:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/navigation-link/editor-rtl.min.css\";i:230;s:87:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/navigation-link/editor.css\";i:231;s:91:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/navigation-link/editor.min.css\";i:232;s:90:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/navigation-link/style-rtl.css\";i:233;s:94:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/navigation-link/style-rtl.min.css\";i:234;s:86:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/navigation-link/style.css\";i:235;s:90:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/navigation-link/style.min.css\";i:236;s:94:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/navigation-submenu/editor-rtl.css\";i:237;s:98:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/navigation-submenu/editor-rtl.min.css\";i:238;s:90:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/navigation-submenu/editor.css\";i:239;s:94:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/navigation-submenu/editor.min.css\";i:240;s:86:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/navigation/editor-rtl.css\";i:241;s:90:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/navigation/editor-rtl.min.css\";i:242;s:82:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/navigation/editor.css\";i:243;s:86:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/navigation/editor.min.css\";i:244;s:85:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/navigation/style-rtl.css\";i:245;s:89:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/navigation/style-rtl.min.css\";i:246;s:81:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/navigation/style.css\";i:247;s:85:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/navigation/style.min.css\";i:248;s:84:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/nextpage/editor-rtl.css\";i:249;s:88:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/nextpage/editor-rtl.min.css\";i:250;s:80:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/nextpage/editor.css\";i:251;s:84:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/nextpage/editor.min.css\";i:252;s:85:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/page-list/editor-rtl.css\";i:253;s:89:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/page-list/editor-rtl.min.css\";i:254;s:81:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/page-list/editor.css\";i:255;s:85:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/page-list/editor.min.css\";i:256;s:84:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/page-list/style-rtl.css\";i:257;s:88:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/page-list/style-rtl.min.css\";i:258;s:80:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/page-list/style.css\";i:259;s:84:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/page-list/style.min.css\";i:260;s:85:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/paragraph/editor-rtl.css\";i:261;s:89:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/paragraph/editor-rtl.min.css\";i:262;s:81:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/paragraph/editor.css\";i:263;s:85:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/paragraph/editor.min.css\";i:264;s:84:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/paragraph/style-rtl.css\";i:265;s:88:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/paragraph/style-rtl.min.css\";i:266;s:80:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/paragraph/style.css\";i:267;s:84:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/paragraph/style.min.css\";i:268;s:86:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/post-author/style-rtl.css\";i:269;s:90:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/post-author/style-rtl.min.css\";i:270;s:82:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/post-author/style.css\";i:271;s:86:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/post-author/style.min.css\";i:272;s:94:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/post-comments-form/editor-rtl.css\";i:273;s:98:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/post-comments-form/editor-rtl.min.css\";i:274;s:90:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/post-comments-form/editor.css\";i:275;s:94:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/post-comments-form/editor.min.css\";i:276;s:93:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/post-comments-form/style-rtl.css\";i:277;s:97:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/post-comments-form/style-rtl.min.css\";i:278;s:89:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/post-comments-form/style.css\";i:279;s:93:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/post-comments-form/style.min.css\";i:280;s:84:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/post-date/style-rtl.css\";i:281;s:88:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/post-date/style-rtl.min.css\";i:282;s:80:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/post-date/style.css\";i:283;s:84:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/post-date/style.min.css\";i:284;s:88:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/post-excerpt/editor-rtl.css\";i:285;s:92:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/post-excerpt/editor-rtl.min.css\";i:286;s:84:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/post-excerpt/editor.css\";i:287;s:88:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/post-excerpt/editor.min.css\";i:288;s:87:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/post-excerpt/style-rtl.css\";i:289;s:91:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/post-excerpt/style-rtl.min.css\";i:290;s:83:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/post-excerpt/style.css\";i:291;s:87:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/post-excerpt/style.min.css\";i:292;s:95:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/post-featured-image/editor-rtl.css\";i:293;s:99:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/post-featured-image/editor-rtl.min.css\";i:294;s:91:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/post-featured-image/editor.css\";i:295;s:95:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/post-featured-image/editor.min.css\";i:296;s:94:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/post-featured-image/style-rtl.css\";i:297;s:98:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/post-featured-image/style-rtl.min.css\";i:298;s:90:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/post-featured-image/style.css\";i:299;s:94:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/post-featured-image/style.min.css\";i:300;s:95:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/post-navigation-link/style-rtl.css\";i:301;s:99:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/post-navigation-link/style-rtl.min.css\";i:302;s:91:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/post-navigation-link/style.css\";i:303;s:95:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/post-navigation-link/style.min.css\";i:304;s:89:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/post-template/editor-rtl.css\";i:305;s:93:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/post-template/editor-rtl.min.css\";i:306;s:85:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/post-template/editor.css\";i:307;s:89:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/post-template/editor.min.css\";i:308;s:88:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/post-template/style-rtl.css\";i:309;s:92:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/post-template/style-rtl.min.css\";i:310;s:84:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/post-template/style.css\";i:311;s:88:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/post-template/style.min.css\";i:312;s:85:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/post-terms/style-rtl.css\";i:313;s:89:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/post-terms/style-rtl.min.css\";i:314;s:81:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/post-terms/style.css\";i:315;s:85:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/post-terms/style.min.css\";i:316;s:85:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/post-title/style-rtl.css\";i:317;s:89:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/post-title/style-rtl.min.css\";i:318;s:81:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/post-title/style.css\";i:319;s:85:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/post-title/style.min.css\";i:320;s:87:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/preformatted/style-rtl.css\";i:321;s:91:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/preformatted/style-rtl.min.css\";i:322;s:83:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/preformatted/style.css\";i:323;s:87:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/preformatted/style.min.css\";i:324;s:85:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/pullquote/editor-rtl.css\";i:325;s:89:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/pullquote/editor-rtl.min.css\";i:326;s:81:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/pullquote/editor.css\";i:327;s:85:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/pullquote/editor.min.css\";i:328;s:84:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/pullquote/style-rtl.css\";i:329;s:88:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/pullquote/style-rtl.min.css\";i:330;s:80:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/pullquote/style.css\";i:331;s:84:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/pullquote/style.min.css\";i:332;s:84:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/pullquote/theme-rtl.css\";i:333;s:88:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/pullquote/theme-rtl.min.css\";i:334;s:80:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/pullquote/theme.css\";i:335;s:84:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/pullquote/theme.min.css\";i:336;s:100:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/query-pagination-numbers/editor-rtl.css\";i:337;s:104:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/query-pagination-numbers/editor-rtl.min.css\";i:338;s:96:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/query-pagination-numbers/editor.css\";i:339;s:100:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/query-pagination-numbers/editor.min.css\";i:340;s:92:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/query-pagination/editor-rtl.css\";i:341;s:96:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/query-pagination/editor-rtl.min.css\";i:342;s:88:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/query-pagination/editor.css\";i:343;s:92:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/query-pagination/editor.min.css\";i:344;s:91:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/query-pagination/style-rtl.css\";i:345;s:95:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/query-pagination/style-rtl.min.css\";i:346;s:87:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/query-pagination/style.css\";i:347;s:91:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/query-pagination/style.min.css\";i:348;s:86:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/query-title/style-rtl.css\";i:349;s:90:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/query-title/style-rtl.min.css\";i:350;s:82:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/query-title/style.css\";i:351;s:86:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/query-title/style.min.css\";i:352;s:81:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/query/editor-rtl.css\";i:353;s:85:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/query/editor-rtl.min.css\";i:354;s:77:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/query/editor.css\";i:355;s:81:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/query/editor.min.css\";i:356;s:80:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/quote/style-rtl.css\";i:357;s:84:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/quote/style-rtl.min.css\";i:358;s:76:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/quote/style.css\";i:359;s:80:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/quote/style.min.css\";i:360;s:80:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/quote/theme-rtl.css\";i:361;s:84:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/quote/theme-rtl.min.css\";i:362;s:76:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/quote/theme.css\";i:363;s:80:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/quote/theme.min.css\";i:364;s:84:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/read-more/style-rtl.css\";i:365;s:88:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/read-more/style-rtl.min.css\";i:366;s:80:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/read-more/style.css\";i:367;s:84:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/read-more/style.min.css\";i:368;s:79:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/rss/editor-rtl.css\";i:369;s:83:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/rss/editor-rtl.min.css\";i:370;s:75:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/rss/editor.css\";i:371;s:79:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/rss/editor.min.css\";i:372;s:78:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/rss/style-rtl.css\";i:373;s:82:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/rss/style-rtl.min.css\";i:374;s:74:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/rss/style.css\";i:375;s:78:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/rss/style.min.css\";i:376;s:82:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/search/editor-rtl.css\";i:377;s:86:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/search/editor-rtl.min.css\";i:378;s:78:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/search/editor.css\";i:379;s:82:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/search/editor.min.css\";i:380;s:81:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/search/style-rtl.css\";i:381;s:85:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/search/style-rtl.min.css\";i:382;s:77:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/search/style.css\";i:383;s:81:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/search/style.min.css\";i:384;s:81:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/search/theme-rtl.css\";i:385;s:85:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/search/theme-rtl.min.css\";i:386;s:77:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/search/theme.css\";i:387;s:81:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/search/theme.min.css\";i:388;s:85:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/separator/editor-rtl.css\";i:389;s:89:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/separator/editor-rtl.min.css\";i:390;s:81:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/separator/editor.css\";i:391;s:85:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/separator/editor.min.css\";i:392;s:84:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/separator/style-rtl.css\";i:393;s:88:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/separator/style-rtl.min.css\";i:394;s:80:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/separator/style.css\";i:395;s:84:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/separator/style.min.css\";i:396;s:84:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/separator/theme-rtl.css\";i:397;s:88:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/separator/theme-rtl.min.css\";i:398;s:80:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/separator/theme.css\";i:399;s:84:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/separator/theme.min.css\";i:400;s:85:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/shortcode/editor-rtl.css\";i:401;s:89:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/shortcode/editor-rtl.min.css\";i:402;s:81:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/shortcode/editor.css\";i:403;s:85:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/shortcode/editor.min.css\";i:404;s:85:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/site-logo/editor-rtl.css\";i:405;s:89:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/site-logo/editor-rtl.min.css\";i:406;s:81:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/site-logo/editor.css\";i:407;s:85:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/site-logo/editor.min.css\";i:408;s:84:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/site-logo/style-rtl.css\";i:409;s:88:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/site-logo/style-rtl.min.css\";i:410;s:80:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/site-logo/style.css\";i:411;s:84:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/site-logo/style.min.css\";i:412;s:88:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/site-tagline/editor-rtl.css\";i:413;s:92:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/site-tagline/editor-rtl.min.css\";i:414;s:84:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/site-tagline/editor.css\";i:415;s:88:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/site-tagline/editor.min.css\";i:416;s:86:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/site-title/editor-rtl.css\";i:417;s:90:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/site-title/editor-rtl.min.css\";i:418;s:82:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/site-title/editor.css\";i:419;s:86:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/site-title/editor.min.css\";i:420;s:85:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/site-title/style-rtl.css\";i:421;s:89:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/site-title/style-rtl.min.css\";i:422;s:81:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/site-title/style.css\";i:423;s:85:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/site-title/style.min.css\";i:424;s:87:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/social-link/editor-rtl.css\";i:425;s:91:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/social-link/editor-rtl.min.css\";i:426;s:83:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/social-link/editor.css\";i:427;s:87:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/social-link/editor.min.css\";i:428;s:88:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/social-links/editor-rtl.css\";i:429;s:92:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/social-links/editor-rtl.min.css\";i:430;s:84:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/social-links/editor.css\";i:431;s:88:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/social-links/editor.min.css\";i:432;s:87:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/social-links/style-rtl.css\";i:433;s:91:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/social-links/style-rtl.min.css\";i:434;s:83:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/social-links/style.css\";i:435;s:87:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/social-links/style.min.css\";i:436;s:82:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/spacer/editor-rtl.css\";i:437;s:86:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/spacer/editor-rtl.min.css\";i:438;s:78:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/spacer/editor.css\";i:439;s:82:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/spacer/editor.min.css\";i:440;s:81:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/spacer/style-rtl.css\";i:441;s:85:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/spacer/style-rtl.min.css\";i:442;s:77:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/spacer/style.css\";i:443;s:81:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/spacer/style.min.css\";i:444;s:81:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/table/editor-rtl.css\";i:445;s:85:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/table/editor-rtl.min.css\";i:446;s:77:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/table/editor.css\";i:447;s:81:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/table/editor.min.css\";i:448;s:80:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/table/style-rtl.css\";i:449;s:84:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/table/style-rtl.min.css\";i:450;s:76:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/table/style.css\";i:451;s:80:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/table/style.min.css\";i:452;s:80:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/table/theme-rtl.css\";i:453;s:84:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/table/theme-rtl.min.css\";i:454;s:76:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/table/theme.css\";i:455;s:80:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/table/theme.min.css\";i:456;s:84:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/tag-cloud/style-rtl.css\";i:457;s:88:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/tag-cloud/style-rtl.min.css\";i:458;s:80:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/tag-cloud/style.css\";i:459;s:84:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/tag-cloud/style.min.css\";i:460;s:89:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/template-part/editor-rtl.css\";i:461;s:93:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/template-part/editor-rtl.min.css\";i:462;s:85:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/template-part/editor.css\";i:463;s:89:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/template-part/editor.min.css\";i:464;s:88:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/template-part/theme-rtl.css\";i:465;s:92:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/template-part/theme-rtl.min.css\";i:466;s:84:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/template-part/theme.css\";i:467;s:88:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/template-part/theme.min.css\";i:468;s:91:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/term-description/style-rtl.css\";i:469;s:95:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/term-description/style-rtl.min.css\";i:470;s:87:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/term-description/style.css\";i:471;s:91:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/term-description/style.min.css\";i:472;s:88:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/text-columns/editor-rtl.css\";i:473;s:92:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/text-columns/editor-rtl.min.css\";i:474;s:84:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/text-columns/editor.css\";i:475;s:88:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/text-columns/editor.min.css\";i:476;s:87:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/text-columns/style-rtl.css\";i:477;s:91:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/text-columns/style-rtl.min.css\";i:478;s:83:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/text-columns/style.css\";i:479;s:87:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/text-columns/style.min.css\";i:480;s:80:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/verse/style-rtl.css\";i:481;s:84:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/verse/style-rtl.min.css\";i:482;s:76:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/verse/style.css\";i:483;s:80:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/verse/style.min.css\";i:484;s:81:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/video/editor-rtl.css\";i:485;s:85:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/video/editor-rtl.min.css\";i:486;s:77:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/video/editor.css\";i:487;s:81:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/video/editor.min.css\";i:488;s:80:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/video/style-rtl.css\";i:489;s:84:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/video/style-rtl.min.css\";i:490;s:76:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/video/style.css\";i:491;s:80:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/video/style.min.css\";i:492;s:80:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/video/theme-rtl.css\";i:493;s:84:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/video/theme-rtl.min.css\";i:494;s:76:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/video/theme.css\";i:495;s:80:\"/storage/v11800/sahityaonline/public_html/wp-includes/blocks/video/theme.min.css\";}','yes'),(121,'_transient_doing_cron','1717189545.8029599189758300781250','yes'),(129,'ai1wm_secret_key','zE0qWAjRlEzN','yes'),(130,'wp_cli_login','{\"endpoint\":\"64af047b\",\"version\":\"^1.2\"}','yes'),(134,'ai1wmue_plugin_key','1bebc005-bc23-4932-8b3f-1b4b72ee066a','yes'),(135,'_site_transient_timeout_browser_0a264a5519a9e1055915d67c10c5115b','1694508939','no'),(136,'_site_transient_browser_0a264a5519a9e1055915d67c10c5115b','a:10:{s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:9:\"115.0.0.0\";s:8:\"platform\";s:0:\"\";s:10:\"update_url\";s:29:\"https://www.google.com/chrome\";s:7:\"img_src\";s:43:\"http://s.w.org/images/browsers/chrome.png?1\";s:11:\"img_src_ssl\";s:44:\"https://s.w.org/images/browsers/chrome.png?1\";s:15:\"current_version\";s:2:\"18\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;s:6:\"mobile\";b:0;}','no'),(137,'_site_transient_timeout_php_check_2f5acf219326a8bc5331ee302b9812f4','1694508939','no'),(138,'_site_transient_php_check_2f5acf219326a8bc5331ee302b9812f4','a:5:{s:19:\"recommended_version\";s:3:\"7.4\";s:15:\"minimum_version\";s:3:\"7.0\";s:12:\"is_supported\";b:1;s:9:\"is_secure\";b:1;s:13:\"is_acceptable\";b:1;}','no'),(139,'can_compress_scripts','0','yes'),(140,'_site_transient_timeout_community-events-9c43136932643469d28d2bb585f53a4b','1693947344','no'),(141,'_site_transient_community-events-9c43136932643469d28d2bb585f53a4b','a:4:{s:9:\"sandboxed\";b:0;s:5:\"error\";N;s:8:\"location\";a:1:{s:2:\"ip\";s:13:\"162.158.227.0\";}s:6:\"events\";a:2:{i:0;a:10:{s:4:\"type\";s:6:\"meetup\";s:5:\"title\";s:71:\"WordPress Full Site Editing: Everything You Need to Know to get started\";s:3:\"url\";s:55:\"https://www.meetup.com/wordpressmumbai/events/295819965\";s:6:\"meetup\";s:23:\"Mumbai WordPress Meetup\";s:10:\"meetup_url\";s:39:\"https://www.meetup.com/wordpressmumbai/\";s:4:\"date\";s:19:\"2023-09-09 16:00:00\";s:8:\"end_date\";s:19:\"2023-09-09 18:00:00\";s:20:\"start_unix_timestamp\";i:1694255400;s:18:\"end_unix_timestamp\";i:1694262600;s:8:\"location\";a:4:{s:8:\"location\";s:13:\"Mumbai, India\";s:7:\"country\";s:2:\"in\";s:8:\"latitude\";d:19.152552;s:9:\"longitude\";d:72.855735999999993;}}i:1;a:10:{s:4:\"type\";s:8:\"wordcamp\";s:5:\"title\";s:20:\"WordCamp Mumbai 2023\";s:3:\"url\";s:33:\"https://mumbai.wordcamp.org/2023/\";s:6:\"meetup\";N;s:10:\"meetup_url\";N;s:4:\"date\";s:19:\"2023-10-28 00:00:00\";s:8:\"end_date\";s:19:\"2023-10-29 00:00:00\";s:20:\"start_unix_timestamp\";i:1698431400;s:18:\"end_unix_timestamp\";i:1698517800;s:8:\"location\";a:4:{s:8:\"location\";s:26:\"Mumbai, Maharashtra, India\";s:7:\"country\";s:2:\"IN\";s:8:\"latitude\";d:19.0507572;s:9:\"longitude\";d:72.829808700000001;}}}}','no'),(154,'WPLANG','','yes'),(155,'new_admin_email','wp@dxpsites.com','yes'),(165,'theme_mods_twentytwentythree','a:1:{s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1693904359;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'),(166,'current_theme','Hello Elementor','yes'),(167,'theme_mods_hello-elementor','a:3:{i:0;b:0;s:18:\"nav_menu_locations\";a:0:{}s:18:\"custom_css_post_id\";i:-1;}','yes'),(168,'theme_switched','','yes'),(169,'hello_theme_version','2.8.1','yes'),(170,'_site_transient_update_themes','O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1717103101;s:7:\"checked\";a:4:{s:15:\"hello-elementor\";s:5:\"2.8.1\";s:16:\"twentytwentyfour\";s:3:\"1.1\";s:17:\"twentytwentythree\";s:3:\"1.4\";s:15:\"twentytwentytwo\";s:3:\"1.7\";}s:8:\"response\";a:1:{s:15:\"hello-elementor\";a:6:{s:5:\"theme\";s:15:\"hello-elementor\";s:11:\"new_version\";s:5:\"3.0.2\";s:3:\"url\";s:45:\"https://wordpress.org/themes/hello-elementor/\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/theme/hello-elementor.3.0.2.zip\";s:8:\"requires\";s:3:\"6.0\";s:12:\"requires_php\";s:3:\"7.3\";}}s:9:\"no_update\";a:3:{s:16:\"twentytwentyfour\";a:6:{s:5:\"theme\";s:16:\"twentytwentyfour\";s:11:\"new_version\";s:3:\"1.1\";s:3:\"url\";s:46:\"https://wordpress.org/themes/twentytwentyfour/\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/theme/twentytwentyfour.1.1.zip\";s:8:\"requires\";s:3:\"6.4\";s:12:\"requires_php\";s:3:\"7.0\";}s:17:\"twentytwentythree\";a:6:{s:5:\"theme\";s:17:\"twentytwentythree\";s:11:\"new_version\";s:3:\"1.4\";s:3:\"url\";s:47:\"https://wordpress.org/themes/twentytwentythree/\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/theme/twentytwentythree.1.4.zip\";s:8:\"requires\";s:3:\"6.1\";s:12:\"requires_php\";s:3:\"5.6\";}s:15:\"twentytwentytwo\";a:6:{s:5:\"theme\";s:15:\"twentytwentytwo\";s:11:\"new_version\";s:3:\"1.7\";s:3:\"url\";s:45:\"https://wordpress.org/themes/twentytwentytwo/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/theme/twentytwentytwo.1.7.zip\";s:8:\"requires\";s:3:\"5.9\";s:12:\"requires_php\";s:3:\"5.6\";}}s:12:\"translations\";a:0:{}}','no'),(171,'_site_transient_timeout_poptags_40cd750bba9870f18aada2478b24840a','1693915176','no'),(172,'_site_transient_poptags_40cd750bba9870f18aada2478b24840a','O:8:\"stdClass\":100:{s:11:\"woocommerce\";a:3:{s:4:\"name\";s:11:\"woocommerce\";s:4:\"slug\";s:11:\"woocommerce\";s:5:\"count\";i:6143;}s:6:\"widget\";a:3:{s:4:\"name\";s:6:\"widget\";s:4:\"slug\";s:6:\"widget\";s:5:\"count\";i:4821;}s:4:\"post\";a:3:{s:4:\"name\";s:4:\"post\";s:4:\"slug\";s:4:\"post\";s:5:\"count\";i:2788;}s:5:\"admin\";a:3:{s:4:\"name\";s:5:\"admin\";s:4:\"slug\";s:5:\"admin\";s:5:\"count\";i:2680;}s:5:\"posts\";a:3:{s:4:\"name\";s:5:\"posts\";s:4:\"slug\";s:5:\"posts\";s:5:\"count\";i:2057;}s:9:\"shortcode\";a:3:{s:4:\"name\";s:9:\"shortcode\";s:4:\"slug\";s:9:\"shortcode\";s:5:\"count\";i:1924;}s:8:\"comments\";a:3:{s:4:\"name\";s:8:\"comments\";s:4:\"slug\";s:8:\"comments\";s:5:\"count\";i:1911;}s:3:\"seo\";a:3:{s:4:\"name\";s:3:\"seo\";s:4:\"slug\";s:3:\"seo\";s:5:\"count\";i:1653;}s:6:\"images\";a:3:{s:4:\"name\";s:6:\"images\";s:4:\"slug\";s:6:\"images\";s:5:\"count\";i:1568;}s:5:\"image\";a:3:{s:4:\"name\";s:5:\"image\";s:4:\"slug\";s:5:\"image\";s:5:\"count\";i:1563;}s:6:\"google\";a:3:{s:4:\"name\";s:6:\"google\";s:4:\"slug\";s:6:\"google\";s:5:\"count\";i:1549;}s:7:\"twitter\";a:3:{s:4:\"name\";s:7:\"twitter\";s:4:\"slug\";s:7:\"twitter\";s:5:\"count\";i:1514;}s:8:\"facebook\";a:3:{s:4:\"name\";s:8:\"facebook\";s:4:\"slug\";s:8:\"facebook\";s:5:\"count\";i:1504;}s:9:\"ecommerce\";a:3:{s:4:\"name\";s:9:\"ecommerce\";s:4:\"slug\";s:9:\"ecommerce\";s:5:\"count\";i:1493;}s:5:\"email\";a:3:{s:4:\"name\";s:5:\"email\";s:4:\"slug\";s:5:\"email\";s:5:\"count\";i:1376;}s:7:\"sidebar\";a:3:{s:4:\"name\";s:7:\"sidebar\";s:4:\"slug\";s:7:\"sidebar\";s:5:\"count\";i:1316;}s:7:\"gallery\";a:3:{s:4:\"name\";s:7:\"gallery\";s:4:\"slug\";s:7:\"gallery\";s:5:\"count\";i:1277;}s:4:\"page\";a:3:{s:4:\"name\";s:4:\"page\";s:4:\"slug\";s:4:\"page\";s:5:\"count\";i:1175;}s:6:\"social\";a:3:{s:4:\"name\";s:6:\"social\";s:4:\"slug\";s:6:\"social\";s:5:\"count\";i:1156;}s:5:\"login\";a:3:{s:4:\"name\";s:5:\"login\";s:4:\"slug\";s:5:\"login\";s:5:\"count\";i:1153;}s:8:\"security\";a:3:{s:4:\"name\";s:8:\"security\";s:4:\"slug\";s:8:\"security\";s:5:\"count\";i:1068;}s:10:\"e-commerce\";a:3:{s:4:\"name\";s:10:\"e-commerce\";s:4:\"slug\";s:10:\"e-commerce\";s:5:\"count\";i:1033;}s:5:\"video\";a:3:{s:4:\"name\";s:5:\"video\";s:4:\"slug\";s:5:\"video\";s:5:\"count\";i:1002;}s:7:\"widgets\";a:3:{s:4:\"name\";s:7:\"widgets\";s:4:\"slug\";s:7:\"widgets\";s:5:\"count\";i:970;}s:7:\"payment\";a:3:{s:4:\"name\";s:7:\"payment\";s:4:\"slug\";s:7:\"payment\";s:5:\"count\";i:906;}s:5:\"links\";a:3:{s:4:\"name\";s:5:\"links\";s:4:\"slug\";s:5:\"links\";s:5:\"count\";i:905;}s:9:\"analytics\";a:3:{s:4:\"name\";s:9:\"analytics\";s:4:\"slug\";s:9:\"analytics\";s:5:\"count\";i:883;}s:4:\"spam\";a:3:{s:4:\"name\";s:4:\"spam\";s:4:\"slug\";s:4:\"spam\";s:5:\"count\";i:882;}s:4:\"form\";a:3:{s:4:\"name\";s:4:\"form\";s:4:\"slug\";s:4:\"form\";s:5:\"count\";i:879;}s:7:\"content\";a:3:{s:4:\"name\";s:7:\"content\";s:4:\"slug\";s:7:\"content\";s:5:\"count\";i:875;}s:6:\"slider\";a:3:{s:4:\"name\";s:6:\"slider\";s:4:\"slug\";s:6:\"slider\";s:5:\"count\";i:873;}s:9:\"gutenberg\";a:3:{s:4:\"name\";s:9:\"gutenberg\";s:4:\"slug\";s:9:\"gutenberg\";s:5:\"count\";i:837;}s:5:\"block\";a:3:{s:4:\"name\";s:5:\"block\";s:4:\"slug\";s:5:\"block\";s:5:\"count\";i:817;}s:5:\"media\";a:3:{s:4:\"name\";s:5:\"media\";s:4:\"slug\";s:5:\"media\";s:5:\"count\";i:794;}s:10:\"buddypress\";a:3:{s:4:\"name\";s:10:\"buddypress\";s:4:\"slug\";s:10:\"buddypress\";s:5:\"count\";i:781;}s:6:\"search\";a:3:{s:4:\"name\";s:6:\"search\";s:4:\"slug\";s:6:\"search\";s:5:\"count\";i:780;}s:15:\"payment-gateway\";a:3:{s:4:\"name\";s:15:\"payment gateway\";s:4:\"slug\";s:15:\"payment-gateway\";s:5:\"count\";i:775;}s:6:\"editor\";a:3:{s:4:\"name\";s:6:\"editor\";s:4:\"slug\";s:6:\"editor\";s:5:\"count\";i:762;}s:9:\"elementor\";a:3:{s:4:\"name\";s:9:\"elementor\";s:4:\"slug\";s:9:\"elementor\";s:5:\"count\";i:749;}s:3:\"rss\";a:3:{s:4:\"name\";s:3:\"rss\";s:4:\"slug\";s:3:\"rss\";s:5:\"count\";i:732;}s:12:\"contact-form\";a:3:{s:4:\"name\";s:12:\"contact form\";s:4:\"slug\";s:12:\"contact-form\";s:5:\"count\";i:731;}s:5:\"pages\";a:3:{s:4:\"name\";s:5:\"pages\";s:4:\"slug\";s:5:\"pages\";s:5:\"count\";i:729;}s:4:\"menu\";a:3:{s:4:\"name\";s:4:\"menu\";s:4:\"slug\";s:4:\"menu\";s:5:\"count\";i:727;}s:5:\"embed\";a:3:{s:4:\"name\";s:5:\"embed\";s:4:\"slug\";s:5:\"embed\";s:5:\"count\";i:691;}s:8:\"category\";a:3:{s:4:\"name\";s:8:\"category\";s:4:\"slug\";s:8:\"category\";s:5:\"count\";i:686;}s:4:\"feed\";a:3:{s:4:\"name\";s:4:\"feed\";s:4:\"slug\";s:4:\"feed\";s:5:\"count\";i:685;}s:4:\"ajax\";a:3:{s:4:\"name\";s:4:\"ajax\";s:4:\"slug\";s:4:\"ajax\";s:5:\"count\";i:677;}s:6:\"jquery\";a:3:{s:4:\"name\";s:6:\"jquery\";s:4:\"slug\";s:6:\"jquery\";s:5:\"count\";i:668;}s:7:\"youtube\";a:3:{s:4:\"name\";s:7:\"youtube\";s:4:\"slug\";s:7:\"youtube\";s:5:\"count\";i:634;}s:3:\"css\";a:3:{s:4:\"name\";s:3:\"css\";s:4:\"slug\";s:3:\"css\";s:5:\"count\";i:629;}s:9:\"affiliate\";a:3:{s:4:\"name\";s:9:\"affiliate\";s:4:\"slug\";s:9:\"affiliate\";s:5:\"count\";i:620;}s:3:\"api\";a:3:{s:4:\"name\";s:3:\"api\";s:4:\"slug\";s:3:\"api\";s:5:\"count\";i:616;}s:10:\"javascript\";a:3:{s:4:\"name\";s:10:\"javascript\";s:4:\"slug\";s:10:\"javascript\";s:5:\"count\";i:610;}s:4:\"link\";a:3:{s:4:\"name\";s:4:\"link\";s:4:\"slug\";s:4:\"link\";s:5:\"count\";i:609;}s:7:\"contact\";a:3:{s:4:\"name\";s:7:\"contact\";s:4:\"slug\";s:7:\"contact\";s:5:\"count\";i:599;}s:9:\"dashboard\";a:3:{s:4:\"name\";s:9:\"dashboard\";s:4:\"slug\";s:9:\"dashboard\";s:5:\"count\";i:596;}s:5:\"share\";a:3:{s:4:\"name\";s:5:\"share\";s:4:\"slug\";s:5:\"share\";s:5:\"count\";i:592;}s:10:\"responsive\";a:3:{s:4:\"name\";s:10:\"responsive\";s:4:\"slug\";s:10:\"responsive\";s:5:\"count\";i:592;}s:5:\"theme\";a:3:{s:4:\"name\";s:5:\"theme\";s:4:\"slug\";s:5:\"theme\";s:5:\"count\";i:579;}s:8:\"shipping\";a:3:{s:4:\"name\";s:8:\"shipping\";s:4:\"slug\";s:8:\"shipping\";s:5:\"count\";i:575;}s:7:\"comment\";a:3:{s:4:\"name\";s:7:\"comment\";s:4:\"slug\";s:7:\"comment\";s:5:\"count\";i:571;}s:3:\"ads\";a:3:{s:4:\"name\";s:3:\"ads\";s:4:\"slug\";s:3:\"ads\";s:5:\"count\";i:570;}s:6:\"custom\";a:3:{s:4:\"name\";s:6:\"custom\";s:4:\"slug\";s:6:\"custom\";s:5:\"count\";i:570;}s:9:\"marketing\";a:3:{s:4:\"name\";s:9:\"marketing\";s:4:\"slug\";s:9:\"marketing\";s:5:\"count\";i:559;}s:4:\"chat\";a:3:{s:4:\"name\";s:4:\"chat\";s:4:\"slug\";s:4:\"chat\";s:5:\"count\";i:558;}s:10:\"categories\";a:3:{s:4:\"name\";s:10:\"categories\";s:4:\"slug\";s:10:\"categories\";s:5:\"count\";i:542;}s:6:\"events\";a:3:{s:4:\"name\";s:6:\"events\";s:4:\"slug\";s:6:\"events\";s:5:\"count\";i:541;}s:5:\"forms\";a:3:{s:4:\"name\";s:5:\"forms\";s:4:\"slug\";s:5:\"forms\";s:5:\"count\";i:533;}s:4:\"user\";a:3:{s:4:\"name\";s:4:\"user\";s:4:\"slug\";s:4:\"user\";s:5:\"count\";i:533;}s:6:\"button\";a:3:{s:4:\"name\";s:6:\"button\";s:4:\"slug\";s:6:\"button\";s:5:\"count\";i:532;}s:14:\"contact-form-7\";a:3:{s:4:\"name\";s:14:\"contact form 7\";s:4:\"slug\";s:14:\"contact-form-7\";s:5:\"count\";i:532;}s:5:\"popup\";a:3:{s:4:\"name\";s:5:\"popup\";s:4:\"slug\";s:5:\"popup\";s:5:\"count\";i:520;}s:5:\"users\";a:3:{s:4:\"name\";s:5:\"users\";s:4:\"slug\";s:5:\"users\";s:5:\"count\";i:511;}s:4:\"tags\";a:3:{s:4:\"name\";s:4:\"tags\";s:4:\"slug\";s:4:\"tags\";s:5:\"count\";i:510;}s:6:\"mobile\";a:3:{s:4:\"name\";s:6:\"mobile\";s:4:\"slug\";s:6:\"mobile\";s:5:\"count\";i:510;}s:8:\"calendar\";a:3:{s:4:\"name\";s:8:\"calendar\";s:4:\"slug\";s:8:\"calendar\";s:5:\"count\";i:508;}s:11:\"performance\";a:3:{s:4:\"name\";s:11:\"performance\";s:4:\"slug\";s:11:\"performance\";s:5:\"count\";i:489;}s:10:\"newsletter\";a:3:{s:4:\"name\";s:10:\"newsletter\";s:4:\"slug\";s:10:\"newsletter\";s:5:\"count\";i:479;}s:6:\"blocks\";a:3:{s:4:\"name\";s:6:\"blocks\";s:4:\"slug\";s:6:\"blocks\";s:5:\"count\";i:478;}s:10:\"navigation\";a:3:{s:4:\"name\";s:10:\"navigation\";s:4:\"slug\";s:10:\"navigation\";s:5:\"count\";i:469;}s:9:\"slideshow\";a:3:{s:4:\"name\";s:9:\"slideshow\";s:4:\"slug\";s:9:\"slideshow\";s:5:\"count\";i:450;}s:5:\"photo\";a:3:{s:4:\"name\";s:5:\"photo\";s:4:\"slug\";s:5:\"photo\";s:5:\"count\";i:448;}s:5:\"stats\";a:3:{s:4:\"name\";s:5:\"stats\";s:4:\"slug\";s:5:\"stats\";s:5:\"count\";i:448;}s:10:\"statistics\";a:3:{s:4:\"name\";s:10:\"statistics\";s:4:\"slug\";s:10:\"statistics\";s:5:\"count\";i:438;}s:12:\"social-media\";a:3:{s:4:\"name\";s:12:\"social media\";s:4:\"slug\";s:12:\"social-media\";s:5:\"count\";i:433;}s:6:\"photos\";a:3:{s:4:\"name\";s:6:\"photos\";s:4:\"slug\";s:6:\"photos\";s:5:\"count\";i:426;}s:12:\"notification\";a:3:{s:4:\"name\";s:12:\"notification\";s:4:\"slug\";s:12:\"notification\";s:5:\"count\";i:426;}s:7:\"gateway\";a:3:{s:4:\"name\";s:7:\"gateway\";s:4:\"slug\";s:7:\"gateway\";s:5:\"count\";i:426;}s:8:\"redirect\";a:3:{s:4:\"name\";s:8:\"redirect\";s:4:\"slug\";s:8:\"redirect\";s:5:\"count\";i:424;}s:8:\"payments\";a:3:{s:4:\"name\";s:8:\"payments\";s:4:\"slug\";s:8:\"payments\";s:5:\"count\";i:424;}s:6:\"import\";a:3:{s:4:\"name\";s:6:\"import\";s:4:\"slug\";s:6:\"import\";s:5:\"count\";i:422;}s:8:\"tracking\";a:3:{s:4:\"name\";s:8:\"tracking\";s:4:\"slug\";s:8:\"tracking\";s:5:\"count\";i:420;}s:4:\"news\";a:3:{s:4:\"name\";s:4:\"news\";s:4:\"slug\";s:4:\"news\";s:5:\"count\";i:420;}s:10:\"shortcodes\";a:3:{s:4:\"name\";s:10:\"shortcodes\";s:4:\"slug\";s:10:\"shortcodes\";s:5:\"count\";i:413;}s:4:\"code\";a:3:{s:4:\"name\";s:4:\"code\";s:4:\"slug\";s:4:\"code\";s:5:\"count\";i:409;}s:7:\"plugins\";a:3:{s:4:\"name\";s:7:\"plugins\";s:4:\"slug\";s:7:\"plugins\";s:5:\"count\";i:400;}s:9:\"multisite\";a:3:{s:4:\"name\";s:9:\"multisite\";s:4:\"slug\";s:9:\"multisite\";s:5:\"count\";i:396;}s:8:\"checkout\";a:3:{s:4:\"name\";s:8:\"checkout\";s:4:\"slug\";s:8:\"checkout\";s:5:\"count\";i:395;}s:5:\"cache\";a:3:{s:4:\"name\";s:5:\"cache\";s:4:\"slug\";s:5:\"cache\";s:5:\"count\";i:394;}s:4:\"meta\";a:3:{s:4:\"name\";s:4:\"meta\";s:4:\"slug\";s:4:\"meta\";s:5:\"count\";i:390;}}','no'),(175,'_site_transient_ai1wm_last_check_for_updates','1693998363','no'),(176,'ai1wm_updater','a:1:{s:43:\"all-in-one-wp-migration-unlimited-extension\";a:13:{s:4:\"name\";s:19:\"Unlimited Extension\";s:4:\"slug\";s:19:\"unlimited-extension\";s:8:\"homepage\";s:51:\"https://servmask.com/extensions/unlimited-extension\";s:13:\"download_link\";s:29:\"https://servmask.com/purchase\";s:7:\"version\";s:4:\"2.53\";s:6:\"author\";s:8:\"ServMask\";s:15:\"author_homepage\";s:20:\"https://servmask.com\";s:8:\"sections\";a:1:{s:11:\"description\";s:259:\"<ul class=\"description\"><li>Remove the import limit of 512MB</li><li>Lifetime license with lifetime updates</li><li>Use on any number of websites that you own</li><li>Unlimited Extension included</li><li>WP CLI commands</li><li>Premium support</li></ul><br />\";}s:7:\"banners\";a:2:{s:3:\"low\";s:65:\"https://servmask.com/img/products/unlimited-extension-772x250.png\";s:4:\"high\";s:66:\"https://servmask.com/img/products/unlimited-extension-1544x500.png\";}s:5:\"icons\";a:3:{s:2:\"1x\";s:65:\"https://servmask.com/img/products/unlimited-extension-128x128.png\";s:2:\"2x\";s:65:\"https://servmask.com/img/products/unlimited-extension-256x256.png\";s:7:\"default\";s:65:\"https://servmask.com/img/products/unlimited-extension-256x256.png\";}s:6:\"rating\";i:99;s:11:\"num_ratings\";i:309;s:10:\"downloaded\";i:40189;}}','yes'),(177,'recently_activated','a:0:{}','yes'),(178,'template_kit_import_version','1.0.14','yes'),(179,'template_kit_import_install_time','1693904446','yes'),(186,'elementor_active_kit','8','yes'),(187,'elementor_font_display','swap','yes'),(190,'elementor_version','3.15.3','yes'),(191,'elementor_install_history','a:1:{s:6:\"3.15.3\";i:1693904541;}','yes'),(192,'elementor_events_db_version','1.0.0','no'),(193,'elementor_onboarded','1','yes'),(194,'_elementor_installed_time','1693904547','yes'),(195,'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'),(196,'elementor_remote_info_feed_data','a:3:{i:0;a:5:{s:5:\"title\";s:71:\"6 Best WordPress Image Optimization Plugins of 2024 (+Real Image Tests)\";s:7:\"excerpt\";s:116:\"Explore the top 6 WordPress image optimization plugins of 2024 for faster site speed and better SEO with real tests.\";s:7:\"created\";i:1712656602;s:5:\"badge\";s:3:\"NEW\";s:3:\"url\";s:126:\"https://elementor.com/blog/image-optimization-plugins/?utm_source=wp-overview-widget&utm_medium=wp-dash&utm_campaign=news-feed\";}i:1;a:5:{s:5:\"title\";s:84:\"Introducing Elementor 3.20: New Display Condition Features, Performance Improvements\";s:7:\"excerpt\";s:189:\"Version 3.20 introduces exciting new features that enhance the flexibility of Display Conditions. This version also improves the loading time of your site’s frontend and backend, and more\";s:7:\"created\";i:1710845895;s:5:\"badge\";s:3:\"NEW\";s:3:\"url\";s:167:\"https://elementor.com/blog/elementor-320-display-conditions-enhacments-peformance-improvements/?utm_source=wp-overview-widget&utm_medium=wp-dash&utm_campaign=news-feed\";}i:2;a:5:{s:5:\"title\";s:97:\"Introducing Elementor 3.19: Display Conditions, Role Permissions in the Element Manager, and More\";s:7:\"excerpt\";s:230:\"Create dynamic visitor experiences, customize your teammates’ widget panels, protect forms from spam submissions, generate variations in the template library, and use URLs from the open web as a reference to generate containers.\";s:7:\"created\";i:1707315304;s:5:\"badge\";s:3:\"NEW\";s:3:\"url\";s:152:\"https://elementor.com/blog/elementor-319-display-conditions-akismet-integration/?utm_source=wp-overview-widget&utm_medium=wp-dash&utm_campaign=news-feed\";}}','no'),(199,'hfe_plugin_is_activated','yes','yes'),(200,'_hfe_db_version','1.6.28','yes'),(201,'bsf_analytics_installed_time','1693904554','no'),(203,'elementskit-lite__banner_last_check','1694061776','yes'),(204,'elementskit-lite__banner_data','O:8:\"stdClass\":10:{s:8:\"10010506\";O:8:\"stdClass\":7:{s:2:\"id\";i:10010506;s:5:\"title\";s:32:\"Wpmet Summer sale 2023 Dashboard\";s:4:\"type\";s:6:\"notice\";s:6:\"screen\";s:9:\"dashboard\";s:5:\"start\";i:1689552000;s:3:\"end\";i:1691625600;s:4:\"data\";O:8:\"stdClass\":9:{s:4:\"type\";s:6:\"notice\";s:11:\"button_link\";s:32:\"https://wpmet.com/summer-sale-23\";s:11:\"button_text\";s:24:\"Claim Your Discount Now!\";s:11:\"notice_body\";s:537:\"<h3><strong style=\"color: #; text-transform: uppercase; font-size: 14px;\"><span style=\"color: #e60073;\">Summer sales from Wpmet</span></strong></h3>\r\n<h3><strong style=\"font-size: 24px; padding: 8px 0 5px; color: #; display: block;\">Save up to $174 on Premium WordPress Plugins!</strong></h3>\r\n<p style=\"font-size: 16px; margin-left: -2px;\"><b>Get 30% discounts</b> on each of our PRO plugins — ElementsKit, ShopEngine, MetForm, WP Social, WP Ultimate Review — or get them <b>all in super-saver bundles to save 80% instantly!</b></p>\";s:12:\"notice_image\";s:66:\"https://api.wpmet.com/auth/wp-content/uploads/2023/07/notice-1.png\";s:9:\"blacklist\";s:0:\"\";s:9:\"whitelist\";s:0:\"\";s:9:\"style_css\";s:0:\"\";s:10:\"unique_key\";s:0:\"\";}}s:8:\"10010508\";O:8:\"stdClass\":7:{s:2:\"id\";i:10010508;s:5:\"title\";s:31:\"Wpmet Summer sale 2023 own page\";s:4:\"type\";s:6:\"notice\";s:6:\"screen\";s:11:\"plugin_page\";s:5:\"start\";i:1689552000;s:3:\"end\";i:1691625600;s:4:\"data\";O:8:\"stdClass\":9:{s:4:\"type\";s:6:\"notice\";s:11:\"button_link\";s:32:\"https://wpmet.com/summer-sale-23\";s:11:\"button_text\";s:24:\"Claim Your Discount Now!\";s:11:\"notice_body\";s:537:\"<h3><strong style=\"color: #; text-transform: uppercase; font-size: 14px;\"><span style=\"color: #e60073;\">Summer sales from Wpmet</span></strong></h3>\r\n<h3><strong style=\"font-size: 24px; padding: 8px 0 5px; color: #; display: block;\">Save up to $174 on Premium WordPress Plugins!</strong></h3>\r\n<p style=\"font-size: 16px; margin-left: -2px;\"><b>Get 30% discounts</b> on each of our PRO plugins — ElementsKit, ShopEngine, MetForm, WP Social, WP Ultimate Review — or get them <b>all in super-saver bundles to save 80% instantly!</b></p>\";s:12:\"notice_image\";s:66:\"https://api.wpmet.com/auth/wp-content/uploads/2023/07/notice-1.png\";s:9:\"blacklist\";s:0:\"\";s:9:\"whitelist\";s:0:\"\";s:9:\"style_css\";s:0:\"\";s:10:\"unique_key\";s:0:\"\";}}s:8:\"10010418\";O:8:\"stdClass\":7:{s:2:\"id\";i:10010418;s:5:\"title\";s:32:\"Wpmet Summer Ownpage Notice 2023\";s:4:\"type\";s:6:\"notice\";s:6:\"screen\";s:11:\"plugin_page\";s:5:\"start\";i:1685577600;s:3:\"end\";i:1686787200;s:4:\"data\";O:8:\"stdClass\":9:{s:4:\"type\";s:6:\"notice\";s:11:\"button_link\";s:26:\"https://wpmet.com/birthday\";s:11:\"button_text\";s:24:\"Claim Your Discount Now!\";s:11:\"notice_body\";s:539:\"<h3><strong style=\"color: #; text-transform: uppercase; font-size: 14px;\"><span style=\"color: #e60073;\">Birthday sales from Wpmet</span></strong></h3>\r\n<h3><strong style=\"font-size: 24px; padding: 8px 0 5px; color: #; display: block;\">Save up to $221 on Premium WordPress Plugins!</strong></h3>\r\n<p style=\"font-size: 16px; margin-left: -2px;\"><b>Get 45% discounts</b> on each of our PRO plugins — ElementsKit, ShopEngine, MetForm, WP Social, WP Ultimate Review — or get them <b>all in super-saver bundles to save 80% instantly!</b></p>\";s:12:\"notice_image\";s:64:\"https://api.wpmet.com/auth/wp-content/uploads/2023/06/notice.png\";s:9:\"blacklist\";s:0:\"\";s:9:\"whitelist\";s:0:\"\";s:9:\"style_css\";s:0:\"\";s:10:\"unique_key\";s:0:\"\";}}s:8:\"10008094\";O:8:\"stdClass\":7:{s:2:\"id\";i:10008094;s:5:\"title\";s:24:\"GetGenie Cross Promotion\";s:4:\"type\";s:6:\"notice\";s:6:\"screen\";s:9:\"dashboard\";s:5:\"start\";i:1678492800;s:3:\"end\";i:1688083200;s:4:\"data\";O:8:\"stdClass\":9:{s:4:\"type\";s:6:\"notice\";s:11:\"button_link\";s:35:\"https://wpmet.com/getgenie-org-page\";s:11:\"button_text\";s:14:\"Get Yours Now!\";s:11:\"notice_body\";s:766:\"<h2>We are delighted to announce that <span style=\"color: #2471b1;\"><strong style=\"color: #2471b1; text-transform: uppercase; font-size: 14px;\">GetGenie AI is now available</strong></span>!</h2>\r\n<h4 style=\"font-size: 16px; margin-left: -2px;\"><b>Let&#039;s write your content 20x faster with AI. Also, Research </b><b>keywords</b><b>, A</b><b>nalyse your </b><b>competitors, head 2 Head analysis,  content writing with ai, and search engine ranking with NLP Keywords optimization—all within WordPress.</b> Additionally, <b>you can chat</b> with the GENIE AI about your needs.</h4>\r\n<span style=\"color: #dd0cd9;\">Join now and get <span style=\"font-weight: 400;\"><strong>1500 words for free every month</strong></span></span><span style=\"color: #dd0cd9;\">. </span>\";s:12:\"notice_image\";s:79:\"https://api.wpmet.com/auth/wp-content/uploads/2023/03/genie_compare_image_4.png\";s:9:\"blacklist\";s:0:\"\";s:9:\"whitelist\";s:0:\"\";s:9:\"style_css\";s:20:\"background: #e9fce5;\";s:10:\"unique_key\";s:20:\"getgenie-cross-promo\";}}s:8:\"10008085\";O:8:\"stdClass\":7:{s:2:\"id\";i:10008085;s:5:\"title\";s:27:\"Wpmet Notice Dashboard 2022\";s:4:\"type\";s:6:\"notice\";s:6:\"screen\";s:9:\"dashboard\";s:5:\"start\";i:1671580800;s:3:\"end\";i:1673740800;s:4:\"data\";O:8:\"stdClass\":9:{s:4:\"type\";s:6:\"notice\";s:11:\"button_link\";s:34:\"https://wpmet.com/holiday22/notice\";s:11:\"button_text\";s:24:\"Claim Your Discount Now!\";s:11:\"notice_body\";s:517:\"<h3><strong style=\"color: #; text-transform: uppercase; font-size: 14px;\"><span style=\"color: #e60073;\">Holiday Deals from Wpmet</span></strong> <br>\r\n<strong style=\"font-size: 24px; padding: 8px 0 5px; color: #; display: block;\">Save up to $1670 on Premium WordPress Plugins!</strong></h3>\r\n<p style=\"font-size: 16px; margin-left: -2px;\"><b>Get 35% discounts</b> on each of our PRO plugins — ElementsKit, ShopEngine, MetForm, WP Social — or get them <b>all in super-saver bundles to save 70% instantly!\r\n</b></p>\";s:12:\"notice_image\";s:70:\"https://api.wpmet.com/auth/wp-content/uploads/2022/11/70-OFF-wpmet.png\";s:9:\"blacklist\";s:0:\"\";s:9:\"whitelist\";s:0:\"\";s:9:\"style_css\";s:0:\"\";s:10:\"unique_key\";s:7:\"bfc2022\";}}s:8:\"10008083\";O:8:\"stdClass\":7:{s:2:\"id\";i:10008083;s:5:\"title\";s:25:\"Wpmet Notice Ownpage 2022\";s:4:\"type\";s:6:\"notice\";s:6:\"screen\";s:11:\"plugin_page\";s:5:\"start\";i:1671580800;s:3:\"end\";i:1673740800;s:4:\"data\";O:8:\"stdClass\":9:{s:4:\"type\";s:6:\"notice\";s:11:\"button_link\";s:34:\"https://wpmet.com/holiday22/notice\";s:11:\"button_text\";s:24:\"Claim Your Discount Now!\";s:11:\"notice_body\";s:519:\"<h3><strong style=\"color: #; text-transform: uppercase; font-size: 14px;\"><span style=\"color: #e60073;\">Holiday Deals from Wpmet. </span></strong> <br>\r\n<strong style=\"font-size: 24px; padding: 8px 0 5px; color: #; display: block;\">Save up to $1670 on Premium WordPress Plugins!</strong></h3>\r\n<p style=\"font-size: 16px; margin-left: -2px;\"><b>Get 35% discounts</b> on each of our PRO plugins — ElementsKit, ShopEngine, MetForm, WP Social — or get them <b>all in super-saver bundles to save 70% instantly!\r\n</b></p>\";s:12:\"notice_image\";s:70:\"https://api.wpmet.com/auth/wp-content/uploads/2022/11/70-OFF-wpmet.png\";s:9:\"blacklist\";s:0:\"\";s:9:\"whitelist\";s:0:\"\";s:9:\"style_css\";s:0:\"\";s:10:\"unique_key\";s:7:\"bfc2022\";}}s:8:\"10007775\";O:8:\"stdClass\":7:{s:2:\"id\";i:10007775;s:5:\"title\";s:17:\"August Flash Sale\";s:4:\"type\";s:6:\"banner\";s:6:\"screen\";s:7:\"plugins\";s:5:\"start\";i:1661385600;s:3:\"end\";i:1661904000;s:4:\"data\";O:8:\"stdClass\":7:{s:4:\"type\";s:6:\"banner\";s:11:\"banner_link\";s:30:\"https://wpmet.com/flash/banner\";s:12:\"banner_image\";s:75:\"https://api.wpmet.com/auth/wp-content/uploads/2022/08/InPlugin-Banner-4.gif\";s:9:\"blacklist\";s:0:\"\";s:9:\"whitelist\";s:0:\"\";s:9:\"style_css\";s:76:\"background-color: #00003E; display: block; height: 60px; text-align: center;\";s:10:\"unique_key\";s:15:\"AugustFlashSale\";}}s:8:\"10007416\";O:8:\"stdClass\":7:{s:2:\"id\";i:10007416;s:5:\"title\";s:28:\"Wpmet 4th of July Flash Sale\";s:4:\"type\";s:6:\"notice\";s:6:\"screen\";s:8:\"all_page\";s:5:\"start\";i:1656806400;s:3:\"end\";i:1657065600;s:4:\"data\";O:8:\"stdClass\":9:{s:4:\"type\";s:6:\"notice\";s:11:\"button_link\";s:0:\"\";s:11:\"button_text\";s:0:\"\";s:11:\"notice_body\";s:603:\"ElementsKit, ShopEngine, MetForm, WP Social, WP Ultimate Review — get all these PRO plugins altogether and save 70% instantly! Happy 4th of July Flash Sale!!\r\n\r\n<a href=\"https://wpmet.com/4-july/notice\"><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Claim Your Discount →&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:1337857,&quot;3&quot;:{&quot;1&quot;:0},&quot;12&quot;:0,&quot;14&quot;:{&quot;1&quot;:2,&quot;2&quot;:1136076},&quot;16&quot;:10,&quot;17&quot;:1,&quot;21&quot;:1,&quot;23&quot;:1}\" data-sheets-hyperlink=\"https://wpmet.com/deals\">Claim Your Discount →</span></a>\";s:12:\"notice_image\";s:64:\"https://api.wpmet.com/auth/wp-content/uploads/2022/07/Notice.gif\";s:9:\"blacklist\";s:0:\"\";s:9:\"whitelist\";s:0:\"\";s:9:\"style_css\";s:14:\"display: block\";s:10:\"unique_key\";s:13:\"4thJulybanner\";}}s:8:\"10007174\";O:8:\"stdClass\":7:{s:2:\"id\";i:10007174;s:5:\"title\";s:31:\"Wpmet Birthday Campaign Ownpage\";s:4:\"type\";s:6:\"notice\";s:6:\"screen\";s:8:\"all_page\";s:5:\"start\";i:1653868800;s:3:\"end\";i:1655942400;s:4:\"data\";O:8:\"stdClass\":9:{s:4:\"type\";s:6:\"notice\";s:11:\"button_link\";s:0:\"\";s:11:\"button_text\";s:0:\"\";s:11:\"notice_body\";s:261:\"Wpmet\'s Birthday Sale is going on! Enjoy limited-time discounts of up to 50% on each of our PRO plugins — ElementsKit , ShopEngine, MetForm, WP Social, WP Ultimate Review. Hurry up!\r\n\r\n<a href=\"https://wpmet.com/notice/birthday-deal\">Get Your Discount →</a>\";s:12:\"notice_image\";s:76:\"https://api.wpmet.com/auth/wp-content/uploads/2022/05/InPlugin-Notice-50.gif\";s:9:\"blacklist\";s:0:\"\";s:9:\"whitelist\";s:0:\"\";s:9:\"style_css\";s:14:\"display: block\";s:10:\"unique_key\";s:14:\"birthdaybanner\";}}s:8:\"10007139\";O:8:\"stdClass\":7:{s:2:\"id\";i:10007139;s:5:\"title\";s:31:\"Wpmet Summer Campaign Own Pages\";s:4:\"type\";s:6:\"notice\";s:6:\"screen\";s:11:\"plugin_page\";s:5:\"start\";i:1650326400;s:3:\"end\";i:1651276800;s:4:\"data\";O:8:\"stdClass\":9:{s:4:\"type\";s:6:\"notice\";s:11:\"button_link\";s:0:\"\";s:11:\"button_text\";s:0:\"\";s:11:\"notice_body\";s:233:\"ElementsKit , ShopEngine, MetForm, WP Social, WP Ultimate Review — get all these PRO plugins altogether and save 70% instantly throughout this Summer Sale!\r\n\r\n<a href=\"https://wpmet.com/notice/summer-sale\">Get Your Discount →</a>\";s:12:\"notice_image\";s:75:\"https://api.wpmet.com/auth/wp-content/uploads/2022/04/InPlugin-Notice-1.gif\";s:9:\"blacklist\";s:0:\"\";s:9:\"whitelist\";s:0:\"\";s:9:\"style_css\";s:14:\"display: block\";s:10:\"unique_key\";s:12:\"summerbanner\";}}}','yes'),(205,'elementskit-lite_install_date','2023-09-05 09:02:46','yes'),(206,'metform__banner_last_check','1694061776','yes'),(207,'metform__banner_data','O:8:\"stdClass\":10:{s:8:\"10010506\";O:8:\"stdClass\":7:{s:2:\"id\";i:10010506;s:5:\"title\";s:32:\"Wpmet Summer sale 2023 Dashboard\";s:4:\"type\";s:6:\"notice\";s:6:\"screen\";s:9:\"dashboard\";s:5:\"start\";i:1689552000;s:3:\"end\";i:1691625600;s:4:\"data\";O:8:\"stdClass\":9:{s:4:\"type\";s:6:\"notice\";s:11:\"button_link\";s:32:\"https://wpmet.com/summer-sale-23\";s:11:\"button_text\";s:24:\"Claim Your Discount Now!\";s:11:\"notice_body\";s:537:\"<h3><strong style=\"color: #; text-transform: uppercase; font-size: 14px;\"><span style=\"color: #e60073;\">Summer sales from Wpmet</span></strong></h3>\r\n<h3><strong style=\"font-size: 24px; padding: 8px 0 5px; color: #; display: block;\">Save up to $174 on Premium WordPress Plugins!</strong></h3>\r\n<p style=\"font-size: 16px; margin-left: -2px;\"><b>Get 30% discounts</b> on each of our PRO plugins — ElementsKit, ShopEngine, MetForm, WP Social, WP Ultimate Review — or get them <b>all in super-saver bundles to save 80% instantly!</b></p>\";s:12:\"notice_image\";s:66:\"https://api.wpmet.com/auth/wp-content/uploads/2023/07/notice-1.png\";s:9:\"blacklist\";s:0:\"\";s:9:\"whitelist\";s:0:\"\";s:9:\"style_css\";s:0:\"\";s:10:\"unique_key\";s:0:\"\";}}s:8:\"10010508\";O:8:\"stdClass\":7:{s:2:\"id\";i:10010508;s:5:\"title\";s:31:\"Wpmet Summer sale 2023 own page\";s:4:\"type\";s:6:\"notice\";s:6:\"screen\";s:11:\"plugin_page\";s:5:\"start\";i:1689552000;s:3:\"end\";i:1691625600;s:4:\"data\";O:8:\"stdClass\":9:{s:4:\"type\";s:6:\"notice\";s:11:\"button_link\";s:32:\"https://wpmet.com/summer-sale-23\";s:11:\"button_text\";s:24:\"Claim Your Discount Now!\";s:11:\"notice_body\";s:537:\"<h3><strong style=\"color: #; text-transform: uppercase; font-size: 14px;\"><span style=\"color: #e60073;\">Summer sales from Wpmet</span></strong></h3>\r\n<h3><strong style=\"font-size: 24px; padding: 8px 0 5px; color: #; display: block;\">Save up to $174 on Premium WordPress Plugins!</strong></h3>\r\n<p style=\"font-size: 16px; margin-left: -2px;\"><b>Get 30% discounts</b> on each of our PRO plugins — ElementsKit, ShopEngine, MetForm, WP Social, WP Ultimate Review — or get them <b>all in super-saver bundles to save 80% instantly!</b></p>\";s:12:\"notice_image\";s:66:\"https://api.wpmet.com/auth/wp-content/uploads/2023/07/notice-1.png\";s:9:\"blacklist\";s:0:\"\";s:9:\"whitelist\";s:0:\"\";s:9:\"style_css\";s:0:\"\";s:10:\"unique_key\";s:0:\"\";}}s:8:\"10010418\";O:8:\"stdClass\":7:{s:2:\"id\";i:10010418;s:5:\"title\";s:32:\"Wpmet Summer Ownpage Notice 2023\";s:4:\"type\";s:6:\"notice\";s:6:\"screen\";s:11:\"plugin_page\";s:5:\"start\";i:1685577600;s:3:\"end\";i:1686787200;s:4:\"data\";O:8:\"stdClass\":9:{s:4:\"type\";s:6:\"notice\";s:11:\"button_link\";s:26:\"https://wpmet.com/birthday\";s:11:\"button_text\";s:24:\"Claim Your Discount Now!\";s:11:\"notice_body\";s:539:\"<h3><strong style=\"color: #; text-transform: uppercase; font-size: 14px;\"><span style=\"color: #e60073;\">Birthday sales from Wpmet</span></strong></h3>\r\n<h3><strong style=\"font-size: 24px; padding: 8px 0 5px; color: #; display: block;\">Save up to $221 on Premium WordPress Plugins!</strong></h3>\r\n<p style=\"font-size: 16px; margin-left: -2px;\"><b>Get 45% discounts</b> on each of our PRO plugins — ElementsKit, ShopEngine, MetForm, WP Social, WP Ultimate Review — or get them <b>all in super-saver bundles to save 80% instantly!</b></p>\";s:12:\"notice_image\";s:64:\"https://api.wpmet.com/auth/wp-content/uploads/2023/06/notice.png\";s:9:\"blacklist\";s:0:\"\";s:9:\"whitelist\";s:0:\"\";s:9:\"style_css\";s:0:\"\";s:10:\"unique_key\";s:0:\"\";}}s:8:\"10008094\";O:8:\"stdClass\":7:{s:2:\"id\";i:10008094;s:5:\"title\";s:24:\"GetGenie Cross Promotion\";s:4:\"type\";s:6:\"notice\";s:6:\"screen\";s:9:\"dashboard\";s:5:\"start\";i:1678492800;s:3:\"end\";i:1688083200;s:4:\"data\";O:8:\"stdClass\":9:{s:4:\"type\";s:6:\"notice\";s:11:\"button_link\";s:35:\"https://wpmet.com/getgenie-org-page\";s:11:\"button_text\";s:14:\"Get Yours Now!\";s:11:\"notice_body\";s:766:\"<h2>We are delighted to announce that <span style=\"color: #2471b1;\"><strong style=\"color: #2471b1; text-transform: uppercase; font-size: 14px;\">GetGenie AI is now available</strong></span>!</h2>\r\n<h4 style=\"font-size: 16px; margin-left: -2px;\"><b>Let&#039;s write your content 20x faster with AI. Also, Research </b><b>keywords</b><b>, A</b><b>nalyse your </b><b>competitors, head 2 Head analysis,  content writing with ai, and search engine ranking with NLP Keywords optimization—all within WordPress.</b> Additionally, <b>you can chat</b> with the GENIE AI about your needs.</h4>\r\n<span style=\"color: #dd0cd9;\">Join now and get <span style=\"font-weight: 400;\"><strong>1500 words for free every month</strong></span></span><span style=\"color: #dd0cd9;\">. </span>\";s:12:\"notice_image\";s:79:\"https://api.wpmet.com/auth/wp-content/uploads/2023/03/genie_compare_image_4.png\";s:9:\"blacklist\";s:0:\"\";s:9:\"whitelist\";s:0:\"\";s:9:\"style_css\";s:20:\"background: #e9fce5;\";s:10:\"unique_key\";s:20:\"getgenie-cross-promo\";}}s:8:\"10008085\";O:8:\"stdClass\":7:{s:2:\"id\";i:10008085;s:5:\"title\";s:27:\"Wpmet Notice Dashboard 2022\";s:4:\"type\";s:6:\"notice\";s:6:\"screen\";s:9:\"dashboard\";s:5:\"start\";i:1671580800;s:3:\"end\";i:1673740800;s:4:\"data\";O:8:\"stdClass\":9:{s:4:\"type\";s:6:\"notice\";s:11:\"button_link\";s:34:\"https://wpmet.com/holiday22/notice\";s:11:\"button_text\";s:24:\"Claim Your Discount Now!\";s:11:\"notice_body\";s:517:\"<h3><strong style=\"color: #; text-transform: uppercase; font-size: 14px;\"><span style=\"color: #e60073;\">Holiday Deals from Wpmet</span></strong> <br>\r\n<strong style=\"font-size: 24px; padding: 8px 0 5px; color: #; display: block;\">Save up to $1670 on Premium WordPress Plugins!</strong></h3>\r\n<p style=\"font-size: 16px; margin-left: -2px;\"><b>Get 35% discounts</b> on each of our PRO plugins — ElementsKit, ShopEngine, MetForm, WP Social — or get them <b>all in super-saver bundles to save 70% instantly!\r\n</b></p>\";s:12:\"notice_image\";s:70:\"https://api.wpmet.com/auth/wp-content/uploads/2022/11/70-OFF-wpmet.png\";s:9:\"blacklist\";s:0:\"\";s:9:\"whitelist\";s:0:\"\";s:9:\"style_css\";s:0:\"\";s:10:\"unique_key\";s:7:\"bfc2022\";}}s:8:\"10008083\";O:8:\"stdClass\":7:{s:2:\"id\";i:10008083;s:5:\"title\";s:25:\"Wpmet Notice Ownpage 2022\";s:4:\"type\";s:6:\"notice\";s:6:\"screen\";s:11:\"plugin_page\";s:5:\"start\";i:1671580800;s:3:\"end\";i:1673740800;s:4:\"data\";O:8:\"stdClass\":9:{s:4:\"type\";s:6:\"notice\";s:11:\"button_link\";s:34:\"https://wpmet.com/holiday22/notice\";s:11:\"button_text\";s:24:\"Claim Your Discount Now!\";s:11:\"notice_body\";s:519:\"<h3><strong style=\"color: #; text-transform: uppercase; font-size: 14px;\"><span style=\"color: #e60073;\">Holiday Deals from Wpmet. </span></strong> <br>\r\n<strong style=\"font-size: 24px; padding: 8px 0 5px; color: #; display: block;\">Save up to $1670 on Premium WordPress Plugins!</strong></h3>\r\n<p style=\"font-size: 16px; margin-left: -2px;\"><b>Get 35% discounts</b> on each of our PRO plugins — ElementsKit, ShopEngine, MetForm, WP Social — or get them <b>all in super-saver bundles to save 70% instantly!\r\n</b></p>\";s:12:\"notice_image\";s:70:\"https://api.wpmet.com/auth/wp-content/uploads/2022/11/70-OFF-wpmet.png\";s:9:\"blacklist\";s:0:\"\";s:9:\"whitelist\";s:0:\"\";s:9:\"style_css\";s:0:\"\";s:10:\"unique_key\";s:7:\"bfc2022\";}}s:8:\"10007775\";O:8:\"stdClass\":7:{s:2:\"id\";i:10007775;s:5:\"title\";s:17:\"August Flash Sale\";s:4:\"type\";s:6:\"banner\";s:6:\"screen\";s:7:\"plugins\";s:5:\"start\";i:1661385600;s:3:\"end\";i:1661904000;s:4:\"data\";O:8:\"stdClass\":7:{s:4:\"type\";s:6:\"banner\";s:11:\"banner_link\";s:30:\"https://wpmet.com/flash/banner\";s:12:\"banner_image\";s:75:\"https://api.wpmet.com/auth/wp-content/uploads/2022/08/InPlugin-Banner-4.gif\";s:9:\"blacklist\";s:0:\"\";s:9:\"whitelist\";s:0:\"\";s:9:\"style_css\";s:76:\"background-color: #00003E; display: block; height: 60px; text-align: center;\";s:10:\"unique_key\";s:15:\"AugustFlashSale\";}}s:8:\"10007665\";O:8:\"stdClass\":7:{s:2:\"id\";i:10007665;s:5:\"title\";s:18:\"Metform x Hubspot!\";s:4:\"type\";s:6:\"notice\";s:6:\"screen\";s:9:\"dashboard\";s:5:\"start\";i:1660003200;s:3:\"end\";i:1661299200;s:4:\"data\";O:8:\"stdClass\":9:{s:4:\"type\";s:6:\"notice\";s:11:\"button_link\";s:0:\"\";s:11:\"button_text\";s:0:\"\";s:11:\"notice_body\";s:232:\"<span style=\"color: #000000;\"><strong>MetForm\'s HubSpot FREE integration</strong> is now complete for your convenience. Just go to MetForm → Settings → CRM &amp; Marketing Integrations to connect HubSpot with MetForm now!</span>\";s:12:\"notice_image\";s:84:\"https://api.wpmet.com/auth/wp-content/uploads/2022/08/Metform-Integration-notice.gif\";s:9:\"blacklist\";s:0:\"\";s:9:\"whitelist\";s:0:\"\";s:9:\"style_css\";s:0:\"\";s:10:\"unique_key\";s:0:\"\";}}s:8:\"10007416\";O:8:\"stdClass\":7:{s:2:\"id\";i:10007416;s:5:\"title\";s:28:\"Wpmet 4th of July Flash Sale\";s:4:\"type\";s:6:\"notice\";s:6:\"screen\";s:8:\"all_page\";s:5:\"start\";i:1656806400;s:3:\"end\";i:1657065600;s:4:\"data\";O:8:\"stdClass\":9:{s:4:\"type\";s:6:\"notice\";s:11:\"button_link\";s:0:\"\";s:11:\"button_text\";s:0:\"\";s:11:\"notice_body\";s:603:\"ElementsKit, ShopEngine, MetForm, WP Social, WP Ultimate Review — get all these PRO plugins altogether and save 70% instantly! Happy 4th of July Flash Sale!!\r\n\r\n<a href=\"https://wpmet.com/4-july/notice\"><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Claim Your Discount →&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:1337857,&quot;3&quot;:{&quot;1&quot;:0},&quot;12&quot;:0,&quot;14&quot;:{&quot;1&quot;:2,&quot;2&quot;:1136076},&quot;16&quot;:10,&quot;17&quot;:1,&quot;21&quot;:1,&quot;23&quot;:1}\" data-sheets-hyperlink=\"https://wpmet.com/deals\">Claim Your Discount →</span></a>\";s:12:\"notice_image\";s:64:\"https://api.wpmet.com/auth/wp-content/uploads/2022/07/Notice.gif\";s:9:\"blacklist\";s:0:\"\";s:9:\"whitelist\";s:0:\"\";s:9:\"style_css\";s:14:\"display: block\";s:10:\"unique_key\";s:13:\"4thJulybanner\";}}s:8:\"10007174\";O:8:\"stdClass\":7:{s:2:\"id\";i:10007174;s:5:\"title\";s:31:\"Wpmet Birthday Campaign Ownpage\";s:4:\"type\";s:6:\"notice\";s:6:\"screen\";s:8:\"all_page\";s:5:\"start\";i:1653868800;s:3:\"end\";i:1655942400;s:4:\"data\";O:8:\"stdClass\":9:{s:4:\"type\";s:6:\"notice\";s:11:\"button_link\";s:0:\"\";s:11:\"button_text\";s:0:\"\";s:11:\"notice_body\";s:261:\"Wpmet\'s Birthday Sale is going on! Enjoy limited-time discounts of up to 50% on each of our PRO plugins — ElementsKit , ShopEngine, MetForm, WP Social, WP Ultimate Review. Hurry up!\r\n\r\n<a href=\"https://wpmet.com/notice/birthday-deal\">Get Your Discount →</a>\";s:12:\"notice_image\";s:76:\"https://api.wpmet.com/auth/wp-content/uploads/2022/05/InPlugin-Notice-50.gif\";s:9:\"blacklist\";s:0:\"\";s:9:\"whitelist\";s:0:\"\";s:9:\"style_css\";s:14:\"display: block\";s:10:\"unique_key\";s:14:\"birthdaybanner\";}}}','yes'),(208,'metform_install_date','2023-09-05 09:02:53','yes'),(211,'_elementor_settings_update_time','1693905062','yes'),(212,'elementor_cpt_support','a:2:{i:0;s:4:\"post\";i:1;s:4:\"page\";}','yes'),(213,'elementor_disable_color_schemes','yes','yes'),(214,'elementor_disable_typography_schemes','yes','yes'),(215,'elementor_allow_tracking','no','yes'),(216,'elementor_google_maps_api_key','','yes'),(217,'elementor_css_print_method','external','yes'),(218,'elementor_editor_break_lines','','yes'),(219,'elementor_unfiltered_files_upload','','yes'),(220,'elementor_google_font','1','yes'),(221,'elementor_load_fa4_shim','','yes'),(222,'elementor_meta_generator_tag','','yes'),(223,'elementor_experiment-e_font_icon_svg','default','yes'),(224,'elementor_experiment-container','default','yes'),(225,'elementor_experiment-container_grid','default','yes'),(226,'elementor_experiment-editor_v2','default','yes'),(227,'elementor_experiment-landing-pages','default','yes'),(228,'elementor_experiment-nested-elements','default','yes'),(229,'elementor_experiment-e_lazyload','default','yes'),(230,'elementor_experiment-e_global_styleguide','default','yes'),(231,'elementor_experiment-e_dom_optimization','default','yes'),(232,'elementor_experiment-e_optimized_assets_loading','default','yes'),(233,'elementor_experiment-e_optimized_css_loading','default','yes'),(234,'elementor_experiment-additional_custom_breakpoints','default','yes'),(235,'elementor_experiment-e_swiper_latest','default','yes'),(236,'elementor_experiment-hello-theme-header-footer','default','yes'),(239,'_transient_timeout_header-footer-elementor-rating','1695201731','no'),(240,'_transient_header-footer-elementor-rating','delayed-notice','no'),(248,'jeg-dynamic-css','','yes'),(263,'_site_transient_timeout_wp_remote_block_patterns_b8add59afb2e706b3afed0d3c1426d84','1693980740','no');
INSERT INTO `wp_options` VALUES (264,'_site_transient_wp_remote_block_patterns_b8add59afb2e706b3afed0d3c1426d84','a:46:{i:0;O:8:\"stdClass\":7:{s:2:\"id\";i:310547;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:40:\"Cover Poster on Left, Paragraph on Right\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:3610:\"\n<div class=\"wp-block-cover alignfull has-custom-content-position is-position-top-center\" style=\"margin-top:0;padding-top:5vw;padding-right:5vw;padding-bottom:5vw;padding-left:5vw\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-100 has-background-dim\" style=\"background-color:#36220c\"></span><div class=\"wp-block-cover__inner-container is-layout-flow wp-block-cover-is-layout-flow\">\n<div class=\"wp-block-group is-content-justification-space-between is-layout-flex wp-container-8 wp-block-group-is-layout-flex\">\n<div class=\"wp-block-cover is-light has-custom-content-position is-position-top-right wp-container-content-2 wp-duotone-rgb137750-rgb210210210-4\" style=\"padding-top:4vw;padding-right:4vw;padding-bottom:4vw;padding-left:4vw;min-height:75vh\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim\"></span><img decoding=\"async\" class=\"wp-block-cover__image-background wp-image-334\" alt=\"\" src=\"https://pd.w.org/2023/04/654642d52f20d6367.57324872.jpg\" data-object-fit=\"cover\" /><div class=\"wp-block-cover__inner-container is-layout-flow wp-block-cover-is-layout-flow\">\n<div class=\"wp-block-group is-vertical is-content-justification-right is-nowrap is-layout-flex wp-container-1 wp-block-group-is-layout-flex\">\n<p class=\"has-text-color\" style=\"color:#e5683a;font-size:140px;font-style:normal;font-weight:800;letter-spacing:-6px;line-height:0.8;text-transform:uppercase\">Wardell</p>\n\n\n\n<p class=\"has-text-color\" style=\"color:#e5683a;font-size:130px;font-style:normal;font-weight:800;letter-spacing:-6px;line-height:0.8;text-transform:uppercase\">gray</p>\n\n\n\n<p class=\"has-text-align-center has-text-color\" style=\"color:#d09c9c;font-size:90px;font-style:normal;font-weight:800;letter-spacing:0px;line-height:1;text-transform:uppercase\">Plays</p>\n\n\n\n<p class=\"has-text-align-center has-text-color\" style=\"color:#e59937;font-size:90px;font-style:normal;font-weight:800;letter-spacing:0px;line-height:0.8;text-transform:uppercase\">Bebop &amp;</p>\n\n\n\n<p class=\"has-text-align-center has-text-color\" style=\"color:#e59937;font-size:90px;font-style:normal;font-weight:800;letter-spacing:0px;line-height:1;text-transform:uppercase\">SWING</p>\n</div>\n</div></div>\n\n\n\n<div class=\"wp-block-group wp-container-content-6 is-vertical is-nowrap is-layout-flex wp-container-7 wp-block-group-is-layout-flex\">\n<p class=\"has-text-color\" style=\"color:#e59937;font-size:18px;font-style:normal;font-weight:400;letter-spacing:0px;line-height:1.7\">Wardell Gray was born in Oklahoma City, the youngest of four children. His early childhood years were spent in Oklahoma, before moving with his family to Detroit in 1929. </p>\n\n\n\n<p class=\"has-text-color\" style=\"color:#e59937;font-size:18px;font-style:normal;font-weight:400;letter-spacing:0px;line-height:1.7\">In early 1935, Gray began attending Northeastern High School, and then transferred to Cass Technical High School, which is noted for having Donald Byrd, Lucky Thompson and Al McKibbon as alumni. </p>\n\n\n\n<div class=\"wp-block-buttons is-content-justification-left is-nowrap is-layout-flex wp-container-5 wp-block-buttons-is-layout-flex\">\n<div class=\"wp-block-button has-custom-font-size is-style-outline\" style=\"font-size:16px;font-style:normal;font-weight:700;letter-spacing:0px;text-transform:uppercase\"><a class=\"wp-block-button__link has-text-color wp-element-button\" style=\"border-radius:0px;color:#e59937;padding-top:16px;padding-right:32px;padding-bottom:16px;padding-left:32px\">Listen Now</a></div>\n</div>\n\n\n\n<div style=\"height:7.5vw\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n</div>\n</div>\n</div></div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:0:\"\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.2\";s:25:\"wpop_contains_block_types\";s:73:\"core/button,core/buttons,core/cover,core/group,core/paragraph,core/spacer\";}s:14:\"category_slugs\";a:1:{i:0;s:6:\"banner\";}s:13:\"keyword_slugs\";a:1:{i:0;s:4:\"core\";}s:15:\"pattern_content\";s:6343:\"<!-- wp:cover {\"customOverlayColor\":\"#36220c\",\"contentPosition\":\"top center\",\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"5vw\",\"right\":\"5vw\",\"bottom\":\"5vw\",\"left\":\"5vw\"},\"margin\":{\"top\":\"0\"}}}} -->\n<div class=\"wp-block-cover alignfull has-custom-content-position is-position-top-center\" style=\"margin-top:0;padding-top:5vw;padding-right:5vw;padding-bottom:5vw;padding-left:5vw\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-100 has-background-dim\" style=\"background-color:#36220c\"></span><div class=\"wp-block-cover__inner-container\"><!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"3vw\"}},\"layout\":{\"type\":\"flex\",\"flexWrap\":\"wrap\",\"verticalAlignment\":\"stretch\",\"justifyContent\":\"space-between\"}} -->\n<div class=\"wp-block-group\"><!-- wp:cover {\"url\":\"https://pd.w.org/2023/04/654642d52f20d6367.57324872.jpg\",\"id\":334,\"dimRatio\":50,\"minHeight\":75,\"minHeightUnit\":\"vh\",\"contentPosition\":\"top right\",\"isDark\":false,\"style\":{\"layout\":{\"selfStretch\":\"fill\"},\"spacing\":{\"padding\":{\"top\":\"4vw\",\"right\":\"4vw\",\"bottom\":\"4vw\",\"left\":\"4vw\"}},\"color\":{\"duotone\":[\"rgb(137, 75, 0)\",\"rgb(210, 210, 210)\"]}}} -->\n<div class=\"wp-block-cover is-light has-custom-content-position is-position-top-right\" style=\"padding-top:4vw;padding-right:4vw;padding-bottom:4vw;padding-left:4vw;min-height:75vh\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim\"></span><img class=\"wp-block-cover__image-background wp-image-334\" alt=\"\" src=\"https://pd.w.org/2023/04/654642d52f20d6367.57324872.jpg\" data-object-fit=\"cover\" /><div class=\"wp-block-cover__inner-container\"><!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"0\"}},\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\",\"flexWrap\":\"nowrap\",\"justifyContent\":\"right\"}} -->\n<div class=\"wp-block-group\"><!-- wp:paragraph {\"style\":{\"typography\":{\"fontSize\":\"140px\",\"textTransform\":\"uppercase\",\"fontStyle\":\"normal\",\"fontWeight\":\"800\",\"lineHeight\":\"0.8\",\"letterSpacing\":\"-6px\"},\"color\":{\"text\":\"#e5683a\"}}} -->\n<p class=\"has-text-color\" style=\"color:#e5683a;font-size:140px;font-style:normal;font-weight:800;letter-spacing:-6px;line-height:0.8;text-transform:uppercase\">Wardell</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"style\":{\"typography\":{\"fontSize\":\"130px\",\"textTransform\":\"uppercase\",\"fontStyle\":\"normal\",\"fontWeight\":\"800\",\"lineHeight\":\"0.8\",\"letterSpacing\":\"-6px\"},\"color\":{\"text\":\"#e5683a\"}}} -->\n<p class=\"has-text-color\" style=\"color:#e5683a;font-size:130px;font-style:normal;font-weight:800;letter-spacing:-6px;line-height:0.8;text-transform:uppercase\">gray</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"placeholder\":\"Write title…\",\"style\":{\"typography\":{\"fontSize\":\"90px\",\"textTransform\":\"uppercase\",\"fontStyle\":\"normal\",\"fontWeight\":\"800\",\"letterSpacing\":\"0px\",\"lineHeight\":\"1\"},\"color\":{\"text\":\"#d09c9c\"}}} -->\n<p class=\"has-text-align-center has-text-color\" style=\"color:#d09c9c;font-size:90px;font-style:normal;font-weight:800;letter-spacing:0px;line-height:1;text-transform:uppercase\">Plays</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"placeholder\":\"Write title…\",\"style\":{\"typography\":{\"fontSize\":\"90px\",\"textTransform\":\"uppercase\",\"fontStyle\":\"normal\",\"fontWeight\":\"800\",\"letterSpacing\":\"0px\",\"lineHeight\":\"0.8\"},\"color\":{\"text\":\"#e59937\"}}} -->\n<p class=\"has-text-align-center has-text-color\" style=\"color:#e59937;font-size:90px;font-style:normal;font-weight:800;letter-spacing:0px;line-height:0.8;text-transform:uppercase\">Bebop &amp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"placeholder\":\"Write title…\",\"style\":{\"typography\":{\"fontSize\":\"90px\",\"textTransform\":\"uppercase\",\"fontStyle\":\"normal\",\"fontWeight\":\"800\",\"letterSpacing\":\"0px\",\"lineHeight\":\"1\"},\"color\":{\"text\":\"#e59937\"}}} -->\n<p class=\"has-text-align-center has-text-color\" style=\"color:#e59937;font-size:90px;font-style:normal;font-weight:800;letter-spacing:0px;line-height:1;text-transform:uppercase\">SWING</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group --></div></div>\n<!-- /wp:cover -->\n\n<!-- wp:group {\"style\":{\"layout\":{\"selfStretch\":\"fixed\",\"flexSize\":\"420px\"}},\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\",\"flexWrap\":\"nowrap\",\"verticalAlignment\":\"bottom\"}} -->\n<div class=\"wp-block-group\"><!-- wp:paragraph {\"style\":{\"typography\":{\"fontSize\":\"18px\",\"letterSpacing\":\"0px\",\"lineHeight\":\"1.7\",\"fontStyle\":\"normal\",\"fontWeight\":\"400\"},\"color\":{\"text\":\"#e59937\"}}} -->\n<p class=\"has-text-color\" style=\"color:#e59937;font-size:18px;font-style:normal;font-weight:400;letter-spacing:0px;line-height:1.7\">Wardell Gray was born in Oklahoma City, the youngest of four children. His early childhood years were spent in Oklahoma, before moving with his family to Detroit in 1929. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"style\":{\"typography\":{\"fontSize\":\"18px\",\"letterSpacing\":\"0px\",\"lineHeight\":\"1.7\",\"fontStyle\":\"normal\",\"fontWeight\":\"400\"},\"color\":{\"text\":\"#e59937\"}}} -->\n<p class=\"has-text-color\" style=\"color:#e59937;font-size:18px;font-style:normal;font-weight:400;letter-spacing:0px;line-height:1.7\">In early 1935, Gray began attending Northeastern High School, and then transferred to Cass Technical High School, which is noted for having Donald Byrd, Lucky Thompson and Al McKibbon as alumni. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:buttons {\"layout\":{\"type\":\"flex\",\"flexWrap\":\"nowrap\",\"justifyContent\":\"left\"}} -->\n<div class=\"wp-block-buttons\"><!-- wp:button {\"style\":{\"color\":{\"text\":\"#e59937\"},\"border\":{\"radius\":\"0px\"},\"spacing\":{\"padding\":{\"top\":\"16px\",\"right\":\"32px\",\"bottom\":\"16px\",\"left\":\"32px\"}},\"typography\":{\"fontSize\":\"16px\",\"textTransform\":\"uppercase\",\"fontStyle\":\"normal\",\"fontWeight\":\"700\",\"letterSpacing\":\"0px\"}},\"className\":\"is-style-outline\"} -->\n<div class=\"wp-block-button has-custom-font-size is-style-outline\" style=\"font-size:16px;font-style:normal;font-weight:700;letter-spacing:0px;text-transform:uppercase\"><a class=\"wp-block-button__link has-text-color wp-element-button\" style=\"border-radius:0px;color:#e59937;padding-top:16px;padding-right:32px;padding-bottom:16px;padding-left:32px\">Listen Now</a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons -->\n\n<!-- wp:spacer {\"height\":\"7.5vw\"} -->\n<div style=\"height:7.5vw\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:group --></div>\n<!-- /wp:group --></div></div>\n<!-- /wp:cover -->\";}i:1;O:8:\"stdClass\":7:{s:2:\"id\";i:309935;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:45:\"Centered image with two-tone background color\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:1278:\"\n<div class=\"wp-block-cover alignfull is-light\" style=\"margin-top:0;padding-top:5vw;padding-right:5vw;padding-bottom:5vw;padding-left:5vw;min-height:66vh\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-100 has-background-dim has-background-gradient\" style=\"background:linear-gradient(90deg,rgb(35,74,20) 50%,rgb(225,137,116) 50%)\"></span><div class=\"wp-block-cover__inner-container is-layout-flow wp-block-cover-is-layout-flow\">\n<div class=\"wp-block-group wp-container-content-11 is-layout-constrained wp-container-12 wp-block-group-is-layout-constrained\">\n<div style=\"height:100px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<figure class=\"wp-block-image size-large is-style-default wp-duotone-000000-ffffff-10\"><img decoding=\"async\" src=\"https://pd.w.org/2022/03/3866241b433db4ee2.96648572.jpeg\" alt=\"\" /></figure>\n\n\n\n<div style=\"height:48px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<h2 class=\"wp-block-heading alignwide has-text-align-center has-white-color has-text-color\" style=\"padding-left:32px;font-size:50px;font-style:normal;font-weight:400;letter-spacing:32px;line-height:1;text-transform:uppercase\">Etcetera</h2>\n\n\n\n<div style=\"height:100px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n</div>\n</div></div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:18:\"Gradient, Two-Tone\";s:16:\"wpop_description\";s:0:\"\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.2\";s:25:\"wpop_contains_block_types\";s:57:\"core/cover,core/group,core/heading,core/image,core/spacer\";}s:14:\"category_slugs\";a:3:{i:0;s:6:\"banner\";i:1;s:6:\"images\";i:2;s:4:\"text\";}s:13:\"keyword_slugs\";a:1:{i:0;s:4:\"core\";}s:15:\"pattern_content\";s:2134:\"<!-- wp:cover {\"minHeight\":66,\"minHeightUnit\":\"vh\",\"customGradient\":\"linear-gradient(90deg,rgb(35,74,20) 50%,rgb(225,137,116) 50%)\",\"isDark\":false,\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"5vw\",\"right\":\"5vw\",\"bottom\":\"5vw\",\"left\":\"5vw\"},\"margin\":{\"top\":\"0\"}}}} -->\n<div class=\"wp-block-cover alignfull is-light\" style=\"margin-top:0;padding-top:5vw;padding-right:5vw;padding-bottom:5vw;padding-left:5vw;min-height:66vh\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-100 has-background-dim has-background-gradient\" style=\"background:linear-gradient(90deg,rgb(35,74,20) 50%,rgb(225,137,116) 50%)\"></span><div class=\"wp-block-cover__inner-container\"><!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"0px\"},\"layout\":{\"selfStretch\":\"fill\",\"flexSize\":null}},\"layout\":{\"type\":\"constrained\",\"contentSize\":\"600px\",\"wideSize\":\"1200px\"}} -->\n<div class=\"wp-block-group\"><!-- wp:spacer -->\n<div style=\"height:100px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:image {\"sizeSlug\":\"large\",\"style\":{\"color\":{\"duotone\":[\"#000000\",\"#ffffff\"]}},\"className\":\"is-style-default\"} -->\n<figure class=\"wp-block-image size-large is-style-default\"><img src=\"https://pd.w.org/2022/03/3866241b433db4ee2.96648572.jpeg\" alt=\"\" /></figure>\n<!-- /wp:image -->\n\n<!-- wp:spacer {\"height\":\"48px\"} -->\n<div style=\"height:48px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:heading {\"textAlign\":\"center\",\"align\":\"wide\",\"style\":{\"typography\":{\"fontSize\":\"50px\",\"fontStyle\":\"normal\",\"fontWeight\":\"400\",\"textTransform\":\"uppercase\",\"letterSpacing\":\"32px\",\"lineHeight\":\"1\"},\"spacing\":{\"padding\":{\"left\":\"32px\"}}},\"textColor\":\"white\"} -->\n<h2 class=\"wp-block-heading alignwide has-text-align-center has-white-color has-text-color\" style=\"padding-left:32px;font-size:50px;font-style:normal;font-weight:400;letter-spacing:32px;line-height:1;text-transform:uppercase\">Etcetera</h2>\n<!-- /wp:heading -->\n\n<!-- wp:spacer -->\n<div style=\"height:100px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:group --></div></div>\n<!-- /wp:cover -->\";}i:2;O:8:\"stdClass\":7:{s:2:\"id\";i:309925;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:43:\"Fullwidth Dark Banner with Heading Top Left\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:1031:\"\n<div class=\"wp-block-cover alignfull has-custom-content-position is-position-top-left\" style=\"margin-top:0;padding-top:5vw;padding-right:5vw;padding-bottom:5vw;padding-left:5vw;min-height:50vh\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-90 has-background-dim\" style=\"background-color:#141414\"></span><img decoding=\"async\" class=\"wp-block-cover__image-background wp-image-333\" alt=\"\" src=\"https://pd.w.org/2022/07/87262c92d42acd1c3.73206444.jpg\" style=\"object-position:50% 0%\" data-object-fit=\"cover\" data-object-position=\"50% 0%\" /><div class=\"wp-block-cover__inner-container is-layout-flow wp-block-cover-is-layout-flow\">\n<div class=\"wp-block-group wp-container-content-14 is-vertical is-nowrap is-layout-flex wp-container-15 wp-block-group-is-layout-flex\">\n<p class=\"has-text-align-left has-text-color has-source-serif-pro-font-family\" style=\"color:#d8a557;font-size:160px;font-style:italic;font-weight:900;letter-spacing:-4px;line-height:0.8;text-transform:none\">bud!</p>\n</div>\n</div></div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:16:\"Jazz, Fulllwidth\";s:16:\"wpop_description\";s:0:\"\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.2\";s:25:\"wpop_contains_block_types\";s:36:\"core/cover,core/group,core/paragraph\";}s:14:\"category_slugs\";a:1:{i:0;s:6:\"banner\";}s:13:\"keyword_slugs\";a:1:{i:0;s:4:\"core\";}s:15:\"pattern_content\";s:1697:\"<!-- wp:cover {\"url\":\"https://pd.w.org/2022/07/87262c92d42acd1c3.73206444.jpg\",\"id\":333,\"dimRatio\":90,\"customOverlayColor\":\"#141414\",\"focalPoint\":{\"x\":0.5,\"y\":0},\"minHeight\":50,\"minHeightUnit\":\"vh\",\"contentPosition\":\"top left\",\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"5vw\",\"right\":\"5vw\",\"bottom\":\"5vw\",\"left\":\"5vw\"},\"margin\":{\"top\":\"0\"}}}} -->\n<div class=\"wp-block-cover alignfull has-custom-content-position is-position-top-left\" style=\"margin-top:0;padding-top:5vw;padding-right:5vw;padding-bottom:5vw;padding-left:5vw;min-height:50vh\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-90 has-background-dim\" style=\"background-color:#141414\"></span><img class=\"wp-block-cover__image-background wp-image-333\" alt=\"\" src=\"https://pd.w.org/2022/07/87262c92d42acd1c3.73206444.jpg\" style=\"object-position:50% 0%\" data-object-fit=\"cover\" data-object-position=\"50% 0%\" /><div class=\"wp-block-cover__inner-container\"><!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"0px\"},\"layout\":{\"selfStretch\":\"fill\",\"flexSize\":null}},\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\",\"flexWrap\":\"nowrap\"}} -->\n<div class=\"wp-block-group\"><!-- wp:paragraph {\"align\":\"left\",\"style\":{\"typography\":{\"fontSize\":\"160px\",\"fontStyle\":\"italic\",\"fontWeight\":\"900\",\"lineHeight\":\"0.8\",\"letterSpacing\":\"-4px\",\"textTransform\":\"none\"},\"color\":{\"text\":\"#d8a557\"}},\"fontFamily\":\"source-serif-pro\"} -->\n<p class=\"has-text-align-left has-text-color has-source-serif-pro-font-family\" style=\"color:#d8a557;font-size:160px;font-style:italic;font-weight:900;letter-spacing:-4px;line-height:0.8;text-transform:none\">bud!</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group --></div></div>\n<!-- /wp:cover -->\";}i:3;O:8:\"stdClass\":7:{s:2:\"id\";i:309230;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:44:\"Fullwidth cover with repeating gradient text\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:1724:\"\n<div class=\"wp-block-cover alignfull is-light wp-duotone-36345d-abaaaa-19\" style=\"margin-top:0;padding-top:5vw;padding-right:5vw;padding-bottom:5vw;padding-left:5vw\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-60 has-background-dim\" style=\"background-color:#c2b7a4\"></span><img decoding=\"async\" class=\"wp-block-cover__image-background wp-image-334\" alt=\"\" src=\"https://pd.w.org/2022/01/95161f850d22f0c06.37817431.jpg\" style=\"object-position:50% 5%\" data-object-fit=\"cover\" data-object-position=\"50% 5%\" /><div class=\"wp-block-cover__inner-container is-layout-flow wp-block-cover-is-layout-flow\">\n<div style=\"height:48px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<div class=\"wp-block-group is-vertical is-content-justification-center is-nowrap is-layout-flex wp-container-17 wp-block-group-is-layout-flex\">\n<p class=\"has-text-align-right has-text-color\" style=\"color:#c8c4d3;font-size:148px;font-style:normal;font-weight:300;letter-spacing:-4px;line-height:0.8;text-transform:uppercase\">DJANGO</p>\n\n\n\n<p class=\"has-text-align-right has-text-color\" style=\"color:#ac94b2;font-size:148px;font-style:normal;font-weight:300;letter-spacing:-4px;line-height:0.8;text-transform:uppercase\">DJANGO</p>\n\n\n\n<p class=\"has-text-align-right has-text-color\" style=\"color:#71689c;font-size:148px;font-style:normal;font-weight:300;letter-spacing:-4px;line-height:0.8;text-transform:uppercase\">DJANGO</p>\n\n\n\n<p class=\"has-text-align-right has-text-color\" style=\"color:#444178;font-size:148px;font-style:normal;font-weight:300;letter-spacing:-4px;line-height:0.8;text-transform:uppercase\">DJANGO</p>\n</div>\n\n\n\n<div style=\"height:48px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n</div></div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:48:\"Fullwidth, Background Image, Gradient, Uppercase\";s:16:\"wpop_description\";s:0:\"\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.2\";s:25:\"wpop_contains_block_types\";s:48:\"core/cover,core/group,core/paragraph,core/spacer\";}s:14:\"category_slugs\";a:2:{i:0;s:6:\"banner\";i:1;s:4:\"text\";}s:13:\"keyword_slugs\";a:1:{i:0;s:4:\"core\";}s:15:\"pattern_content\";s:3135:\"<!-- wp:cover {\"url\":\"https://pd.w.org/2022/01/95161f850d22f0c06.37817431.jpg\",\"id\":334,\"dimRatio\":60,\"customOverlayColor\":\"#c2b7a4\",\"focalPoint\":{\"x\":0.5,\"y\":0.05},\"isDark\":false,\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"5vw\",\"right\":\"5vw\",\"bottom\":\"5vw\",\"left\":\"5vw\"},\"margin\":{\"top\":\"0\"}},\"color\":{\"duotone\":[\"#36345d\",\"#abaaaa\"]}}} -->\n<div class=\"wp-block-cover alignfull is-light\" style=\"margin-top:0;padding-top:5vw;padding-right:5vw;padding-bottom:5vw;padding-left:5vw\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-60 has-background-dim\" style=\"background-color:#c2b7a4\"></span><img class=\"wp-block-cover__image-background wp-image-334\" alt=\"\" src=\"https://pd.w.org/2022/01/95161f850d22f0c06.37817431.jpg\" style=\"object-position:50% 5%\" data-object-fit=\"cover\" data-object-position=\"50% 5%\" /><div class=\"wp-block-cover__inner-container\"><!-- wp:spacer {\"height\":\"48px\"} -->\n<div style=\"height:48px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"0\"}},\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\",\"flexWrap\":\"nowrap\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-group\"><!-- wp:paragraph {\"align\":\"right\",\"style\":{\"typography\":{\"fontSize\":\"148px\",\"textTransform\":\"uppercase\",\"fontStyle\":\"normal\",\"fontWeight\":\"300\",\"lineHeight\":\"0.8\",\"letterSpacing\":\"-4px\"},\"color\":{\"text\":\"#c8c4d3\"}}} -->\n<p class=\"has-text-align-right has-text-color\" style=\"color:#c8c4d3;font-size:148px;font-style:normal;font-weight:300;letter-spacing:-4px;line-height:0.8;text-transform:uppercase\">DJANGO</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"right\",\"style\":{\"typography\":{\"fontSize\":\"148px\",\"textTransform\":\"uppercase\",\"fontStyle\":\"normal\",\"fontWeight\":\"300\",\"lineHeight\":\"0.8\",\"letterSpacing\":\"-4px\"},\"color\":{\"text\":\"#ac94b2\"}}} -->\n<p class=\"has-text-align-right has-text-color\" style=\"color:#ac94b2;font-size:148px;font-style:normal;font-weight:300;letter-spacing:-4px;line-height:0.8;text-transform:uppercase\">DJANGO</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"right\",\"style\":{\"typography\":{\"fontSize\":\"148px\",\"textTransform\":\"uppercase\",\"fontStyle\":\"normal\",\"fontWeight\":\"300\",\"lineHeight\":\"0.8\",\"letterSpacing\":\"-4px\"},\"color\":{\"text\":\"#71689c\"}}} -->\n<p class=\"has-text-align-right has-text-color\" style=\"color:#71689c;font-size:148px;font-style:normal;font-weight:300;letter-spacing:-4px;line-height:0.8;text-transform:uppercase\">DJANGO</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"right\",\"style\":{\"typography\":{\"fontSize\":\"148px\",\"textTransform\":\"uppercase\",\"fontStyle\":\"normal\",\"fontWeight\":\"300\",\"lineHeight\":\"0.8\",\"letterSpacing\":\"-4px\"},\"color\":{\"text\":\"#444178\"}}} -->\n<p class=\"has-text-align-right has-text-color\" style=\"color:#444178;font-size:148px;font-style:normal;font-weight:300;letter-spacing:-4px;line-height:0.8;text-transform:uppercase\">DJANGO</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group -->\n\n<!-- wp:spacer {\"height\":\"48px\"} -->\n<div style=\"height:48px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div></div>\n<!-- /wp:cover -->\";}i:4;O:8:\"stdClass\":7:{s:2:\"id\";i:309224;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:72:\"Fullwidth, vertically aligned headline on right with description on left\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:2130:\"\n<div class=\"wp-block-cover alignfull is-light\" style=\"margin-top:0;padding-top:5vw;padding-right:5vw;padding-bottom:5vw;padding-left:5vw\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-100 has-background-dim\" style=\"background-color:#e68b14\"></span><div class=\"wp-block-cover__inner-container is-layout-flow wp-block-cover-is-layout-flow\">\n<div class=\"wp-block-group is-layout-flex wp-container-26 wp-block-group-is-layout-flex\">\n<div class=\"wp-block-group wp-container-content-22 is-layout-flow wp-container-23 wp-block-group-is-layout-flow\">\n<p class=\"wp-container-content-20\" style=\"font-size:17px;font-style:normal;font-weight:300;letter-spacing:0px;line-height:1.4;text-decoration:none;text-transform:none\">Let &#8217;em Roll is an album by American organist Big John Patton recorded in 1965 and released on the Blue Note label.</p>\n\n\n\n<div class=\"wp-block-buttons is-layout-flex wp-block-buttons-is-layout-flex\">\n<div class=\"wp-block-button has-custom-font-size\" style=\"font-size:17px;font-style:normal;font-weight:700;letter-spacing:0px;text-decoration:none;text-transform:uppercase\"><a class=\"wp-block-button__link has-white-color has-black-background-color has-text-color has-background wp-element-button\" style=\"border-radius:0px;border-top-style:none;border-top-width:0px;border-right-style:none;border-right-width:0px;border-bottom-style:none;border-bottom-width:0px;border-left-style:none;border-left-width:0px;padding-top:14px;padding-right:36px;padding-bottom:14px;padding-left:36px\">Shop Now</a></div>\n</div>\n</div>\n\n\n\n<div class=\"wp-block-group wp-container-content-24 is-layout-flow wp-container-25 wp-block-group-is-layout-flow\">\n<p class=\"has-text-align-right has-black-color has-text-color\" style=\"font-size:148px;font-style:normal;font-weight:700;letter-spacing:-4px;line-height:0.8;text-transform:uppercase\">Let<br>&#8216;EM<br>Roll</p>\n\n\n\n<p class=\"has-text-align-right has-white-color has-text-color\" style=\"font-size:148px;font-style:normal;font-weight:700;letter-spacing:-4px;line-height:0.8;text-transform:uppercase\">Big<br>John<br>Patton</p>\n</div>\n</div>\n</div></div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:60:\"vertically, bold, jazz, shop, store, headline, hero, product\";s:16:\"wpop_description\";s:0:\"\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.2\";s:25:\"wpop_contains_block_types\";s:61:\"core/button,core/buttons,core/cover,core/group,core/paragraph\";}s:14:\"category_slugs\";a:1:{i:0;s:6:\"banner\";}s:13:\"keyword_slugs\";a:1:{i:0;s:4:\"core\";}s:15:\"pattern_content\";s:3726:\"<!-- wp:cover {\"customOverlayColor\":\"#e68b14\",\"isDark\":false,\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"5vw\",\"right\":\"5vw\",\"bottom\":\"5vw\",\"left\":\"5vw\"},\"margin\":{\"top\":\"0\"}}}} -->\n<div class=\"wp-block-cover alignfull is-light\" style=\"margin-top:0;padding-top:5vw;padding-right:5vw;padding-bottom:5vw;padding-left:5vw\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-100 has-background-dim\" style=\"background-color:#e68b14\"></span><div class=\"wp-block-cover__inner-container\"><!-- wp:group {\"layout\":{\"type\":\"flex\",\"flexWrap\":\"wrap\",\"verticalAlignment\":\"top\"}} -->\n<div class=\"wp-block-group\"><!-- wp:group {\"style\":{\"layout\":{\"selfStretch\":\"fixed\",\"flexSize\":\"320px\"},\"spacing\":{\"blockGap\":\"24px\"}},\"layout\":{\"type\":\"default\"}} -->\n<div class=\"wp-block-group\"><!-- wp:paragraph {\"style\":{\"layout\":{\"selfStretch\":\"fixed\",\"flexSize\":\"330px\"},\"typography\":{\"fontSize\":\"17px\",\"fontStyle\":\"normal\",\"fontWeight\":\"300\",\"lineHeight\":\"1.4\",\"textTransform\":\"none\",\"textDecoration\":\"none\",\"letterSpacing\":\"0px\"}}} -->\n<p style=\"font-size:17px;font-style:normal;font-weight:300;letter-spacing:0px;line-height:1.4;text-decoration:none;text-transform:none\">Let \'em Roll is an album by American organist Big John Patton recorded in 1965 and released on the Blue Note label.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:buttons -->\n<div class=\"wp-block-buttons\"><!-- wp:button {\"backgroundColor\":\"black\",\"textColor\":\"white\",\"style\":{\"typography\":{\"fontSize\":\"17px\",\"fontStyle\":\"normal\",\"fontWeight\":\"700\",\"textDecoration\":\"none\",\"textTransform\":\"uppercase\",\"letterSpacing\":\"0px\"},\"spacing\":{\"padding\":{\"top\":\"14px\",\"bottom\":\"14px\",\"left\":\"36px\",\"right\":\"36px\"}},\"border\":{\"radius\":\"0px\",\"top\":{\"radius\":\"0px\",\"width\":\"0px\",\"style\":\"none\"},\"right\":{\"radius\":\"0px\",\"width\":\"0px\",\"style\":\"none\"},\"bottom\":{\"radius\":\"0px\",\"width\":\"0px\",\"style\":\"none\"},\"left\":{\"radius\":\"0px\",\"width\":\"0px\",\"style\":\"none\"}}}} -->\n<div class=\"wp-block-button has-custom-font-size\" style=\"font-size:17px;font-style:normal;font-weight:700;letter-spacing:0px;text-decoration:none;text-transform:uppercase\"><a class=\"wp-block-button__link has-white-color has-black-background-color has-text-color has-background wp-element-button\" style=\"border-radius:0px;border-top-style:none;border-top-width:0px;border-right-style:none;border-right-width:0px;border-bottom-style:none;border-bottom-width:0px;border-left-style:none;border-left-width:0px;padding-top:14px;padding-right:36px;padding-bottom:14px;padding-left:36px\">Shop Now</a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"0px\"},\"layout\":{\"selfStretch\":\"fill\",\"flexSize\":null}},\"layout\":{\"type\":\"default\"}} -->\n<div class=\"wp-block-group\"><!-- wp:paragraph {\"align\":\"right\",\"style\":{\"typography\":{\"fontSize\":\"148px\",\"textTransform\":\"uppercase\",\"fontStyle\":\"normal\",\"fontWeight\":\"700\",\"lineHeight\":\"0.8\",\"letterSpacing\":\"-4px\"}},\"textColor\":\"black\"} -->\n<p class=\"has-text-align-right has-black-color has-text-color\" style=\"font-size:148px;font-style:normal;font-weight:700;letter-spacing:-4px;line-height:0.8;text-transform:uppercase\">Let<br>\'EM<br>Roll</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"right\",\"style\":{\"typography\":{\"fontSize\":\"148px\",\"textTransform\":\"uppercase\",\"fontStyle\":\"normal\",\"fontWeight\":\"700\",\"lineHeight\":\"0.8\",\"letterSpacing\":\"-4px\"}},\"textColor\":\"white\"} -->\n<p class=\"has-text-align-right has-white-color has-text-color\" style=\"font-size:148px;font-style:normal;font-weight:700;letter-spacing:-4px;line-height:0.8;text-transform:uppercase\">Big<br>John<br>Patton</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group --></div>\n<!-- /wp:group --></div></div>\n<!-- /wp:cover -->\";}i:5;O:8:\"stdClass\":7:{s:2:\"id\";i:309236;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:60:\"Fullwidth headline with links and gradient offset background\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:1893:\"\n<div class=\"wp-block-cover alignfull is-light\" style=\"margin-top:0;padding-top:48px;padding-right:5vw;padding-bottom:48px;padding-left:5vw\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-100 has-background-dim has-background-gradient\" style=\"background:linear-gradient(180deg,rgb(0,0,0) 39%,rgb(83,80,123) 39%)\"></span><div class=\"wp-block-cover__inner-container is-layout-flow wp-block-cover-is-layout-flow\">\n<div style=\"height:100px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<div class=\"wp-block-group is-content-justification-space-between is-layout-flex wp-container-33 wp-block-group-is-layout-flex\">\n<div class=\"wp-block-group wp-container-content-28 is-layout-flow wp-container-29 wp-block-group-is-layout-flow\">\n<p class=\"has-text-align-left has-white-color has-text-color has-link-color wp-elements-52dc92f2ee4b8dfde042239a7e68e30d\" style=\"font-size:172px;font-style:normal;font-weight:700;letter-spacing:-10px;line-height:0.7;text-transform:uppercase\"><strong>MONK</strong>.</p>\n</div>\n\n\n\n<div class=\"wp-block-group wp-container-content-31 is-layout-flow wp-container-32 wp-block-group-is-layout-flow\">\n<div class=\"wp-block-group is-content-justification-right is-nowrap is-layout-flex wp-container-30 wp-block-group-is-layout-flex\">\n<p class=\"has-white-color has-text-color has-link-color wp-elements-c8902903bdf5ea1baed310a565cbd10e\" style=\"font-size:17px;font-style:normal;font-weight:700;letter-spacing:0px;text-decoration:none;text-transform:uppercase\">A new collection</p>\n\n\n\n<p class=\"has-white-color has-text-color has-link-color wp-elements-669af571686ebf2235f18cd2403659b5\" style=\"font-size:17px;font-style:normal;font-weight:700;letter-spacing:0px;text-decoration:none;text-transform:uppercase\">Learn More → </p>\n</div>\n</div>\n</div>\n\n\n\n<div style=\"height:260px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n</div></div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:41:\"Offset, Gradient, Jazz, Headline, Feature\";s:16:\"wpop_description\";s:0:\"\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.2\";s:25:\"wpop_contains_block_types\";s:48:\"core/cover,core/group,core/paragraph,core/spacer\";}s:14:\"category_slugs\";a:1:{i:0;s:6:\"banner\";}s:13:\"keyword_slugs\";a:1:{i:0;s:4:\"core\";}s:15:\"pattern_content\";s:3195:\"<!-- wp:cover {\"customGradient\":\"linear-gradient(180deg,rgb(0,0,0) 39%,rgb(83,80,123) 39%)\",\"isDark\":false,\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"48px\",\"right\":\"5vw\",\"bottom\":\"48px\",\"left\":\"5vw\"},\"margin\":{\"top\":\"0\"}}}} -->\n<div class=\"wp-block-cover alignfull is-light\" style=\"margin-top:0;padding-top:48px;padding-right:5vw;padding-bottom:48px;padding-left:5vw\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-100 has-background-dim has-background-gradient\" style=\"background:linear-gradient(180deg,rgb(0,0,0) 39%,rgb(83,80,123) 39%)\"></span><div class=\"wp-block-cover__inner-container\"><!-- wp:spacer -->\n<div style=\"height:100px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"48px\"}},\"layout\":{\"type\":\"flex\",\"flexWrap\":\"wrap\",\"verticalAlignment\":\"top\",\"justifyContent\":\"space-between\"}} -->\n<div class=\"wp-block-group\"><!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"0px\"},\"layout\":{\"selfStretch\":\"fill\",\"flexSize\":null}},\"layout\":{\"type\":\"default\"}} -->\n<div class=\"wp-block-group\"><!-- wp:paragraph {\"align\":\"left\",\"style\":{\"typography\":{\"fontSize\":\"172px\",\"textTransform\":\"uppercase\",\"fontStyle\":\"normal\",\"fontWeight\":\"700\",\"lineHeight\":\"0.7\",\"letterSpacing\":\"-10px\"},\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|white\"}}}},\"textColor\":\"white\"} -->\n<p class=\"has-text-align-left has-white-color has-text-color has-link-color\" style=\"font-size:172px;font-style:normal;font-weight:700;letter-spacing:-10px;line-height:0.7;text-transform:uppercase\"><strong>MONK</strong>.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"style\":{\"layout\":{\"selfStretch\":\"fixed\",\"flexSize\":\"400px\"},\"spacing\":{\"blockGap\":\"24px\"}},\"layout\":{\"type\":\"default\"}} -->\n<div class=\"wp-block-group\"><!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"48px\"}},\"layout\":{\"type\":\"flex\",\"flexWrap\":\"nowrap\",\"justifyContent\":\"right\"}} -->\n<div class=\"wp-block-group\"><!-- wp:paragraph {\"style\":{\"typography\":{\"fontSize\":\"17px\",\"fontStyle\":\"normal\",\"fontWeight\":\"700\",\"textDecoration\":\"none\",\"textTransform\":\"uppercase\",\"letterSpacing\":\"0px\"},\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|white\"}}}},\"textColor\":\"white\"} -->\n<p class=\"has-white-color has-text-color has-link-color\" style=\"font-size:17px;font-style:normal;font-weight:700;letter-spacing:0px;text-decoration:none;text-transform:uppercase\">A new collection</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"style\":{\"typography\":{\"fontSize\":\"17px\",\"fontStyle\":\"normal\",\"fontWeight\":\"700\",\"textDecoration\":\"none\",\"textTransform\":\"uppercase\",\"letterSpacing\":\"0px\"},\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|white\"}}}},\"textColor\":\"white\"} -->\n<p class=\"has-white-color has-text-color has-link-color\" style=\"font-size:17px;font-style:normal;font-weight:700;letter-spacing:0px;text-decoration:none;text-transform:uppercase\">Learn More → </p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group --></div>\n<!-- /wp:group --></div>\n<!-- /wp:group -->\n\n<!-- wp:spacer {\"height\":\"260px\"} -->\n<div style=\"height:260px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div></div>\n<!-- /wp:cover -->\";}i:6;O:8:\"stdClass\":7:{s:2:\"id\";i:308937;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:42:\"Heading, Paragraph, Button with Two Images\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:2550:\"\n<div class=\"wp-block-cover alignfull is-light\" style=\"margin-top:0;padding-top:6vw;padding-right:6vw;padding-bottom:6vw;padding-left:6vw\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-100 has-background-dim\" style=\"background-color:#eb4c77\"></span><div class=\"wp-block-cover__inner-container is-layout-flow wp-block-cover-is-layout-flow\">\n<div class=\"wp-block-group is-content-justification-center is-layout-flex wp-container-45 wp-block-group-is-layout-flex\">\n<div class=\"wp-block-group alignwide wp-container-content-36 is-content-justification-left is-layout-constrained wp-container-37 wp-block-group-is-layout-constrained\">\n<h2 class=\"wp-block-heading alignwide has-text-align-left has-contrast-color has-text-color\" style=\"font-size:100px;font-style:normal;font-weight:500;line-height:0.9;text-transform:none\">Time for an adventure</h2>\n\n\n\n<div style=\"height:24px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<p class=\"has-text-align-left has-contrast-color has-text-color\">Explore our network of trails that lead through a variety of woodland habitats and observe the diverse flora that call this area home. </p>\n\n\n\n<div style=\"height:60px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<div class=\"wp-block-buttons is-content-justification-left is-nowrap is-layout-flex wp-container-35 wp-block-buttons-is-layout-flex\">\n<div class=\"wp-block-button has-custom-font-size is-style-fill\" style=\"font-size:16px;font-style:normal;font-weight:500;letter-spacing:0px;text-transform:uppercase\"><a class=\"wp-block-button__link has-base-color has-contrast-background-color has-text-color has-background wp-element-button\" style=\"border-radius:0px;padding-top:24px;padding-right:48px;padding-bottom:24px;padding-left:48px\">Sign up</a></div>\n</div>\n</div>\n\n\n\n<div class=\"wp-block-group is-content-justification-right is-nowrap is-layout-flex wp-container-44 wp-block-group-is-layout-flex\">\n<div class=\"wp-block-group wp-container-content-40 is-layout-flow wp-block-group-is-layout-flow\">\n<div style=\"height:8vw\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<figure class=\"wp-block-image size-large wp-container-content-38 wp-duotone-rgb000-rgb21788120-39\"><img decoding=\"async\" src=\"https://pd.w.org/2022/01/84661f60659149cc8.02053291.jpg\" alt=\"\" /></figure>\n</div>\n\n\n\n<figure class=\"wp-block-image size-large wp-container-content-42 wp-duotone-rgb000-rgb21788120-43\"><img decoding=\"async\" src=\"https://pd.w.org/2022/01/21261f60ba46147b0.97888240.jpg\" alt=\"\" /></figure>\n</div>\n</div>\n</div></div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:0:\"\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.2\";s:25:\"wpop_contains_block_types\";s:97:\"core/button,core/buttons,core/cover,core/group,core/heading,core/image,core/paragraph,core/spacer\";}s:14:\"category_slugs\";a:1:{i:0;s:6:\"banner\";}s:13:\"keyword_slugs\";a:1:{i:0;s:4:\"core\";}s:15:\"pattern_content\";s:4102:\"<!-- wp:cover {\"customOverlayColor\":\"#eb4c77\",\"contentPosition\":\"center center\",\"isDark\":false,\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"6vw\",\"right\":\"6vw\",\"bottom\":\"6vw\",\"left\":\"6vw\"},\"margin\":{\"top\":\"0\"}}}} -->\n<div class=\"wp-block-cover alignfull is-light\" style=\"margin-top:0;padding-top:6vw;padding-right:6vw;padding-bottom:6vw;padding-left:6vw\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-100 has-background-dim\" style=\"background-color:#eb4c77\"></span><div class=\"wp-block-cover__inner-container\"><!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"0vw\"}},\"layout\":{\"type\":\"flex\",\"flexWrap\":\"wrap\",\"justifyContent\":\"center\",\"verticalAlignment\":\"top\"}} -->\n<div class=\"wp-block-group\"><!-- wp:group {\"align\":\"wide\",\"style\":{\"spacing\":{\"blockGap\":\"0px\"},\"layout\":{\"selfStretch\":\"fill\"}},\"layout\":{\"type\":\"constrained\",\"justifyContent\":\"left\",\"contentSize\":\"600px\"}} -->\n<div class=\"wp-block-group alignwide\"><!-- wp:heading {\"textAlign\":\"left\",\"align\":\"wide\",\"style\":{\"typography\":{\"fontSize\":\"100px\",\"textTransform\":\"none\",\"fontStyle\":\"normal\",\"fontWeight\":\"500\",\"lineHeight\":\"0.9\"}},\"textColor\":\"contrast\"} -->\n<h2 class=\"wp-block-heading alignwide has-text-align-left has-contrast-color has-text-color\" style=\"font-size:100px;font-style:normal;font-weight:500;line-height:0.9;text-transform:none\">Time for an adventure</h2>\n<!-- /wp:heading -->\n\n<!-- wp:spacer {\"height\":\"24px\"} -->\n<div style=\"height:24px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:paragraph {\"align\":\"left\",\"textColor\":\"contrast\"} -->\n<p class=\"has-text-align-left has-contrast-color has-text-color\">Explore our network of trails that lead through a variety of woodland habitats and observe the diverse flora that call this area home. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:spacer {\"height\":\"60px\"} -->\n<div style=\"height:60px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:buttons {\"layout\":{\"type\":\"flex\",\"justifyContent\":\"left\",\"flexWrap\":\"nowrap\"}} -->\n<div class=\"wp-block-buttons\"><!-- wp:button {\"backgroundColor\":\"contrast\",\"textColor\":\"base\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"24px\",\"right\":\"48px\",\"bottom\":\"24px\",\"left\":\"48px\"}},\"typography\":{\"fontSize\":\"16px\",\"fontStyle\":\"normal\",\"fontWeight\":\"500\",\"textTransform\":\"uppercase\",\"letterSpacing\":\"0px\"},\"border\":{\"radius\":\"0px\"}},\"className\":\"is-style-fill\"} -->\n<div class=\"wp-block-button has-custom-font-size is-style-fill\" style=\"font-size:16px;font-style:normal;font-weight:500;letter-spacing:0px;text-transform:uppercase\"><a class=\"wp-block-button__link has-base-color has-contrast-background-color has-text-color has-background wp-element-button\" style=\"border-radius:0px;padding-top:24px;padding-right:48px;padding-bottom:24px;padding-left:48px\">Sign up</a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"style\":{\"layout\":{\"selfStretch\":\"fit\",\"flexSize\":null},\"spacing\":{\"blockGap\":\"24px\"}},\"layout\":{\"type\":\"flex\",\"flexWrap\":\"nowrap\",\"verticalAlignment\":\"top\",\"justifyContent\":\"right\"}} -->\n<div class=\"wp-block-group\"><!-- wp:group {\"style\":{\"layout\":{\"selfStretch\":\"fixed\",\"flexSize\":\"50%\"}},\"layout\":{\"type\":\"default\"}} -->\n<div class=\"wp-block-group\"><!-- wp:spacer {\"height\":\"8vw\"} -->\n<div style=\"height:8vw\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:image {\"sizeSlug\":\"large\",\"style\":{\"layout\":{\"selfStretch\":\"fixed\",\"flexSize\":\"50%\"},\"color\":{\"duotone\":[\"rgb(0, 0, 0)\",\"rgb(217, 88, 120)\"]}}} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://pd.w.org/2022/01/84661f60659149cc8.02053291.jpg\" alt=\"\" /></figure>\n<!-- /wp:image --></div>\n<!-- /wp:group -->\n\n<!-- wp:image {\"sizeSlug\":\"large\",\"style\":{\"layout\":{\"selfStretch\":\"fixed\",\"flexSize\":\"50%\"},\"color\":{\"duotone\":[\"rgb(0, 0, 0)\",\"rgb(217, 88, 120)\"]}}} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://pd.w.org/2022/01/21261f60ba46147b0.97888240.jpg\" alt=\"\" /></figure>\n<!-- /wp:image --></div>\n<!-- /wp:group --></div>\n<!-- /wp:group --></div></div>\n<!-- /wp:cover -->\";}i:7;O:8:\"stdClass\":7:{s:2:\"id\";i:308949;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:42:\"Bold sale banner with geometric background\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:1663:\"\n<div class=\"wp-block-cover alignfull wp-duotone-rgb4448102-ffb23d-50\" style=\"margin-top:0;padding-top:4vw;padding-right:4vw;padding-bottom:4vw;padding-left:4vw;min-height:50vh\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-90 has-background-dim\" style=\"background-color:#2c3066\"></span><img decoding=\"async\" class=\"wp-block-cover__image-background wp-image-334\" alt=\"\" src=\"https://pd.w.org/2022/01/2661f82cd1ba9172.16386413.jpg\" data-object-fit=\"cover\" /><div class=\"wp-block-cover__inner-container is-layout-flow wp-block-cover-is-layout-flow\">\n<div class=\"wp-block-group is-layout-flow wp-container-48 wp-block-group-is-layout-flow\">\n<p class=\"has-text-align-center has-text-color\" style=\"color:#ffb23d;font-size:160px;font-style:normal;font-weight:700;letter-spacing:-2px;line-height:0.9;text-transform:uppercase\">Enjoy</p>\n\n\n\n<p class=\"has-text-align-center has-text-color\" style=\"color:#ffb23d;font-size:160px;font-style:normal;font-weight:700;letter-spacing:-2px;line-height:0.9;text-transform:uppercase\">20% Off</p>\n\n\n\n<div style=\"height:48px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<div class=\"wp-block-buttons is-content-justification-center is-layout-flex wp-container-47 wp-block-buttons-is-layout-flex\">\n<div class=\"wp-block-button has-custom-font-size\" style=\"font-size:20px;font-style:normal;font-weight:700;letter-spacing:1px;text-transform:uppercase\"><a class=\"wp-block-button__link has-text-color has-background wp-element-button\" style=\"color:#2c3066;background-color:#ffb23d;padding-top:32px;padding-right:48px;padding-bottom:32px;padding-left:48px\">Shop Now</a></div>\n</div>\n</div>\n</div></div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:43:\"store, shop, coupon, jazz, background image\";s:16:\"wpop_description\";s:0:\"\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.2\";s:25:\"wpop_contains_block_types\";s:73:\"core/button,core/buttons,core/cover,core/group,core/paragraph,core/spacer\";}s:14:\"category_slugs\";a:1:{i:0;s:6:\"banner\";}s:13:\"keyword_slugs\";a:1:{i:0;s:4:\"core\";}s:15:\"pattern_content\";s:2819:\"<!-- wp:cover {\"url\":\"https://pd.w.org/2022/01/2661f82cd1ba9172.16386413.jpg\",\"id\":334,\"dimRatio\":90,\"customOverlayColor\":\"#2c3066\",\"minHeight\":50,\"minHeightUnit\":\"vh\",\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"4vw\",\"right\":\"4vw\",\"bottom\":\"4vw\",\"left\":\"4vw\"},\"margin\":{\"top\":\"0\"}},\"color\":{\"duotone\":[\"rgb(44, 48, 102)\",\"#ffb23d\"]}}} -->\n<div class=\"wp-block-cover alignfull\" style=\"margin-top:0;padding-top:4vw;padding-right:4vw;padding-bottom:4vw;padding-left:4vw;min-height:50vh\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-90 has-background-dim\" style=\"background-color:#2c3066\"></span><img class=\"wp-block-cover__image-background wp-image-334\" alt=\"\" src=\"https://pd.w.org/2022/01/2661f82cd1ba9172.16386413.jpg\" data-object-fit=\"cover\" /><div class=\"wp-block-cover__inner-container\"><!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"0px\"}},\"layout\":{\"type\":\"default\"}} -->\n<div class=\"wp-block-group\"><!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"160px\",\"textTransform\":\"uppercase\",\"fontStyle\":\"normal\",\"fontWeight\":\"700\",\"lineHeight\":\"0.9\",\"letterSpacing\":\"-2px\"},\"color\":{\"text\":\"#ffb23d\"}}} -->\n<p class=\"has-text-align-center has-text-color\" style=\"color:#ffb23d;font-size:160px;font-style:normal;font-weight:700;letter-spacing:-2px;line-height:0.9;text-transform:uppercase\">Enjoy</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"160px\",\"textTransform\":\"uppercase\",\"fontStyle\":\"normal\",\"fontWeight\":\"700\",\"lineHeight\":\"0.9\",\"letterSpacing\":\"-2px\"},\"color\":{\"text\":\"#ffb23d\"}}} -->\n<p class=\"has-text-align-center has-text-color\" style=\"color:#ffb23d;font-size:160px;font-style:normal;font-weight:700;letter-spacing:-2px;line-height:0.9;text-transform:uppercase\">20% Off</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:spacer {\"height\":\"48px\"} -->\n<div style=\"height:48px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:buttons {\"layout\":{\"type\":\"flex\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-buttons\"><!-- wp:button {\"style\":{\"color\":{\"background\":\"#ffb23d\",\"text\":\"#2c3066\"},\"spacing\":{\"padding\":{\"top\":\"32px\",\"right\":\"48px\",\"bottom\":\"32px\",\"left\":\"48px\"}},\"typography\":{\"fontSize\":\"20px\",\"textTransform\":\"uppercase\",\"letterSpacing\":\"1px\",\"fontStyle\":\"normal\",\"fontWeight\":\"700\"}}} -->\n<div class=\"wp-block-button has-custom-font-size\" style=\"font-size:20px;font-style:normal;font-weight:700;letter-spacing:1px;text-transform:uppercase\"><a class=\"wp-block-button__link has-text-color has-background wp-element-button\" style=\"color:#2c3066;background-color:#ffb23d;padding-top:32px;padding-right:48px;padding-bottom:32px;padding-left:48px\">Shop Now</a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons --></div>\n<!-- /wp:group --></div></div>\n<!-- /wp:cover -->\";}i:8;O:8:\"stdClass\":7:{s:2:\"id\";i:308924;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:47:\"Offset bold paragraph text with varying opacity\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:1592:\"\n<div class=\"wp-block-cover alignfull has-white-color has-text-color\" style=\"margin-top:0;padding-top:4vw;padding-right:4vw;padding-bottom:4vw;padding-left:4vw;min-height:66vh\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-black-background-color has-background-dim-100 has-background-dim\"></span><div class=\"wp-block-cover__inner-container is-layout-flow wp-block-cover-is-layout-flow\">\n<div class=\"wp-block-group is-content-justification-left is-layout-constrained wp-container-51 wp-block-group-is-layout-constrained\">\n<p class=\"has-text-align-left has-text-color\" style=\"color:#ffffff61;font-size:120px;font-style:normal;font-weight:700;letter-spacing:-2px;line-height:1;text-transform:uppercase\">Embark</p>\n\n\n\n<p class=\"has-text-align-right has-text-color\" style=\"color:#ffffff73;font-size:72px;font-style:normal;font-weight:700;letter-spacing:0px;line-height:1;text-transform:uppercase\"><strong>ON A HIKING</strong></p>\n\n\n\n<p class=\"has-text-align-left has-text-color\" style=\"color:#ffffffad;font-size:72px;font-style:normal;font-weight:700;letter-spacing:0px;line-height:1;text-transform:uppercase\">adventure and explore the beauty of nature&#8217;s best…</p>\n\n\n\n<p class=\"has-text-align-right has-text-color\" style=\"color:#ffffffd1;font-size:148px;font-style:normal;font-weight:700;letter-spacing:-2px;line-height:1;text-transform:uppercase\">In the</p>\n\n\n\n<p class=\"has-text-align-left has-text-color\" style=\"color:#fffffff5;font-size:162px;font-style:normal;font-weight:700;letter-spacing:-2px;line-height:1;text-transform:uppercase\">WOODS.</p>\n</div>\n</div></div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:0:\"\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.2\";s:25:\"wpop_contains_block_types\";s:36:\"core/cover,core/group,core/paragraph\";}s:14:\"category_slugs\";a:1:{i:0;s:4:\"text\";}s:13:\"keyword_slugs\";a:1:{i:0;s:4:\"core\";}s:15:\"pattern_content\";s:3052:\"<!-- wp:cover {\"overlayColor\":\"black\",\"minHeight\":66,\"minHeightUnit\":\"vh\",\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"4vw\",\"right\":\"4vw\",\"bottom\":\"4vw\",\"left\":\"4vw\"},\"margin\":{\"top\":\"0\"}}},\"textColor\":\"white\"} -->\n<div class=\"wp-block-cover alignfull has-white-color has-text-color\" style=\"margin-top:0;padding-top:4vw;padding-right:4vw;padding-bottom:4vw;padding-left:4vw;min-height:66vh\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-black-background-color has-background-dim-100 has-background-dim\"></span><div class=\"wp-block-cover__inner-container\"><!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"0px\"}},\"layout\":{\"type\":\"constrained\",\"wideSize\":\"700px\",\"contentSize\":\"700px\",\"justifyContent\":\"left\"}} -->\n<div class=\"wp-block-group\"><!-- wp:paragraph {\"align\":\"left\",\"style\":{\"typography\":{\"fontSize\":\"120px\",\"textTransform\":\"uppercase\",\"fontStyle\":\"normal\",\"fontWeight\":\"700\",\"lineHeight\":\"1\",\"letterSpacing\":\"-2px\"},\"color\":{\"text\":\"#ffffff61\"}}} -->\n<p class=\"has-text-align-left has-text-color\" style=\"color:#ffffff61;font-size:120px;font-style:normal;font-weight:700;letter-spacing:-2px;line-height:1;text-transform:uppercase\">Embark</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"right\",\"style\":{\"typography\":{\"fontSize\":\"72px\",\"textTransform\":\"uppercase\",\"fontStyle\":\"normal\",\"fontWeight\":\"700\",\"lineHeight\":\"1\",\"letterSpacing\":\"0px\"},\"color\":{\"text\":\"#ffffff73\"}}} -->\n<p class=\"has-text-align-right has-text-color\" style=\"color:#ffffff73;font-size:72px;font-style:normal;font-weight:700;letter-spacing:0px;line-height:1;text-transform:uppercase\"><strong>ON A HIKING</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"left\",\"style\":{\"typography\":{\"fontSize\":\"72px\",\"textTransform\":\"uppercase\",\"fontStyle\":\"normal\",\"fontWeight\":\"700\",\"lineHeight\":\"1\",\"letterSpacing\":\"0px\"},\"color\":{\"text\":\"#ffffffad\"}}} -->\n<p class=\"has-text-align-left has-text-color\" style=\"color:#ffffffad;font-size:72px;font-style:normal;font-weight:700;letter-spacing:0px;line-height:1;text-transform:uppercase\">adventure and explore the beauty of nature\'s best…</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"right\",\"style\":{\"typography\":{\"fontSize\":\"148px\",\"textTransform\":\"uppercase\",\"fontStyle\":\"normal\",\"fontWeight\":\"700\",\"lineHeight\":\"1\",\"letterSpacing\":\"-2px\"},\"color\":{\"text\":\"#ffffffd1\"}}} -->\n<p class=\"has-text-align-right has-text-color\" style=\"color:#ffffffd1;font-size:148px;font-style:normal;font-weight:700;letter-spacing:-2px;line-height:1;text-transform:uppercase\">In the</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"left\",\"style\":{\"typography\":{\"fontSize\":\"162px\",\"textTransform\":\"uppercase\",\"fontStyle\":\"normal\",\"fontWeight\":\"700\",\"lineHeight\":\"1\",\"letterSpacing\":\"-2px\"},\"color\":{\"text\":\"#fffffff5\"}}} -->\n<p class=\"has-text-align-left has-text-color\" style=\"color:#fffffff5;font-size:162px;font-style:normal;font-weight:700;letter-spacing:-2px;line-height:1;text-transform:uppercase\">WOODS.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group --></div></div>\n<!-- /wp:cover -->\";}i:9;O:8:\"stdClass\":7:{s:2:\"id\";i:308916;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:40:\"Offset text with a brutalist design vibe\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:1389:\"\n<div class=\"wp-block-cover alignfull is-light has-black-color has-text-color\" style=\"margin-top:0;padding-top:48px;padding-right:48px;padding-bottom:48px;padding-left:48px;min-height:66vh\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-100 has-background-dim\" style=\"background-color:#ffb43c\"></span><div class=\"wp-block-cover__inner-container is-layout-flow wp-block-cover-is-layout-flow\">\n<div class=\"wp-block-group is-layout-constrained wp-container-53 wp-block-group-is-layout-constrained\">\n<p class=\"has-text-align-left has-black-color has-text-color\" style=\"font-size:148px;font-style:normal;font-weight:700;letter-spacing:-2px;line-height:0.9;text-transform:uppercase\"><mark style=\"color:#a65a00\" class=\"has-inline-color\">✴︎</mark> Walk</p>\n\n\n\n<p class=\"has-text-align-right has-black-color has-text-color\" style=\"font-size:148px;font-style:normal;font-weight:700;letter-spacing:-2px;line-height:0.9;text-transform:uppercase\">In the</p>\n\n\n\n<p class=\"has-text-align-left has-black-color has-text-color\" style=\"font-size:148px;font-style:normal;font-weight:700;letter-spacing:-2px;line-height:0.9;text-transform:uppercase\">Park</p>\n\n\n\n<p class=\"has-text-align-center has-text-color\" style=\"color:#a65a00;font-size:140px;font-style:italic;font-weight:200;letter-spacing:0px;line-height:0.9;text-transform:uppercase\">—01.03</p>\n</div>\n</div></div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:0:\"\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.2\";s:25:\"wpop_contains_block_types\";s:36:\"core/cover,core/group,core/paragraph\";}s:14:\"category_slugs\";a:2:{i:0;s:6:\"banner\";i:1;s:4:\"text\";}s:13:\"keyword_slugs\";a:1:{i:0;s:4:\"core\";}s:15:\"pattern_content\";s:2631:\"<!-- wp:cover {\"customOverlayColor\":\"#ffb43c\",\"minHeight\":66,\"minHeightUnit\":\"vh\",\"isDark\":false,\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"48px\",\"right\":\"48px\",\"bottom\":\"48px\",\"left\":\"48px\"},\"margin\":{\"top\":\"0\"}}},\"textColor\":\"black\"} -->\n<div class=\"wp-block-cover alignfull is-light has-black-color has-text-color\" style=\"margin-top:0;padding-top:48px;padding-right:48px;padding-bottom:48px;padding-left:48px;min-height:66vh\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-100 has-background-dim\" style=\"background-color:#ffb43c\"></span><div class=\"wp-block-cover__inner-container\"><!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"0px\"}},\"layout\":{\"type\":\"constrained\",\"wideSize\":\"1200px\",\"contentSize\":\"800px\"}} -->\n<div class=\"wp-block-group\"><!-- wp:paragraph {\"align\":\"left\",\"style\":{\"typography\":{\"fontSize\":\"148px\",\"textTransform\":\"uppercase\",\"fontStyle\":\"normal\",\"fontWeight\":\"700\",\"lineHeight\":\"0.9\",\"letterSpacing\":\"-2px\"}},\"textColor\":\"black\"} -->\n<p class=\"has-text-align-left has-black-color has-text-color\" style=\"font-size:148px;font-style:normal;font-weight:700;letter-spacing:-2px;line-height:0.9;text-transform:uppercase\"><mark style=\"color:#a65a00\" class=\"has-inline-color\">✴︎</mark> Walk</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"right\",\"style\":{\"typography\":{\"fontSize\":\"148px\",\"textTransform\":\"uppercase\",\"fontStyle\":\"normal\",\"fontWeight\":\"700\",\"lineHeight\":\"0.9\",\"letterSpacing\":\"-2px\"}},\"textColor\":\"black\"} -->\n<p class=\"has-text-align-right has-black-color has-text-color\" style=\"font-size:148px;font-style:normal;font-weight:700;letter-spacing:-2px;line-height:0.9;text-transform:uppercase\">In the</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"left\",\"style\":{\"typography\":{\"fontSize\":\"148px\",\"textTransform\":\"uppercase\",\"fontStyle\":\"normal\",\"fontWeight\":\"700\",\"lineHeight\":\"0.9\",\"letterSpacing\":\"-2px\"}},\"textColor\":\"black\"} -->\n<p class=\"has-text-align-left has-black-color has-text-color\" style=\"font-size:148px;font-style:normal;font-weight:700;letter-spacing:-2px;line-height:0.9;text-transform:uppercase\">Park</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"140px\",\"textTransform\":\"uppercase\",\"fontStyle\":\"italic\",\"fontWeight\":\"200\",\"letterSpacing\":\"0px\",\"lineHeight\":\"0.9\"},\"color\":{\"text\":\"#a65a00\"}}} -->\n<p class=\"has-text-align-center has-text-color\" style=\"color:#a65a00;font-size:140px;font-style:italic;font-weight:200;letter-spacing:0px;line-height:0.9;text-transform:uppercase\">—01.03</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group --></div></div>\n<!-- /wp:cover -->\";}i:10;O:8:\"stdClass\":7:{s:2:\"id\";i:308901;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:40:\"Fullscreen image with right content area\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:2040:\"\n<div class=\"wp-block-cover alignfull\" style=\"margin-top:0;padding-top:4vw;padding-right:4vw;padding-bottom:4vw;padding-left:4vw\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-100 has-background-dim\" style=\"background-color:#376a23\"></span><div class=\"wp-block-cover__inner-container is-layout-flow wp-block-cover-is-layout-flow\">\n<div class=\"wp-block-group is-content-justification-left is-layout-flex wp-container-59 wp-block-group-is-layout-flex\">\n<figure class=\"wp-block-image size-large wp-container-content-55\"><img decoding=\"async\" src=\"https://pd.w.org/2022/01/84661f60659149cc8.02053291.jpg\" alt=\"\" /></figure>\n\n\n\n<div class=\"wp-block-group alignwide wp-container-content-57 is-content-justification-left is-layout-constrained wp-container-58 wp-block-group-is-layout-constrained\">\n<h2 class=\"wp-block-heading alignwide has-text-align-left has-black-color has-text-color\" style=\"font-size:80px;font-style:italic;font-weight:700;line-height:1.0;text-transform:uppercase\">wAndering through the woods</h2>\n\n\n\n<div style=\"height:24px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<p class=\"has-text-align-left has-black-color has-text-color\" style=\"font-size:18px;font-style:italic;font-weight:600\">Explore our network of trails that lead through a variety of woodland habitats and observe the diverse flora that call this area home. </p>\n\n\n\n<div style=\"height:60px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<div class=\"wp-block-buttons is-content-justification-left is-nowrap is-layout-flex wp-container-56 wp-block-buttons-is-layout-flex\">\n<div class=\"wp-block-button has-custom-font-size is-style-fill\" style=\"font-size:18px;font-style:italic;font-weight:600;letter-spacing:0px;text-transform:uppercase\"><a class=\"wp-block-button__link has-white-color has-black-background-color has-text-color has-background wp-element-button\" style=\"border-radius:0px;padding-top:24px;padding-right:48px;padding-bottom:24px;padding-left:48px\">Sign up</a></div>\n</div>\n</div>\n</div>\n</div></div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:0:\"\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.2\";s:25:\"wpop_contains_block_types\";s:97:\"core/button,core/buttons,core/cover,core/group,core/heading,core/image,core/paragraph,core/spacer\";}s:14:\"category_slugs\";a:1:{i:0;s:6:\"banner\";}s:13:\"keyword_slugs\";a:1:{i:0;s:4:\"core\";}s:15:\"pattern_content\";s:3261:\"<!-- wp:cover {\"customOverlayColor\":\"#376a23\",\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"4vw\",\"right\":\"4vw\",\"bottom\":\"4vw\",\"left\":\"4vw\"},\"margin\":{\"top\":\"0\"}}}} -->\n<div class=\"wp-block-cover alignfull\" style=\"margin-top:0;padding-top:4vw;padding-right:4vw;padding-bottom:4vw;padding-left:4vw\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-100 has-background-dim\" style=\"background-color:#376a23\"></span><div class=\"wp-block-cover__inner-container\"><!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"4vw\"}},\"layout\":{\"type\":\"flex\",\"flexWrap\":\"wrap\",\"justifyContent\":\"left\"}} -->\n<div class=\"wp-block-group\"><!-- wp:image {\"sizeSlug\":\"large\",\"style\":{\"layout\":{\"selfStretch\":\"fixed\",\"flexSize\":\"50%\"}}} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://pd.w.org/2022/01/84661f60659149cc8.02053291.jpg\" alt=\"\" /></figure>\n<!-- /wp:image -->\n\n<!-- wp:group {\"align\":\"wide\",\"style\":{\"spacing\":{\"blockGap\":\"0px\"},\"layout\":{\"selfStretch\":\"fill\",\"flexSize\":null}},\"layout\":{\"type\":\"constrained\",\"justifyContent\":\"left\",\"contentSize\":\"600px\"}} -->\n<div class=\"wp-block-group alignwide\"><!-- wp:heading {\"textAlign\":\"left\",\"align\":\"wide\",\"style\":{\"typography\":{\"fontSize\":\"80px\",\"textTransform\":\"uppercase\",\"fontStyle\":\"italic\",\"fontWeight\":\"700\",\"lineHeight\":\"1.0\"}},\"textColor\":\"black\"} -->\n<h2 class=\"wp-block-heading alignwide has-text-align-left has-black-color has-text-color\" style=\"font-size:80px;font-style:italic;font-weight:700;line-height:1.0;text-transform:uppercase\">wAndering through the woods</h2>\n<!-- /wp:heading -->\n\n<!-- wp:spacer {\"height\":\"24px\"} -->\n<div style=\"height:24px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:paragraph {\"align\":\"left\",\"style\":{\"typography\":{\"fontSize\":\"18px\",\"fontStyle\":\"italic\",\"fontWeight\":\"600\"}},\"textColor\":\"black\"} -->\n<p class=\"has-text-align-left has-black-color has-text-color\" style=\"font-size:18px;font-style:italic;font-weight:600\">Explore our network of trails that lead through a variety of woodland habitats and observe the diverse flora that call this area home. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:spacer {\"height\":\"60px\"} -->\n<div style=\"height:60px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:buttons {\"layout\":{\"type\":\"flex\",\"justifyContent\":\"left\",\"flexWrap\":\"nowrap\"}} -->\n<div class=\"wp-block-buttons\"><!-- wp:button {\"backgroundColor\":\"black\",\"textColor\":\"white\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"24px\",\"right\":\"48px\",\"bottom\":\"24px\",\"left\":\"48px\"}},\"typography\":{\"fontSize\":\"18px\",\"fontStyle\":\"italic\",\"fontWeight\":\"600\",\"textTransform\":\"uppercase\",\"letterSpacing\":\"0px\"},\"border\":{\"radius\":\"0px\"}},\"className\":\"is-style-fill\"} -->\n<div class=\"wp-block-button has-custom-font-size is-style-fill\" style=\"font-size:18px;font-style:italic;font-weight:600;letter-spacing:0px;text-transform:uppercase\"><a class=\"wp-block-button__link has-white-color has-black-background-color has-text-color has-background wp-element-button\" style=\"border-radius:0px;padding-top:24px;padding-right:48px;padding-bottom:24px;padding-left:48px\">Sign up</a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons --></div>\n<!-- /wp:group --></div>\n<!-- /wp:group --></div></div>\n<!-- /wp:cover -->\";}i:11;O:8:\"stdClass\":7:{s:2:\"id\";i:308871;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:46:\"Cover Image with Bold Heading and Button, Left\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:1525:\"\n<div class=\"wp-block-cover alignfull is-light wp-duotone-094850-f9644e-64\" style=\"margin-top:0;padding-top:48px;padding-right:48px;padding-bottom:48px;padding-left:48px;min-height:66vh\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-30 has-background-dim\"></span><img decoding=\"async\" class=\"wp-block-cover__image-background wp-image-335\" alt=\"\" src=\"https://pd.w.org/2021/12/12261b91fba359867.64939140.jpg\" data-object-fit=\"cover\" /><div class=\"wp-block-cover__inner-container is-layout-flow wp-block-cover-is-layout-flow\">\n<div class=\"wp-block-group is-content-justification-left is-layout-constrained wp-container-61 wp-block-group-is-layout-constrained\">\n<h2 class=\"wp-block-heading has-text-align-left has-white-color has-text-color\" style=\"font-size:100px;font-style:normal;font-weight:700;letter-spacing:0px;line-height:1;text-transform:uppercase\">Take a hike and wAnder through the woods</h2>\n</div>\n\n\n\n<div style=\"height:72px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<div class=\"wp-block-buttons is-content-justification-left is-nowrap is-layout-flex wp-container-62 wp-block-buttons-is-layout-flex\">\n<div class=\"wp-block-button has-custom-font-size is-style-outline\" style=\"font-size:16px;font-style:normal;font-weight:600;letter-spacing:0px;text-transform:uppercase\"><a class=\"wp-block-button__link has-white-color has-text-color wp-element-button\" style=\"padding-top:24px;padding-right:48px;padding-bottom:24px;padding-left:48px\">Explore</a></div>\n</div>\n</div></div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:0:\"\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.2\";s:25:\"wpop_contains_block_types\";s:71:\"core/button,core/buttons,core/cover,core/group,core/heading,core/spacer\";}s:14:\"category_slugs\";a:1:{i:0;s:6:\"banner\";}s:13:\"keyword_slugs\";a:1:{i:0;s:4:\"core\";}s:15:\"pattern_content\";s:2443:\"<!-- wp:cover {\"url\":\"https://pd.w.org/2021/12/12261b91fba359867.64939140.jpg\",\"id\":335,\"dimRatio\":30,\"minHeight\":66,\"minHeightUnit\":\"vh\",\"isDark\":false,\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"48px\",\"right\":\"48px\",\"bottom\":\"48px\",\"left\":\"48px\"},\"margin\":{\"top\":\"0\"}},\"color\":{\"duotone\":[\"#094850\",\"#f9644e\"]}}} -->\n<div class=\"wp-block-cover alignfull is-light\" style=\"margin-top:0;padding-top:48px;padding-right:48px;padding-bottom:48px;padding-left:48px;min-height:66vh\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-30 has-background-dim\"></span><img class=\"wp-block-cover__image-background wp-image-335\" alt=\"\" src=\"https://pd.w.org/2021/12/12261b91fba359867.64939140.jpg\" data-object-fit=\"cover\" /><div class=\"wp-block-cover__inner-container\"><!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"48px\"}},\"layout\":{\"type\":\"constrained\",\"contentSize\":\"75%\",\"justifyContent\":\"left\",\"wideSize\":\"75%\"}} -->\n<div class=\"wp-block-group\"><!-- wp:heading {\"textAlign\":\"left\",\"style\":{\"typography\":{\"fontSize\":\"100px\",\"textTransform\":\"uppercase\",\"fontStyle\":\"normal\",\"fontWeight\":\"700\",\"letterSpacing\":\"0px\",\"lineHeight\":\"1\"}},\"textColor\":\"white\"} -->\n<h2 class=\"wp-block-heading has-text-align-left has-white-color has-text-color\" style=\"font-size:100px;font-style:normal;font-weight:700;letter-spacing:0px;line-height:1;text-transform:uppercase\">Take a hike and wAnder through the woods</h2>\n<!-- /wp:heading --></div>\n<!-- /wp:group -->\n\n<!-- wp:spacer {\"height\":\"72px\"} -->\n<div style=\"height:72px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:buttons {\"layout\":{\"type\":\"flex\",\"justifyContent\":\"left\",\"flexWrap\":\"nowrap\"}} -->\n<div class=\"wp-block-buttons\"><!-- wp:button {\"textColor\":\"white\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"24px\",\"right\":\"48px\",\"bottom\":\"24px\",\"left\":\"48px\"}},\"typography\":{\"fontSize\":\"16px\",\"fontStyle\":\"normal\",\"fontWeight\":\"600\",\"textTransform\":\"uppercase\",\"letterSpacing\":\"0px\"}},\"className\":\"is-style-outline\"} -->\n<div class=\"wp-block-button has-custom-font-size is-style-outline\" style=\"font-size:16px;font-style:normal;font-weight:600;letter-spacing:0px;text-transform:uppercase\"><a class=\"wp-block-button__link has-white-color has-text-color wp-element-button\" style=\"padding-top:24px;padding-right:48px;padding-bottom:24px;padding-left:48px\">Explore</a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons --></div></div>\n<!-- /wp:cover -->\";}i:12;O:8:\"stdClass\":7:{s:2:\"id\";i:308868;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:40:\"Cover Image with Bold Heading and Button\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:1533:\"\n<div class=\"wp-block-cover alignfull is-light wp-duotone-rgb4247103-rgb21419442-68\" style=\"margin-top:0;padding-top:48px;padding-right:48px;padding-bottom:48px;padding-left:48px;min-height:66vh\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-30 has-background-dim\"></span><img decoding=\"async\" class=\"wp-block-cover__image-background wp-image-335\" alt=\"\" src=\"https://pd.w.org/2022/01/26061d763eca13bb6.11341561.jpg\" data-object-fit=\"cover\" /><div class=\"wp-block-cover__inner-container is-layout-flow wp-block-cover-is-layout-flow\">\n<div class=\"wp-block-group is-layout-constrained wp-container-65 wp-block-group-is-layout-constrained\">\n<h2 class=\"wp-block-heading has-text-align-center has-white-color has-text-color\" style=\"font-size:100px;font-style:normal;font-weight:700;letter-spacing:0px;line-height:1;text-transform:uppercase\">Embark on a hiking adventure and explore the beauty of the woods.</h2>\n</div>\n\n\n\n<div style=\"height:72px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<div class=\"wp-block-buttons is-content-justification-center is-nowrap is-layout-flex wp-container-66 wp-block-buttons-is-layout-flex\">\n<div class=\"wp-block-button has-custom-font-size is-style-outline\" style=\"font-size:16px;font-style:normal;font-weight:600;letter-spacing:0px;text-transform:uppercase\"><a class=\"wp-block-button__link has-white-color has-text-color wp-element-button\" style=\"padding-top:24px;padding-right:48px;padding-bottom:24px;padding-left:48px\">Explore</a></div>\n</div>\n</div></div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:0:\"\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.2\";s:25:\"wpop_contains_block_types\";s:71:\"core/button,core/buttons,core/cover,core/group,core/heading,core/spacer\";}s:14:\"category_slugs\";a:1:{i:0;s:6:\"banner\";}s:13:\"keyword_slugs\";a:1:{i:0;s:4:\"core\";}s:15:\"pattern_content\";s:2449:\"<!-- wp:cover {\"url\":\"https://pd.w.org/2022/01/26061d763eca13bb6.11341561.jpg\",\"id\":335,\"dimRatio\":30,\"minHeight\":66,\"minHeightUnit\":\"vh\",\"isDark\":false,\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"48px\",\"right\":\"48px\",\"bottom\":\"48px\",\"left\":\"48px\"},\"margin\":{\"top\":\"0\"}},\"color\":{\"duotone\":[\"rgb(42, 47, 103)\",\"rgb(214, 194, 42)\"]}}} -->\n<div class=\"wp-block-cover alignfull is-light\" style=\"margin-top:0;padding-top:48px;padding-right:48px;padding-bottom:48px;padding-left:48px;min-height:66vh\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-30 has-background-dim\"></span><img class=\"wp-block-cover__image-background wp-image-335\" alt=\"\" src=\"https://pd.w.org/2022/01/26061d763eca13bb6.11341561.jpg\" data-object-fit=\"cover\" /><div class=\"wp-block-cover__inner-container\"><!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"48px\"}},\"layout\":{\"type\":\"constrained\",\"wideSize\":\"80%\"}} -->\n<div class=\"wp-block-group\"><!-- wp:heading {\"textAlign\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"100px\",\"textTransform\":\"uppercase\",\"fontStyle\":\"normal\",\"fontWeight\":\"700\",\"letterSpacing\":\"0px\",\"lineHeight\":\"1\"}},\"textColor\":\"white\"} -->\n<h2 class=\"wp-block-heading has-text-align-center has-white-color has-text-color\" style=\"font-size:100px;font-style:normal;font-weight:700;letter-spacing:0px;line-height:1;text-transform:uppercase\">Embark on a hiking adventure and explore the beauty of the woods.</h2>\n<!-- /wp:heading --></div>\n<!-- /wp:group -->\n\n<!-- wp:spacer {\"height\":\"72px\"} -->\n<div style=\"height:72px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:buttons {\"layout\":{\"type\":\"flex\",\"justifyContent\":\"center\",\"flexWrap\":\"nowrap\"}} -->\n<div class=\"wp-block-buttons\"><!-- wp:button {\"textColor\":\"white\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"24px\",\"right\":\"48px\",\"bottom\":\"24px\",\"left\":\"48px\"}},\"typography\":{\"fontSize\":\"16px\",\"fontStyle\":\"normal\",\"fontWeight\":\"600\",\"textTransform\":\"uppercase\",\"letterSpacing\":\"0px\"}},\"className\":\"is-style-outline\"} -->\n<div class=\"wp-block-button has-custom-font-size is-style-outline\" style=\"font-size:16px;font-style:normal;font-weight:600;letter-spacing:0px;text-transform:uppercase\"><a class=\"wp-block-button__link has-white-color has-text-color wp-element-button\" style=\"padding-top:24px;padding-right:48px;padding-bottom:24px;padding-left:48px\">Explore</a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons --></div></div>\n<!-- /wp:cover -->\";}i:13;O:8:\"stdClass\":7:{s:2:\"id\";i:303828;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:30:\"Fullscreen cover image gallery\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:895:\"\n<div class=\"wp-block-cover alignfull\" style=\"padding-top:4vw;padding-right:4vw;padding-bottom:4vw;padding-left:4vw;min-height:66vh\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-black-background-color has-background-dim-100 has-background-dim\"></span><div class=\"wp-block-cover__inner-container is-layout-flow wp-block-cover-is-layout-flow\">\n<div class=\"wp-block-group is-content-justification-center is-nowrap is-layout-flex wp-container-69 wp-block-group-is-layout-flex\">\n<figure class=\"wp-block-image size-large\"><a href=\"https://thato.test/?page_id=28\"><img decoding=\"async\" src=\"https://pd.w.org/2022/01/84661f60659149cc8.02053291.jpg\" alt=\"\" /></a></figure>\n\n\n\n<figure class=\"wp-block-image size-large\"><a href=\"https://thato.test/?page_id=28\"><img decoding=\"async\" src=\"https://pd.w.org/2022/01/21261f60ba46147b0.97888240.jpg\" alt=\"\" /></a></figure>\n</div>\n</div></div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:43:\"gallery, images, columns, background, cover\";s:16:\"wpop_description\";s:0:\"\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.2\";s:25:\"wpop_contains_block_types\";s:32:\"core/cover,core/group,core/image\";}s:14:\"category_slugs\";a:1:{i:0;s:7:\"gallery\";}s:13:\"keyword_slugs\";a:1:{i:0;s:4:\"core\";}s:15:\"pattern_content\";s:1259:\"<!-- wp:cover {\"overlayColor\":\"black\",\"minHeight\":66,\"minHeightUnit\":\"vh\",\"contentPosition\":\"center center\",\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"4vw\",\"right\":\"4vw\",\"bottom\":\"4vw\",\"left\":\"4vw\"}}}} -->\n<div class=\"wp-block-cover alignfull\" style=\"padding-top:4vw;padding-right:4vw;padding-bottom:4vw;padding-left:4vw;min-height:66vh\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-black-background-color has-background-dim-100 has-background-dim\"></span><div class=\"wp-block-cover__inner-container\"><!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"4vw\"}},\"layout\":{\"type\":\"flex\",\"flexWrap\":\"nowrap\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-group\"><!-- wp:image {\"sizeSlug\":\"large\",\"linkDestination\":\"custom\"} -->\n<figure class=\"wp-block-image size-large\"><a href=\"https://thato.test/?page_id=28\"><img src=\"https://pd.w.org/2022/01/84661f60659149cc8.02053291.jpg\" alt=\"\" /></a></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"sizeSlug\":\"large\",\"linkDestination\":\"custom\"} -->\n<figure class=\"wp-block-image size-large\"><a href=\"https://thato.test/?page_id=28\"><img src=\"https://pd.w.org/2022/01/21261f60ba46147b0.97888240.jpg\" alt=\"\" /></a></figure>\n<!-- /wp:image --></div>\n<!-- /wp:group --></div></div>\n<!-- /wp:cover -->\";}i:14;O:8:\"stdClass\":7:{s:2:\"id\";i:277265;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:37:\"Fullwidth posts with uppercase titles\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:6993:\"\n<div class=\"wp-block-query alignfull is-layout-flow wp-block-query-is-layout-flow\">\n<div class=\"wp-block-group alignfull is-layout-flow wp-block-group-is-layout-flow\" style=\"padding-top:0;padding-right:0;padding-bottom:0;padding-left:0\"><ul style=\"text-transform:none;\" class=\"wp-block-post-template is-layout-flow wp-block-post-template-is-layout-flow\"><li class=\"wp-block-post post-2071 post type-post status-publish format-standard hentry category-space tag-planet\">\n\n<div class=\"wp-block-group is-layout-flow wp-block-group-is-layout-flow\" style=\"border-bottom-color:var(--wp--preset--color--contrast);border-bottom-width:1px\">\n<div class=\"wp-block-group is-content-justification-space-between is-nowrap is-layout-flex wp-container-72 wp-block-group-is-layout-flex\" style=\"padding-top:16px;padding-right:16px;padding-bottom:16px;padding-left:16px\">\n<div class=\"wp-block-group is-nowrap is-layout-flex wp-container-71 wp-block-group-is-layout-flex\">\n<p>✴︎</p>\n\n\n<div style=\"margin-top:0;margin-right:0;margin-bottom:0;margin-left:0; text-transform:uppercase;\" class=\"has-text-align-left has-link-color has-text-color has-contrast-color wp-block-post-date has-small-font-size wp-elements-4003f76eccbf507a9e3d7e84a42ea154\"><time datetime=\"2021-07-06T21:31:35+00:00\">Jul 6, 2021</time></div></div>\n\n\n<div style=\"text-transform:uppercase\" class=\"taxonomy-category has-link-color has-text-color has-contrast-color wp-block-post-terms wp-elements-d846021732facad792835971f80af878\"><span class=\"wp-block-post-terms__prefix\">✴︎ </span><a href=\"https://wordpress.org/patterns/category/space/\" rel=\"tag\">Space</a></div></div>\n</div>\n\n\n\n<div class=\"wp-block-group is-vertical is-layout-flex wp-container-75 wp-block-group-is-layout-flex\" style=\"padding-top:16px;padding-right:16px;padding-bottom:var(--wp--preset--spacing--70);padding-left:16px\"><h2 style=\"margin-top:0;margin-right:0;margin-bottom:0;margin-left:0; font-size:5.2rem;font-style:normal;font-weight:500;line-height:1.1;text-transform:uppercase;\" class=\"has-link-color has-text-color has-contrast-color wp-block-post-title wp-elements-eba6f7f6e0a9160611aa886fe4e31449 is-layout-flow wp-block-post-title-is-layout-flow\"><a href=\"https://wordpress.org/patterns/jupiter/\" target=\"_self\" >Jupiter</a></h2></div>\n\n</li><li class=\"wp-block-post post-2069 post type-post status-publish format-standard hentry category-space tag-stars\">\n\n<div class=\"wp-block-group is-layout-flow wp-block-group-is-layout-flow\" style=\"border-bottom-color:var(--wp--preset--color--contrast);border-bottom-width:1px\">\n<div class=\"wp-block-group is-content-justification-space-between is-nowrap is-layout-flex wp-container-77 wp-block-group-is-layout-flex\" style=\"padding-top:16px;padding-right:16px;padding-bottom:16px;padding-left:16px\">\n<div class=\"wp-block-group is-nowrap is-layout-flex wp-container-76 wp-block-group-is-layout-flex\">\n<p>✴︎</p>\n\n\n<div style=\"margin-top:0;margin-right:0;margin-bottom:0;margin-left:0; text-transform:uppercase;\" class=\"has-text-align-left has-link-color has-text-color has-contrast-color wp-block-post-date has-small-font-size wp-elements-4003f76eccbf507a9e3d7e84a42ea154\"><time datetime=\"2021-07-06T21:30:31+00:00\">Jul 6, 2021</time></div></div>\n\n\n<div style=\"text-transform:uppercase\" class=\"taxonomy-category has-link-color has-text-color has-contrast-color wp-block-post-terms wp-elements-d846021732facad792835971f80af878\"><span class=\"wp-block-post-terms__prefix\">✴︎ </span><a href=\"https://wordpress.org/patterns/category/space/\" rel=\"tag\">Space</a></div></div>\n</div>\n\n\n\n<div class=\"wp-block-group is-vertical is-layout-flex wp-container-80 wp-block-group-is-layout-flex\" style=\"padding-top:16px;padding-right:16px;padding-bottom:var(--wp--preset--spacing--70);padding-left:16px\"><h2 style=\"margin-top:0;margin-right:0;margin-bottom:0;margin-left:0; font-size:5.2rem;font-style:normal;font-weight:500;line-height:1.1;text-transform:uppercase;\" class=\"has-link-color has-text-color has-contrast-color wp-block-post-title wp-elements-eba6f7f6e0a9160611aa886fe4e31449 is-layout-flow wp-block-post-title-is-layout-flow\"><a href=\"https://wordpress.org/patterns/star-clusters-in-hurcules/\" target=\"_self\" >Star Clusters in Hurcules</a></h2></div>\n\n</li><li class=\"wp-block-post post-2067 post type-post status-publish format-standard hentry category-space tag-planet\">\n\n<div class=\"wp-block-group is-layout-flow wp-block-group-is-layout-flow\" style=\"border-bottom-color:var(--wp--preset--color--contrast);border-bottom-width:1px\">\n<div class=\"wp-block-group is-content-justification-space-between is-nowrap is-layout-flex wp-container-82 wp-block-group-is-layout-flex\" style=\"padding-top:16px;padding-right:16px;padding-bottom:16px;padding-left:16px\">\n<div class=\"wp-block-group is-nowrap is-layout-flex wp-container-81 wp-block-group-is-layout-flex\">\n<p>✴︎</p>\n\n\n<div style=\"margin-top:0;margin-right:0;margin-bottom:0;margin-left:0; text-transform:uppercase;\" class=\"has-text-align-left has-link-color has-text-color has-contrast-color wp-block-post-date has-small-font-size wp-elements-4003f76eccbf507a9e3d7e84a42ea154\"><time datetime=\"2021-07-05T21:29:00+00:00\">Jul 5, 2021</time></div></div>\n\n\n<div style=\"text-transform:uppercase\" class=\"taxonomy-category has-link-color has-text-color has-contrast-color wp-block-post-terms wp-elements-d846021732facad792835971f80af878\"><span class=\"wp-block-post-terms__prefix\">✴︎ </span><a href=\"https://wordpress.org/patterns/category/space/\" rel=\"tag\">Space</a></div></div>\n</div>\n\n\n\n<div class=\"wp-block-group is-vertical is-layout-flex wp-container-85 wp-block-group-is-layout-flex\" style=\"padding-top:16px;padding-right:16px;padding-bottom:var(--wp--preset--spacing--70);padding-left:16px\"><h2 style=\"margin-top:0;margin-right:0;margin-bottom:0;margin-left:0; font-size:5.2rem;font-style:normal;font-weight:500;line-height:1.1;text-transform:uppercase;\" class=\"has-link-color has-text-color has-contrast-color wp-block-post-title wp-elements-eba6f7f6e0a9160611aa886fe4e31449 is-layout-flow wp-block-post-title-is-layout-flow\"><a href=\"https://wordpress.org/patterns/saturn/\" target=\"_self\" >Saturn</a></h2></div>\n\n</li></ul></div>\n\n\n\n<div class=\"wp-block-group is-layout-flow wp-block-group-is-layout-flow\" style=\"margin-top:0;margin-bottom:0;padding-top:var(--wp--preset--spacing--30);padding-right:16px;padding-bottom:var(--wp--preset--spacing--30);padding-left:16px\"><nav class=\"wp-block-query-pagination is-content-justification-left is-nowrap is-layout-flex wp-container-88 wp-block-query-pagination-is-layout-flex\" aria-label=\"Pagination\">\n\n\n<a href=\"/patterns/wp-json/wp/v2/wporg-pattern?page=1&#038;per_page=100&#038;order=desc&#038;orderby=date&#038;locale=en_US&#038;wp-version=6.3.1&#038;pattern-keywords=11&#038;_fields=id%2Ctitle%2Ccontent%2Cmeta%2Ccategory_slugs%2Ckeyword_slugs%2Cpattern_content&#038;query-31-page=2\" style=\"text-transform:uppercase;\" class=\"wp-block-query-pagination-next has-small-font-size\">Next</a>\n</nav></div>\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:30:\"star, posts, loop, blog, index\";s:16:\"wpop_description\";s:62:\"A fullwidth posts pattern with large titles and start accents.\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:1:{i:0;s:10:\"core/query\";}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.2\";s:25:\"wpop_contains_block_types\";s:182:\"core/group,core/paragraph,core/post-date,core/post-template,core/post-terms,core/post-title,core/query,core/query-pagination,core/query-pagination-next,core/query-pagination-previous\";}s:14:\"category_slugs\";a:1:{i:0;s:5:\"query\";}s:13:\"keyword_slugs\";a:1:{i:0;s:4:\"core\";}s:15:\"pattern_content\";s:3502:\"<!-- wp:query {\"queryId\":31,\"query\":{\"perPage\":3,\"pages\":0,\"offset\":0,\"postType\":\"post\",\"order\":\"desc\",\"orderBy\":\"date\",\"author\":\"\",\"search\":\"\",\"exclude\":[],\"sticky\":\"\",\"inherit\":false},\"align\":\"full\",\"layout\":{\"type\":\"default\"}} -->\n<div class=\"wp-block-query alignfull\"><!-- wp:group {\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\"}}},\"layout\":{\"type\":\"default\"}} -->\n<div class=\"wp-block-group alignfull\" style=\"padding-top:0;padding-right:0;padding-bottom:0;padding-left:0\"><!-- wp:post-template {\"style\":{\"typography\":{\"textTransform\":\"none\"}}} -->\n<!-- wp:group {\"style\":{\"border\":{\"bottom\":{\"color\":\"var:preset|color|contrast\",\"width\":\"1px\"}}},\"layout\":{\"type\":\"default\"}} -->\n<div class=\"wp-block-group\" style=\"border-bottom-color:var(--wp--preset--color--contrast);border-bottom-width:1px\"><!-- wp:group {\"style\":{\"spacing\":{\"padding\":{\"top\":\"16px\",\"right\":\"16px\",\"bottom\":\"16px\",\"left\":\"16px\"}}},\"layout\":{\"type\":\"flex\",\"flexWrap\":\"nowrap\",\"justifyContent\":\"space-between\"}} -->\n<div class=\"wp-block-group\" style=\"padding-top:16px;padding-right:16px;padding-bottom:16px;padding-left:16px\"><!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"4px\"}},\"layout\":{\"type\":\"flex\",\"flexWrap\":\"nowrap\"}} -->\n<div class=\"wp-block-group\"><!-- wp:paragraph -->\n<p>✴︎</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:post-date {\"textAlign\":\"left\",\"format\":\"M j, Y\",\"style\":{\"spacing\":{\"margin\":{\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\"}},\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|contrast\"}}},\"typography\":{\"textTransform\":\"uppercase\"}},\"textColor\":\"contrast\",\"fontSize\":\"small\"} /--></div>\n<!-- /wp:group -->\n\n<!-- wp:post-terms {\"term\":\"category\",\"prefix\":\"✴︎ \",\"style\":{\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|contrast\"}}},\"typography\":{\"textTransform\":\"uppercase\"}},\"textColor\":\"contrast\"} /--></div>\n<!-- /wp:group --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"style\":{\"spacing\":{\"padding\":{\"top\":\"16px\",\"bottom\":\"var:preset|spacing|70\",\"right\":\"16px\",\"left\":\"16px\"}}},\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\"}} -->\n<div class=\"wp-block-group\" style=\"padding-top:16px;padding-right:16px;padding-bottom:var(--wp--preset--spacing--70);padding-left:16px\"><!-- wp:post-title {\"isLink\":true,\"style\":{\"spacing\":{\"margin\":{\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\"}},\"layout\":{\"selfStretch\":\"fit\"},\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"500\",\"lineHeight\":\"1.1\",\"textTransform\":\"uppercase\",\"fontSize\":\"5.2rem\"},\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|contrast\"}}}},\"textColor\":\"contrast\"} /--></div>\n<!-- /wp:group -->\n<!-- /wp:post-template --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"style\":{\"spacing\":{\"padding\":{\"top\":\"var:preset|spacing|30\",\"bottom\":\"var:preset|spacing|30\",\"right\":\"16px\",\"left\":\"16px\"},\"margin\":{\"top\":\"0\",\"bottom\":\"0\"}}},\"layout\":{\"type\":\"default\"}} -->\n<div class=\"wp-block-group\" style=\"margin-top:0;margin-bottom:0;padding-top:var(--wp--preset--spacing--30);padding-right:16px;padding-bottom:var(--wp--preset--spacing--30);padding-left:16px\"><!-- wp:query-pagination {\"layout\":{\"type\":\"flex\",\"flexWrap\":\"nowrap\",\"justifyContent\":\"left\"}} -->\n<!-- wp:query-pagination-previous {\"label\":\"Previous\",\"style\":{\"typography\":{\"textTransform\":\"uppercase\"}},\"fontSize\":\"small\"} /-->\n\n<!-- wp:query-pagination-next {\"label\":\"Next\",\"style\":{\"typography\":{\"textTransform\":\"uppercase\"}},\"fontSize\":\"small\"} /-->\n<!-- /wp:query-pagination --></div>\n<!-- /wp:group --></div>\n<!-- /wp:query -->\";}i:15;O:8:\"stdClass\":7:{s:2:\"id\";i:277127;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:33:\"Fullwidth posts titles with dates\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:6511:\"\n<div class=\"wp-block-query alignfull is-layout-flow wp-block-query-is-layout-flow\">\n<div class=\"wp-block-group alignfull is-layout-flow wp-block-group-is-layout-flow\" style=\"padding-top:0;padding-right:var(--wp--preset--spacing--40);padding-bottom:var(--wp--preset--spacing--40);padding-left:var(--wp--preset--spacing--40)\"><ul style=\"text-transform:none;\" class=\"alignfull wp-block-post-template is-layout-flow wp-block-post-template-is-layout-flow\"><li class=\"wp-block-post post-2071 post type-post status-publish format-standard hentry category-space tag-planet\">\n\n<div class=\"wp-block-group is-layout-flow wp-container-93 wp-block-group-is-layout-flow\" style=\"padding-bottom:var(--wp--preset--spacing--50)\">\n<div class=\"wp-block-group is-content-justification-space-between is-nowrap is-layout-flex wp-container-91 wp-block-group-is-layout-flex\" style=\"border-bottom-color:var(--wp--preset--color--contrast);border-bottom-width:4px;padding-top:var(--wp--preset--spacing--30);padding-right:0;padding-bottom:var(--wp--preset--spacing--30);padding-left:0\"><div style=\"margin-top:0;margin-right:0;margin-bottom:0;margin-left:0; font-size:2rem;font-style:normal;font-weight:600;letter-spacing:1px;\" class=\"has-text-align-left has-link-color has-text-color has-contrast-color wp-block-post-date wp-elements-5813a8450eb0347cfdf34f1870882db6\"><time datetime=\"2021-07-06T21:31:35+00:00\">07.6</time></div>\n\n<div style=\"margin-top:0;margin-right:0;margin-bottom:0;margin-left:0; font-size:2rem;font-style:normal;font-weight:600;letter-spacing:1px;\" class=\"has-text-align-left has-link-color has-text-color has-contrast-color wp-block-post-date wp-elements-672016f5c95dcb277e0d666c7795c645\"><time datetime=\"2021-07-06T21:31:35+00:00\">2021</time></div></div>\n\n\n<h2 style=\"padding-top:var(--wp--preset--spacing--30); font-size:4.6rem;font-style:normal;font-weight:600;line-height:1.1;\" class=\"has-link-color has-text-color has-contrast-color wp-block-post-title wp-elements-b5fa43084743aafd1d185f08a32e7678 is-layout-flow wp-block-post-title-is-layout-flow\"><a href=\"https://wordpress.org/patterns/jupiter/\" target=\"_self\" >Jupiter</a></h2></div>\n\n</li><li class=\"wp-block-post post-2069 post type-post status-publish format-standard hentry category-space tag-stars\">\n\n<div class=\"wp-block-group is-layout-flow wp-container-96 wp-block-group-is-layout-flow\" style=\"padding-bottom:var(--wp--preset--spacing--50)\">\n<div class=\"wp-block-group is-content-justification-space-between is-nowrap is-layout-flex wp-container-94 wp-block-group-is-layout-flex\" style=\"border-bottom-color:var(--wp--preset--color--contrast);border-bottom-width:4px;padding-top:var(--wp--preset--spacing--30);padding-right:0;padding-bottom:var(--wp--preset--spacing--30);padding-left:0\"><div style=\"margin-top:0;margin-right:0;margin-bottom:0;margin-left:0; font-size:2rem;font-style:normal;font-weight:600;letter-spacing:1px;\" class=\"has-text-align-left has-link-color has-text-color has-contrast-color wp-block-post-date wp-elements-5813a8450eb0347cfdf34f1870882db6\"><time datetime=\"2021-07-06T21:30:31+00:00\">07.6</time></div>\n\n<div style=\"margin-top:0;margin-right:0;margin-bottom:0;margin-left:0; font-size:2rem;font-style:normal;font-weight:600;letter-spacing:1px;\" class=\"has-text-align-left has-link-color has-text-color has-contrast-color wp-block-post-date wp-elements-672016f5c95dcb277e0d666c7795c645\"><time datetime=\"2021-07-06T21:30:31+00:00\">2021</time></div></div>\n\n\n<h2 style=\"padding-top:var(--wp--preset--spacing--30); font-size:4.6rem;font-style:normal;font-weight:600;line-height:1.1;\" class=\"has-link-color has-text-color has-contrast-color wp-block-post-title wp-elements-b5fa43084743aafd1d185f08a32e7678 is-layout-flow wp-block-post-title-is-layout-flow\"><a href=\"https://wordpress.org/patterns/star-clusters-in-hurcules/\" target=\"_self\" >Star Clusters in Hurcules</a></h2></div>\n\n</li><li class=\"wp-block-post post-2067 post type-post status-publish format-standard hentry category-space tag-planet\">\n\n<div class=\"wp-block-group is-layout-flow wp-container-99 wp-block-group-is-layout-flow\" style=\"padding-bottom:var(--wp--preset--spacing--50)\">\n<div class=\"wp-block-group is-content-justification-space-between is-nowrap is-layout-flex wp-container-97 wp-block-group-is-layout-flex\" style=\"border-bottom-color:var(--wp--preset--color--contrast);border-bottom-width:4px;padding-top:var(--wp--preset--spacing--30);padding-right:0;padding-bottom:var(--wp--preset--spacing--30);padding-left:0\"><div style=\"margin-top:0;margin-right:0;margin-bottom:0;margin-left:0; font-size:2rem;font-style:normal;font-weight:600;letter-spacing:1px;\" class=\"has-text-align-left has-link-color has-text-color has-contrast-color wp-block-post-date wp-elements-5813a8450eb0347cfdf34f1870882db6\"><time datetime=\"2021-07-05T21:29:00+00:00\">07.5</time></div>\n\n<div style=\"margin-top:0;margin-right:0;margin-bottom:0;margin-left:0; font-size:2rem;font-style:normal;font-weight:600;letter-spacing:1px;\" class=\"has-text-align-left has-link-color has-text-color has-contrast-color wp-block-post-date wp-elements-672016f5c95dcb277e0d666c7795c645\"><time datetime=\"2021-07-05T21:29:00+00:00\">2021</time></div></div>\n\n\n<h2 style=\"padding-top:var(--wp--preset--spacing--30); font-size:4.6rem;font-style:normal;font-weight:600;line-height:1.1;\" class=\"has-link-color has-text-color has-contrast-color wp-block-post-title wp-elements-b5fa43084743aafd1d185f08a32e7678 is-layout-flow wp-block-post-title-is-layout-flow\"><a href=\"https://wordpress.org/patterns/saturn/\" target=\"_self\" >Saturn</a></h2></div>\n\n</li></ul></div>\n\n\n\n<div class=\"wp-block-group is-layout-flow wp-block-group-is-layout-flow\" style=\"margin-top:0;margin-bottom:0;padding-top:var(--wp--preset--spacing--40);padding-right:var(--wp--preset--spacing--40);padding-bottom:var(--wp--preset--spacing--40);padding-left:var(--wp--preset--spacing--40)\"><nav class=\"wp-block-query-pagination is-content-justification-space-between is-nowrap is-layout-flex wp-container-102 wp-block-query-pagination-is-layout-flex\" aria-label=\"Pagination\">\n\n\n<a href=\"/patterns/wp-json/wp/v2/wporg-pattern?page=1&#038;per_page=100&#038;order=desc&#038;orderby=date&#038;locale=en_US&#038;wp-version=6.3.1&#038;pattern-keywords=11&#038;_fields=id%2Ctitle%2Ccontent%2Cmeta%2Ccategory_slugs%2Ckeyword_slugs%2Cpattern_content&#038;query-1-page=2\" style=\"font-size:2rem;font-style:normal;font-weight:600;text-transform:uppercase;letter-spacing:1px;\" class=\"wp-block-query-pagination-next\">Next Page</a>\n</nav></div>\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:31:\"Posts, Query, Loop, Blog, Index\";s:16:\"wpop_description\";s:62:\"A fullwidth posts pattern with large titles and numeral dates.\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:1:{i:0;s:10:\"core/query\";}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.2\";s:25:\"wpop_contains_block_types\";s:151:\"core/group,core/post-date,core/post-template,core/post-title,core/query,core/query-pagination,core/query-pagination-next,core/query-pagination-previous\";}s:14:\"category_slugs\";a:1:{i:0;s:5:\"query\";}s:13:\"keyword_slugs\";a:1:{i:0;s:4:\"core\";}s:15:\"pattern_content\";s:3583:\"<!-- wp:query {\"queryId\":1,\"query\":{\"perPage\":3,\"pages\":0,\"offset\":0,\"postType\":\"post\",\"order\":\"desc\",\"orderBy\":\"date\",\"author\":\"\",\"search\":\"\",\"exclude\":[],\"sticky\":\"\",\"inherit\":false},\"align\":\"full\",\"layout\":{\"type\":\"default\"}} -->\n<div class=\"wp-block-query alignfull\"><!-- wp:group {\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"0\",\"right\":\"var:preset|spacing|40\",\"bottom\":\"var:preset|spacing|40\",\"left\":\"var:preset|spacing|40\"}}},\"layout\":{\"type\":\"default\"}} -->\n<div class=\"wp-block-group alignfull\" style=\"padding-top:0;padding-right:var(--wp--preset--spacing--40);padding-bottom:var(--wp--preset--spacing--40);padding-left:var(--wp--preset--spacing--40)\"><!-- wp:post-template {\"align\":\"full\",\"style\":{\"typography\":{\"textTransform\":\"none\"}}} -->\n<!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"0\",\"padding\":{\"bottom\":\"var:preset|spacing|50\"}}},\"layout\":{\"type\":\"default\"}} -->\n<div class=\"wp-block-group\" style=\"padding-bottom:var(--wp--preset--spacing--50)\"><!-- wp:group {\"style\":{\"border\":{\"bottom\":{\"color\":\"var:preset|color|contrast\",\"width\":\"4px\"}},\"spacing\":{\"padding\":{\"top\":\"var:preset|spacing|30\",\"right\":\"0\",\"bottom\":\"var:preset|spacing|30\",\"left\":\"0\"}}},\"layout\":{\"type\":\"flex\",\"flexWrap\":\"nowrap\",\"justifyContent\":\"space-between\"}} -->\n<div class=\"wp-block-group\" style=\"border-bottom-color:var(--wp--preset--color--contrast);border-bottom-width:4px;padding-top:var(--wp--preset--spacing--30);padding-right:0;padding-bottom:var(--wp--preset--spacing--30);padding-left:0\"><!-- wp:post-date {\"textAlign\":\"left\",\"format\":\"m.j\",\"style\":{\"spacing\":{\"margin\":{\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\"}},\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|contrast\"}}},\"typography\":{\"letterSpacing\":\"1px\",\"fontSize\":\"2rem\",\"fontStyle\":\"normal\",\"fontWeight\":\"600\"}},\"textColor\":\"contrast\"} /-->\n\n<!-- wp:post-date {\"textAlign\":\"left\",\"format\":\"Y\",\"style\":{\"spacing\":{\"margin\":{\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\"}},\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|contrast\"}}},\"typography\":{\"letterSpacing\":\"1px\",\"fontSize\":\"2rem\",\"fontStyle\":\"normal\",\"fontWeight\":\"600\"}},\"textColor\":\"contrast\"} /--></div>\n<!-- /wp:group -->\n\n<!-- wp:post-title {\"isLink\":true,\"style\":{\"layout\":{\"selfStretch\":\"fit\"},\"typography\":{\"lineHeight\":\"1.1\",\"fontSize\":\"4.6rem\",\"fontStyle\":\"normal\",\"fontWeight\":\"600\"},\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|contrast\"}}},\"spacing\":{\"padding\":{\"top\":\"var:preset|spacing|30\"}}},\"textColor\":\"contrast\"} /--></div>\n<!-- /wp:group -->\n<!-- /wp:post-template --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"style\":{\"spacing\":{\"padding\":{\"top\":\"var:preset|spacing|40\",\"bottom\":\"var:preset|spacing|40\",\"right\":\"var:preset|spacing|40\",\"left\":\"var:preset|spacing|40\"},\"margin\":{\"top\":\"0\",\"bottom\":\"0\"}}},\"layout\":{\"type\":\"default\"}} -->\n<div class=\"wp-block-group\" style=\"margin-top:0;margin-bottom:0;padding-top:var(--wp--preset--spacing--40);padding-right:var(--wp--preset--spacing--40);padding-bottom:var(--wp--preset--spacing--40);padding-left:var(--wp--preset--spacing--40)\"><!-- wp:query-pagination {\"layout\":{\"type\":\"flex\",\"flexWrap\":\"nowrap\",\"justifyContent\":\"space-between\"}} -->\n<!-- wp:query-pagination-previous {\"style\":{\"typography\":{\"fontSize\":\"2rem\",\"fontStyle\":\"normal\",\"fontWeight\":\"600\",\"textTransform\":\"uppercase\",\"letterSpacing\":\"1px\"}}} /-->\n\n<!-- wp:query-pagination-next {\"style\":{\"typography\":{\"fontSize\":\"2rem\",\"fontStyle\":\"normal\",\"fontWeight\":\"600\",\"textTransform\":\"uppercase\",\"letterSpacing\":\"1px\"}}} /-->\n<!-- /wp:query-pagination --></div>\n<!-- /wp:group --></div>\n<!-- /wp:query -->\";}i:16;O:8:\"stdClass\":7:{s:2:\"id\";i:229116;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:32:\"Fullwidth header with hero image\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:4827:\"\n<div class=\"wp-block-group alignfull is-layout-constrained wp-block-group-is-layout-constrained\">\n<div class=\"wp-block-group alignfull is-content-justification-space-between is-layout-flex wp-container-109 wp-block-group-is-layout-flex\" style=\"padding-top:var(--wp--preset--spacing--30);padding-right:var(--wp--preset--spacing--30);padding-bottom:var(--wp--preset--spacing--30);padding-left:var(--wp--preset--spacing--30)\">\n<div class=\"wp-block-group is-layout-flex wp-container-106 wp-block-group-is-layout-flex\"><div class=\"is-default-size wp-block-site-logo\"><span class=\"custom-logo-link\"><img decoding=\"async\" src=\"https://s.w.org/images/wmark.png\" class=\"custom-logo\" alt=\"Site logo\"></span></div>\n\n\n<div class=\"wp-block-group is-vertical is-layout-flex wp-container-105 wp-block-group-is-layout-flex\"><h1 class=\"has-link-color wp-block-site-title has-medium-font-size wp-elements-234e57400cf5587740bb7caa261d6fc4\"><a href=\"https://wordpress.org/patterns\" target=\"_self\" rel=\"home\">Block Pattern Directory</a></h1></div>\n</div>\n\n\n<nav class=\"is-responsive items-justified-right is-fallback wp-block-navigation is-content-justification-right is-layout-flex wp-container-108 wp-block-navigation-is-layout-flex\" aria-label=\"\" \n			data-wp-interactive\n			data-wp-context=\'{ \"core\": { \"navigation\": { \"overlayOpenedBy\": {}, \"type\": \"overlay\", \"roleAttribute\": \"\" } } }\'\n		><button aria-haspopup=\"true\" aria-label=\"Open menu\" class=\"wp-block-navigation__responsive-container-open \" data-micromodal-trigger=\"modal-107\" \n			data-wp-on--click=\"actions.core.navigation.openMenuOnClick\"\n			data-wp-on--keydown=\"actions.core.navigation.handleMenuKeydown\"\n		><svg width=\"24\" height=\"24\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" aria-hidden=\"true\" focusable=\"false\"><rect x=\"4\" y=\"7.5\" width=\"16\" height=\"1.5\" /><rect x=\"4\" y=\"15\" width=\"16\" height=\"1.5\" /></svg></button>\n			<div class=\"wp-block-navigation__responsive-container  \" style=\"\" id=\"modal-107\" \n			data-wp-class--has-modal-open=\"selectors.core.navigation.isMenuOpen\"\n			data-wp-class--is-menu-open=\"selectors.core.navigation.isMenuOpen\"\n			data-wp-effect=\"effects.core.navigation.initMenu\"\n			data-wp-on--keydown=\"actions.core.navigation.handleMenuKeydown\"\n			data-wp-on--focusout=\"actions.core.navigation.handleMenuFocusout\"\n			tabindex=\"-1\"\n		>\n				<div class=\"wp-block-navigation__responsive-close\" tabindex=\"-1\" data-micromodal-close>\n					<div aria-modal=\"\" role=\"\" class=\"wp-block-navigation__responsive-dialog\" aria-label=\"Menu\" \n			data-wp-bind--aria-modal=\"selectors.core.navigation.isMenuOpen\"\n			data-wp-bind--role=\"selectors.core.navigation.roleAttribute\"\n			data-wp-effect=\"effects.core.navigation.focusFirstElement\"\n		>\n							<button aria-label=\"Close menu\" data-micromodal-close class=\"wp-block-navigation__responsive-container-close\" \n			data-wp-on--click=\"actions.core.navigation.closeMenuOnClick\"\n		><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"24\" height=\"24\" aria-hidden=\"true\" focusable=\"false\"><path d=\"M13 11.8l6.1-6.3-1-1-6.1 6.2-6.1-6.2-1 1 6.1 6.3-6.5 6.7 1 1 6.5-6.6 6.5 6.6 1-1z\"></path></svg></button>\n						<div class=\"wp-block-navigation__responsive-container-content\" id=\"modal-107-content\">\n							<ul class=\"wp-block-navigation__container is-responsive items-justified-right is-fallback wp-block-navigation\"><li class=\" wp-block-navigation-item wp-block-navigation-link\"><a class=\"wp-block-navigation-item__content\"  href=\"#\"><span class=\"wp-block-navigation-item__label\">Home</span></a></li><li class=\" wp-block-navigation-item wp-block-navigation-link\"><a class=\"wp-block-navigation-item__content\"  href=\"#\"><span class=\"wp-block-navigation-item__label\">About</span></a></li><li class=\" wp-block-navigation-item wp-block-navigation-link\"><a class=\"wp-block-navigation-item__content\"  href=\"#\"><span class=\"wp-block-navigation-item__label\">Contact</span></a></li></ul>\n						</div>\n					</div>\n				</div>\n			</div></nav></div>\n\n\n\n<div class=\"wp-block-cover alignfull is-light\" style=\"margin-top:0;min-height:40vw\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-black-background-color has-background-dim-0 has-background-dim\"></span><img decoding=\"async\" class=\"wp-block-cover__image-background wp-image-61\" alt=\"\" src=\"https://img.rawpixel.com/s3fs-private/rawpixel_images/website_content/a017-eberhard-cco-the-after-rain.jpg?w=1200&amp;h=1200&amp;fit=clip&amp;crop=default&amp;dpr=1&amp;q=75&amp;vib=3&amp;con=3&amp;usm=15&amp;cs=srgb&amp;bg=F4F4F3&amp;ixlib=js-2.2.1&amp;s=e7b4ca0a0edcc84ba48c1f7ebf02dd5a\" style=\"object-position:50% 50%\" data-object-fit=\"cover\" data-object-position=\"50% 50%\" /><div class=\"wp-block-cover__inner-container is-layout-flow wp-block-cover-is-layout-flow\">\n<div style=\"height:50px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n</div></div>\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:65:\"Header on a white background followed by a full-width hero image.\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:1:{i:0;s:25:\"core/template-part/header\";}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.1\";s:25:\"wpop_contains_block_types\";s:80:\"core/cover,core/group,core/navigation,core/site-logo,core/site-title,core/spacer\";}s:14:\"category_slugs\";a:1:{i:0;s:6:\"header\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:2566:\"<!-- wp:group {\"align\":\"full\",\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group alignfull\"><!-- wp:group {\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"var:preset|spacing|30\",\"right\":\"var:preset|spacing|30\",\"bottom\":\"var:preset|spacing|30\",\"left\":\"var:preset|spacing|30\"}}},\"layout\":{\"type\":\"flex\",\"justifyContent\":\"space-between\",\"flexWrap\":\"wrap\"}} -->\n<div class=\"wp-block-group alignfull\" style=\"padding-top:var(--wp--preset--spacing--30);padding-right:var(--wp--preset--spacing--30);padding-bottom:var(--wp--preset--spacing--30);padding-left:var(--wp--preset--spacing--30)\"><!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"24px\"}},\"layout\":{\"type\":\"flex\"}} -->\n<div class=\"wp-block-group\"><!-- wp:site-logo /-->\n\n<!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"4px\"}},\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\"}} -->\n<div class=\"wp-block-group\"><!-- wp:site-title {\"style\":{\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|contrast\"}}}},\"fontSize\":\"medium\"} /--></div>\n<!-- /wp:group --></div>\n<!-- /wp:group -->\n\n<!-- wp:navigation {\"layout\":{\"type\":\"flex\",\"setCascadingProperties\":true,\"justifyContent\":\"right\"}} /--></div>\n<!-- /wp:group -->\n\n<!-- wp:cover {\"url\":\"https://img.rawpixel.com/s3fs-private/rawpixel_images/website_content/a017-eberhard-cco-the-after-rain.jpg?w=1200&h=1200&fit=clip&crop=default&dpr=1&q=75&vib=3&con=3&usm=15&cs=srgb&bg=F4F4F3&ixlib=js-2.2.1&s=e7b4ca0a0edcc84ba48c1f7ebf02dd5a\",\"id\":61,\"dimRatio\":0,\"overlayColor\":\"black\",\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"minHeight\":40,\"minHeightUnit\":\"vw\",\"contentPosition\":\"center center\",\"isDark\":false,\"align\":\"full\",\"style\":{\"spacing\":{\"margin\":{\"top\":\"0\"}}}} -->\n<div class=\"wp-block-cover alignfull is-light\" style=\"margin-top:0;min-height:40vw\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-black-background-color has-background-dim-0 has-background-dim\"></span><img class=\"wp-block-cover__image-background wp-image-61\" alt=\"\" src=\"https://img.rawpixel.com/s3fs-private/rawpixel_images/website_content/a017-eberhard-cco-the-after-rain.jpg?w=1200&amp;h=1200&amp;fit=clip&amp;crop=default&amp;dpr=1&amp;q=75&amp;vib=3&amp;con=3&amp;usm=15&amp;cs=srgb&amp;bg=F4F4F3&amp;ixlib=js-2.2.1&amp;s=e7b4ca0a0edcc84ba48c1f7ebf02dd5a\" style=\"object-position:50% 50%\" data-object-fit=\"cover\" data-object-position=\"50% 50%\" /><div class=\"wp-block-cover__inner-container\"><!-- wp:spacer {\"height\":\"50px\"} -->\n<div style=\"height:50px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div></div>\n<!-- /wp:cover --></div>\n<!-- /wp:group -->\";}i:17;O:8:\"stdClass\":7:{s:2:\"id\";i:229092;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:41:\"Header inside full-width background image\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:4895:\"\n<div class=\"wp-block-group alignfull is-layout-constrained wp-block-group-is-layout-constrained\">\n<div class=\"wp-block-cover alignfull is-light\" style=\"padding-top:var(--wp--preset--spacing--30);padding-right:var(--wp--preset--spacing--30);padding-bottom:var(--wp--preset--spacing--30);padding-left:var(--wp--preset--spacing--30);min-height:50px\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-black-background-color has-background-dim\"></span><img decoding=\"async\" class=\"wp-block-cover__image-background wp-image-61\" alt=\"\" src=\"https://img.rawpixel.com/s3fs-private/rawpixel_images/website_content/a017-eberhard-cco-the-after-rain.jpg?w=1200&amp;h=1200&amp;fit=clip&amp;crop=default&amp;dpr=1&amp;q=75&amp;vib=3&amp;con=3&amp;usm=15&amp;cs=srgb&amp;bg=F4F4F3&amp;ixlib=js-2.2.1&amp;s=e7b4ca0a0edcc84ba48c1f7ebf02dd5a\" style=\"object-position:50% 50%\" data-object-fit=\"cover\" data-object-position=\"50% 50%\" /><div class=\"wp-block-cover__inner-container is-layout-flow wp-block-cover-is-layout-flow\">\n<div class=\"wp-block-group alignwide has-base-color has-text-color has-link-color wp-elements-a5c55c350363e1349d710a58148fd7b6 is-content-justification-space-between is-layout-flex wp-container-115 wp-block-group-is-layout-flex\" style=\"margin-top:0;margin-bottom:0\">\n<div class=\"wp-block-group is-layout-flex wp-block-group-is-layout-flex\"><div class=\"is-default-size is-style-default wp-block-site-logo\"><span class=\"custom-logo-link\"><img decoding=\"async\" src=\"https://s.w.org/images/wmark.png\" class=\"custom-logo\" alt=\"Site logo\"></span></div>\n\n<h1 class=\"has-link-color has-text-color has-white-color wp-block-site-title has-medium-font-size wp-elements-e24c80986e13ab3d929b38d6b46e3019\"><a href=\"https://wordpress.org/patterns\" target=\"_self\" rel=\"home\">Block Pattern Directory</a></h1></div>\n\n\n<nav class=\"has-text-color has-white-color is-responsive items-justified-right is-fallback wp-block-navigation is-content-justification-right is-layout-flex wp-container-114 wp-block-navigation-is-layout-flex\" aria-label=\"\" \n			data-wp-interactive\n			data-wp-context=\'{ \"core\": { \"navigation\": { \"overlayOpenedBy\": {}, \"type\": \"overlay\", \"roleAttribute\": \"\" } } }\'\n		><button aria-haspopup=\"true\" aria-label=\"Open menu\" class=\"wp-block-navigation__responsive-container-open \" data-micromodal-trigger=\"modal-113\" \n			data-wp-on--click=\"actions.core.navigation.openMenuOnClick\"\n			data-wp-on--keydown=\"actions.core.navigation.handleMenuKeydown\"\n		><svg width=\"24\" height=\"24\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" aria-hidden=\"true\" focusable=\"false\"><rect x=\"4\" y=\"7.5\" width=\"16\" height=\"1.5\" /><rect x=\"4\" y=\"15\" width=\"16\" height=\"1.5\" /></svg></button>\n			<div class=\"wp-block-navigation__responsive-container  \" style=\"\" id=\"modal-113\" \n			data-wp-class--has-modal-open=\"selectors.core.navigation.isMenuOpen\"\n			data-wp-class--is-menu-open=\"selectors.core.navigation.isMenuOpen\"\n			data-wp-effect=\"effects.core.navigation.initMenu\"\n			data-wp-on--keydown=\"actions.core.navigation.handleMenuKeydown\"\n			data-wp-on--focusout=\"actions.core.navigation.handleMenuFocusout\"\n			tabindex=\"-1\"\n		>\n				<div class=\"wp-block-navigation__responsive-close\" tabindex=\"-1\" data-micromodal-close>\n					<div aria-modal=\"\" role=\"\" class=\"wp-block-navigation__responsive-dialog\" aria-label=\"Menu\" \n			data-wp-bind--aria-modal=\"selectors.core.navigation.isMenuOpen\"\n			data-wp-bind--role=\"selectors.core.navigation.roleAttribute\"\n			data-wp-effect=\"effects.core.navigation.focusFirstElement\"\n		>\n							<button aria-label=\"Close menu\" data-micromodal-close class=\"wp-block-navigation__responsive-container-close\" \n			data-wp-on--click=\"actions.core.navigation.closeMenuOnClick\"\n		><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"24\" height=\"24\" aria-hidden=\"true\" focusable=\"false\"><path d=\"M13 11.8l6.1-6.3-1-1-6.1 6.2-6.1-6.2-1 1 6.1 6.3-6.5 6.7 1 1 6.5-6.6 6.5 6.6 1-1z\"></path></svg></button>\n						<div class=\"wp-block-navigation__responsive-container-content\" id=\"modal-113-content\">\n							<ul class=\"wp-block-navigation__container has-text-color has-white-color is-responsive items-justified-right is-fallback wp-block-navigation\"><li class=\" wp-block-navigation-item wp-block-navigation-link\"><a class=\"wp-block-navigation-item__content\"  href=\"#\"><span class=\"wp-block-navigation-item__label\">Home</span></a></li><li class=\" wp-block-navigation-item wp-block-navigation-link\"><a class=\"wp-block-navigation-item__content\"  href=\"#\"><span class=\"wp-block-navigation-item__label\">About</span></a></li><li class=\" wp-block-navigation-item wp-block-navigation-link\"><a class=\"wp-block-navigation-item__content\"  href=\"#\"><span class=\"wp-block-navigation-item__label\">Contact</span></a></li></ul>\n						</div>\n					</div>\n				</div>\n			</div></nav></div>\n\n\n\n<div style=\"height:33vw\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n</div></div>\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:100:\"Simple header with logo, site title, navigation and a full-width background image with dark overlay.\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:1:{i:0;s:25:\"core/template-part/header\";}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.1\";s:25:\"wpop_contains_block_types\";s:80:\"core/cover,core/group,core/navigation,core/site-logo,core/site-title,core/spacer\";}s:14:\"category_slugs\";a:1:{i:0;s:6:\"header\";}s:13:\"keyword_slugs\";a:1:{i:0;s:4:\"core\";}s:15:\"pattern_content\";s:2554:\"<!-- wp:group {\"align\":\"full\",\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group alignfull\"><!-- wp:cover {\"url\":\"https://img.rawpixel.com/s3fs-private/rawpixel_images/website_content/a017-eberhard-cco-the-after-rain.jpg?w=1200&h=1200&fit=clip&crop=default&dpr=1&q=75&vib=3&con=3&usm=15&cs=srgb&bg=F4F4F3&ixlib=js-2.2.1&s=e7b4ca0a0edcc84ba48c1f7ebf02dd5a\",\"id\":61,\"dimRatio\":50,\"overlayColor\":\"black\",\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"minHeight\":50,\"contentPosition\":\"center center\",\"isDark\":false,\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"var:preset|spacing|30\",\"right\":\"var:preset|spacing|30\",\"bottom\":\"var:preset|spacing|30\",\"left\":\"var:preset|spacing|30\"}}}} -->\n<div class=\"wp-block-cover alignfull is-light\" style=\"padding-top:var(--wp--preset--spacing--30);padding-right:var(--wp--preset--spacing--30);padding-bottom:var(--wp--preset--spacing--30);padding-left:var(--wp--preset--spacing--30);min-height:50px\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-black-background-color has-background-dim\"></span><img class=\"wp-block-cover__image-background wp-image-61\" alt=\"\" src=\"https://img.rawpixel.com/s3fs-private/rawpixel_images/website_content/a017-eberhard-cco-the-after-rain.jpg?w=1200&amp;h=1200&amp;fit=clip&amp;crop=default&amp;dpr=1&amp;q=75&amp;vib=3&amp;con=3&amp;usm=15&amp;cs=srgb&amp;bg=F4F4F3&amp;ixlib=js-2.2.1&amp;s=e7b4ca0a0edcc84ba48c1f7ebf02dd5a\" style=\"object-position:50% 50%\" data-object-fit=\"cover\" data-object-position=\"50% 50%\" /><div class=\"wp-block-cover__inner-container\"><!-- wp:group {\"align\":\"wide\",\"style\":{\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|base\"}}},\"spacing\":{\"margin\":{\"top\":\"0\",\"bottom\":\"0\"}}},\"textColor\":\"base\",\"layout\":{\"type\":\"flex\",\"justifyContent\":\"space-between\",\"flexWrap\":\"wrap\"}} -->\n<div class=\"wp-block-group alignwide has-base-color has-text-color has-link-color\" style=\"margin-top:0;margin-bottom:0\"><!-- wp:group {\"layout\":{\"type\":\"flex\"}} -->\n<div class=\"wp-block-group\"><!-- wp:site-logo {\"className\":\"is-style-default\"} /-->\n\n<!-- wp:site-title {\"style\":{\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|background\"}}}},\"textColor\":\"white\",\"fontSize\":\"medium\"} /--></div>\n<!-- /wp:group -->\n\n<!-- wp:navigation {\"textColor\":\"white\",\"layout\":{\"type\":\"flex\",\"setCascadingProperties\":true,\"justifyContent\":\"right\"}} /--></div>\n<!-- /wp:group -->\n\n<!-- wp:spacer {\"height\":\"33vw\"} -->\n<div style=\"height:33vw\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div></div>\n<!-- /wp:cover --></div>\n<!-- /wp:group -->\";}i:18;O:8:\"stdClass\":7:{s:2:\"id\";i:229097;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:34:\"Simple header with dark background\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:3967:\"\n<div class=\"wp-block-group alignfull has-background-color has-white-color has-black-background-color has-text-color has-background has-link-color wp-elements-4956719e1d36ae31d9fb9c185b0a148a is-layout-constrained wp-block-group-is-layout-constrained\" style=\"padding-top:var(--wp--preset--spacing--30);padding-right:var(--wp--preset--spacing--30);padding-bottom:var(--wp--preset--spacing--30);padding-left:var(--wp--preset--spacing--30)\">\n<div class=\"wp-block-group alignwide is-content-justification-space-between is-layout-flex wp-container-121 wp-block-group-is-layout-flex\">\n<div class=\"wp-block-group is-layout-flex wp-block-group-is-layout-flex\"><div class=\"is-default-size wp-block-site-logo\"><span class=\"custom-logo-link\"><img decoding=\"async\" src=\"https://s.w.org/images/wmark.png\" class=\"custom-logo\" alt=\"Site logo\"></span></div>\n\n<h1 class=\"has-link-color wp-block-site-title wp-elements-f1e98d6c897e424c7d4e8232ded39f0a\"><a href=\"https://wordpress.org/patterns\" target=\"_self\" rel=\"home\">Block Pattern Directory</a></h1></div>\n\n\n<nav class=\"is-responsive items-justified-right is-fallback wp-block-navigation is-content-justification-right is-layout-flex wp-container-120 wp-block-navigation-is-layout-flex\" aria-label=\"\" \n			data-wp-interactive\n			data-wp-context=\'{ \"core\": { \"navigation\": { \"overlayOpenedBy\": {}, \"type\": \"overlay\", \"roleAttribute\": \"\" } } }\'\n		><button aria-haspopup=\"true\" aria-label=\"Open menu\" class=\"wp-block-navigation__responsive-container-open \" data-micromodal-trigger=\"modal-119\" \n			data-wp-on--click=\"actions.core.navigation.openMenuOnClick\"\n			data-wp-on--keydown=\"actions.core.navigation.handleMenuKeydown\"\n		><svg width=\"24\" height=\"24\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" aria-hidden=\"true\" focusable=\"false\"><rect x=\"4\" y=\"7.5\" width=\"16\" height=\"1.5\" /><rect x=\"4\" y=\"15\" width=\"16\" height=\"1.5\" /></svg></button>\n			<div class=\"wp-block-navigation__responsive-container  \" style=\"\" id=\"modal-119\" \n			data-wp-class--has-modal-open=\"selectors.core.navigation.isMenuOpen\"\n			data-wp-class--is-menu-open=\"selectors.core.navigation.isMenuOpen\"\n			data-wp-effect=\"effects.core.navigation.initMenu\"\n			data-wp-on--keydown=\"actions.core.navigation.handleMenuKeydown\"\n			data-wp-on--focusout=\"actions.core.navigation.handleMenuFocusout\"\n			tabindex=\"-1\"\n		>\n				<div class=\"wp-block-navigation__responsive-close\" tabindex=\"-1\" data-micromodal-close>\n					<div aria-modal=\"\" role=\"\" class=\"wp-block-navigation__responsive-dialog\" aria-label=\"Menu\" \n			data-wp-bind--aria-modal=\"selectors.core.navigation.isMenuOpen\"\n			data-wp-bind--role=\"selectors.core.navigation.roleAttribute\"\n			data-wp-effect=\"effects.core.navigation.focusFirstElement\"\n		>\n							<button aria-label=\"Close menu\" data-micromodal-close class=\"wp-block-navigation__responsive-container-close\" \n			data-wp-on--click=\"actions.core.navigation.closeMenuOnClick\"\n		><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"24\" height=\"24\" aria-hidden=\"true\" focusable=\"false\"><path d=\"M13 11.8l6.1-6.3-1-1-6.1 6.2-6.1-6.2-1 1 6.1 6.3-6.5 6.7 1 1 6.5-6.6 6.5 6.6 1-1z\"></path></svg></button>\n						<div class=\"wp-block-navigation__responsive-container-content\" id=\"modal-119-content\">\n							<ul class=\"wp-block-navigation__container is-responsive items-justified-right is-fallback wp-block-navigation\"><li class=\" wp-block-navigation-item wp-block-navigation-link\"><a class=\"wp-block-navigation-item__content\"  href=\"#\"><span class=\"wp-block-navigation-item__label\">Home</span></a></li><li class=\" wp-block-navigation-item wp-block-navigation-link\"><a class=\"wp-block-navigation-item__content\"  href=\"#\"><span class=\"wp-block-navigation-item__label\">About</span></a></li><li class=\" wp-block-navigation-item wp-block-navigation-link\"><a class=\"wp-block-navigation-item__content\"  href=\"#\"><span class=\"wp-block-navigation-item__label\">Contact</span></a></li></ul>\n						</div>\n					</div>\n				</div>\n			</div></nav></div>\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:76:\"Simple header with logo, site title, navigation links and a dark background.\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:1:{i:0;s:25:\"core/template-part/header\";}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.1\";s:25:\"wpop_contains_block_types\";s:57:\"core/group,core/navigation,core/site-logo,core/site-title\";}s:14:\"category_slugs\";a:2:{i:0;s:6:\"header\";i:1;s:9:\"wireframe\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:1232:\"<!-- wp:group {\"align\":\"full\",\"style\":{\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|white\"}}},\"spacing\":{\"padding\":{\"top\":\"var:preset|spacing|30\",\"right\":\"var:preset|spacing|30\",\"bottom\":\"var:preset|spacing|30\",\"left\":\"var:preset|spacing|30\"}}},\"backgroundColor\":\"black\",\"textColor\":\"white\",\"className\":\"has-background-color\",\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group alignfull has-background-color has-white-color has-black-background-color has-text-color has-background has-link-color\" style=\"padding-top:var(--wp--preset--spacing--30);padding-right:var(--wp--preset--spacing--30);padding-bottom:var(--wp--preset--spacing--30);padding-left:var(--wp--preset--spacing--30)\"><!-- wp:group {\"align\":\"wide\",\"layout\":{\"type\":\"flex\",\"justifyContent\":\"space-between\",\"flexWrap\":\"wrap\"}} -->\n<div class=\"wp-block-group alignwide\"><!-- wp:group {\"layout\":{\"type\":\"flex\"}} -->\n<div class=\"wp-block-group\"><!-- wp:site-logo /-->\n\n<!-- wp:site-title {\"style\":{\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|white\"}}}}} /--></div>\n<!-- /wp:group -->\n\n<!-- wp:navigation {\"layout\":{\"type\":\"flex\",\"setCascadingProperties\":true,\"justifyContent\":\"right\"}} /--></div>\n<!-- /wp:group --></div>\n<!-- /wp:group -->\";}i:19;O:8:\"stdClass\":7:{s:2:\"id\";i:229101;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:29:\"Text-only header with tagline\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:3727:\"\n<div class=\"wp-block-group alignfull is-layout-constrained wp-block-group-is-layout-constrained\" style=\"padding-top:var(--wp--preset--spacing--30);padding-right:var(--wp--preset--spacing--30);padding-bottom:var(--wp--preset--spacing--30);padding-left:var(--wp--preset--spacing--30)\">\n<div class=\"wp-block-group alignwide is-content-justification-space-between is-layout-flex wp-container-126 wp-block-group-is-layout-flex\">\n<div class=\"wp-block-group is-layout-flex wp-block-group-is-layout-flex\"><h1 class=\"has-link-color wp-block-site-title wp-elements-d6202aa7d337f2ce08aedc8ed261a84e\"><a href=\"https://wordpress.org/patterns\" target=\"_self\" rel=\"home\">Block Pattern Directory</a></h1>\n\n<p class=\"wp-block-site-tagline\">Beautifully designed patterns ready to go with a simple copy/paste</p></div>\n\n\n<nav class=\"is-responsive items-justified-right is-fallback wp-block-navigation is-content-justification-right is-layout-flex wp-container-125 wp-block-navigation-is-layout-flex\" aria-label=\"\" \n			data-wp-interactive\n			data-wp-context=\'{ \"core\": { \"navigation\": { \"overlayOpenedBy\": {}, \"type\": \"overlay\", \"roleAttribute\": \"\" } } }\'\n		><button aria-haspopup=\"true\" aria-label=\"Open menu\" class=\"wp-block-navigation__responsive-container-open \" data-micromodal-trigger=\"modal-124\" \n			data-wp-on--click=\"actions.core.navigation.openMenuOnClick\"\n			data-wp-on--keydown=\"actions.core.navigation.handleMenuKeydown\"\n		><svg width=\"24\" height=\"24\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" aria-hidden=\"true\" focusable=\"false\"><rect x=\"4\" y=\"7.5\" width=\"16\" height=\"1.5\" /><rect x=\"4\" y=\"15\" width=\"16\" height=\"1.5\" /></svg></button>\n			<div class=\"wp-block-navigation__responsive-container  \" style=\"\" id=\"modal-124\" \n			data-wp-class--has-modal-open=\"selectors.core.navigation.isMenuOpen\"\n			data-wp-class--is-menu-open=\"selectors.core.navigation.isMenuOpen\"\n			data-wp-effect=\"effects.core.navigation.initMenu\"\n			data-wp-on--keydown=\"actions.core.navigation.handleMenuKeydown\"\n			data-wp-on--focusout=\"actions.core.navigation.handleMenuFocusout\"\n			tabindex=\"-1\"\n		>\n				<div class=\"wp-block-navigation__responsive-close\" tabindex=\"-1\" data-micromodal-close>\n					<div aria-modal=\"\" role=\"\" class=\"wp-block-navigation__responsive-dialog\" aria-label=\"Menu\" \n			data-wp-bind--aria-modal=\"selectors.core.navigation.isMenuOpen\"\n			data-wp-bind--role=\"selectors.core.navigation.roleAttribute\"\n			data-wp-effect=\"effects.core.navigation.focusFirstElement\"\n		>\n							<button aria-label=\"Close menu\" data-micromodal-close class=\"wp-block-navigation__responsive-container-close\" \n			data-wp-on--click=\"actions.core.navigation.closeMenuOnClick\"\n		><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"24\" height=\"24\" aria-hidden=\"true\" focusable=\"false\"><path d=\"M13 11.8l6.1-6.3-1-1-6.1 6.2-6.1-6.2-1 1 6.1 6.3-6.5 6.7 1 1 6.5-6.6 6.5 6.6 1-1z\"></path></svg></button>\n						<div class=\"wp-block-navigation__responsive-container-content\" id=\"modal-124-content\">\n							<ul class=\"wp-block-navigation__container is-responsive items-justified-right is-fallback wp-block-navigation\"><li class=\" wp-block-navigation-item wp-block-navigation-link\"><a class=\"wp-block-navigation-item__content\"  href=\"#\"><span class=\"wp-block-navigation-item__label\">Home</span></a></li><li class=\" wp-block-navigation-item wp-block-navigation-link\"><a class=\"wp-block-navigation-item__content\"  href=\"#\"><span class=\"wp-block-navigation-item__label\">About</span></a></li><li class=\" wp-block-navigation-item wp-block-navigation-link\"><a class=\"wp-block-navigation-item__content\"  href=\"#\"><span class=\"wp-block-navigation-item__label\">Contact</span></a></li></ul>\n						</div>\n					</div>\n				</div>\n			</div></nav></div>\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:53:\"Header with site title, tagline and navigation links.\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:1:{i:0;s:25:\"core/template-part/header\";}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.1\";s:25:\"wpop_contains_block_types\";s:60:\"core/group,core/navigation,core/site-tagline,core/site-title\";}s:14:\"category_slugs\";a:2:{i:0;s:6:\"header\";i:1;s:9:\"wireframe\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:966:\"<!-- wp:group {\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"var:preset|spacing|30\",\"right\":\"var:preset|spacing|30\",\"bottom\":\"var:preset|spacing|30\",\"left\":\"var:preset|spacing|30\"}}},\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group alignfull\" style=\"padding-top:var(--wp--preset--spacing--30);padding-right:var(--wp--preset--spacing--30);padding-bottom:var(--wp--preset--spacing--30);padding-left:var(--wp--preset--spacing--30)\"><!-- wp:group {\"align\":\"wide\",\"layout\":{\"type\":\"flex\",\"justifyContent\":\"space-between\"}} -->\n<div class=\"wp-block-group alignwide\"><!-- wp:group {\"layout\":{\"type\":\"flex\"}} -->\n<div class=\"wp-block-group\"><!-- wp:site-title {\"style\":{\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|contrast\"}}}}} /-->\n\n<!-- wp:site-tagline /--></div>\n<!-- /wp:group -->\n\n<!-- wp:navigation {\"layout\":{\"type\":\"flex\",\"setCascadingProperties\":true,\"justifyContent\":\"right\"}} /--></div>\n<!-- /wp:group --></div>\n<!-- /wp:group -->\";}i:20;O:8:\"stdClass\":7:{s:2:\"id\";i:229105;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:26:\"Simple header with tagline\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:4296:\"\n<div class=\"wp-block-group alignfull has-contrast-color has-text-color has-link-color wp-elements-7479bd1e590756c4aa927894dbdbef4e is-layout-constrained wp-block-group-is-layout-constrained\" style=\"padding-top:var(--wp--preset--spacing--30);padding-right:var(--wp--preset--spacing--30);padding-bottom:var(--wp--preset--spacing--30);padding-left:var(--wp--preset--spacing--30)\">\n<div class=\"wp-block-group alignwide is-content-justification-space-between is-layout-flex wp-container-132 wp-block-group-is-layout-flex\">\n<div class=\"wp-block-group is-layout-flex wp-container-129 wp-block-group-is-layout-flex\"><div class=\"is-default-size wp-block-site-logo\"><span class=\"custom-logo-link\"><img decoding=\"async\" src=\"https://s.w.org/images/wmark.png\" class=\"custom-logo\" alt=\"Site logo\"></span></div>\n\n\n<div class=\"wp-block-group is-vertical is-layout-flex wp-container-128 wp-block-group-is-layout-flex\"><h1 class=\"has-link-color wp-block-site-title wp-elements-d6202aa7d337f2ce08aedc8ed261a84e\"><a href=\"https://wordpress.org/patterns\" target=\"_self\" rel=\"home\">Block Pattern Directory</a></h1>\n\n<p class=\"wp-block-site-tagline has-small-font-size\">Beautifully designed patterns ready to go with a simple copy/paste</p></div>\n</div>\n\n\n<nav class=\"has-small-font-size is-responsive items-justified-right is-fallback wp-block-navigation has-small-font-size is-content-justification-right is-layout-flex wp-container-131 wp-block-navigation-is-layout-flex\" aria-label=\"\" \n			data-wp-interactive\n			data-wp-context=\'{ \"core\": { \"navigation\": { \"overlayOpenedBy\": {}, \"type\": \"overlay\", \"roleAttribute\": \"\" } } }\'\n		><button aria-haspopup=\"true\" aria-label=\"Open menu\" class=\"wp-block-navigation__responsive-container-open \" data-micromodal-trigger=\"modal-130\" \n			data-wp-on--click=\"actions.core.navigation.openMenuOnClick\"\n			data-wp-on--keydown=\"actions.core.navigation.handleMenuKeydown\"\n		><svg width=\"24\" height=\"24\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" aria-hidden=\"true\" focusable=\"false\"><rect x=\"4\" y=\"7.5\" width=\"16\" height=\"1.5\" /><rect x=\"4\" y=\"15\" width=\"16\" height=\"1.5\" /></svg></button>\n			<div class=\"wp-block-navigation__responsive-container  \" style=\"\" id=\"modal-130\" \n			data-wp-class--has-modal-open=\"selectors.core.navigation.isMenuOpen\"\n			data-wp-class--is-menu-open=\"selectors.core.navigation.isMenuOpen\"\n			data-wp-effect=\"effects.core.navigation.initMenu\"\n			data-wp-on--keydown=\"actions.core.navigation.handleMenuKeydown\"\n			data-wp-on--focusout=\"actions.core.navigation.handleMenuFocusout\"\n			tabindex=\"-1\"\n		>\n				<div class=\"wp-block-navigation__responsive-close\" tabindex=\"-1\" data-micromodal-close>\n					<div aria-modal=\"\" role=\"\" class=\"wp-block-navigation__responsive-dialog\" aria-label=\"Menu\" \n			data-wp-bind--aria-modal=\"selectors.core.navigation.isMenuOpen\"\n			data-wp-bind--role=\"selectors.core.navigation.roleAttribute\"\n			data-wp-effect=\"effects.core.navigation.focusFirstElement\"\n		>\n							<button aria-label=\"Close menu\" data-micromodal-close class=\"wp-block-navigation__responsive-container-close\" \n			data-wp-on--click=\"actions.core.navigation.closeMenuOnClick\"\n		><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"24\" height=\"24\" aria-hidden=\"true\" focusable=\"false\"><path d=\"M13 11.8l6.1-6.3-1-1-6.1 6.2-6.1-6.2-1 1 6.1 6.3-6.5 6.7 1 1 6.5-6.6 6.5 6.6 1-1z\"></path></svg></button>\n						<div class=\"wp-block-navigation__responsive-container-content\" id=\"modal-130-content\">\n							<ul class=\"wp-block-navigation__container has-small-font-size is-responsive items-justified-right is-fallback wp-block-navigation has-small-font-size\"><li class=\"has-small-font-size wp-block-navigation-item wp-block-navigation-link\"><a class=\"wp-block-navigation-item__content\"  href=\"#\"><span class=\"wp-block-navigation-item__label\">Home</span></a></li><li class=\"has-small-font-size wp-block-navigation-item wp-block-navigation-link\"><a class=\"wp-block-navigation-item__content\"  href=\"#\"><span class=\"wp-block-navigation-item__label\">About</span></a></li><li class=\"has-small-font-size wp-block-navigation-item wp-block-navigation-link\"><a class=\"wp-block-navigation-item__content\"  href=\"#\"><span class=\"wp-block-navigation-item__label\">Contact</span></a></li></ul>\n						</div>\n					</div>\n				</div>\n			</div></nav></div>\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:92:\"Header with site logo, title and tagline on the left and with navigation links on the right.\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:1:{i:0;s:25:\"core/template-part/header\";}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.1\";s:25:\"wpop_contains_block_types\";s:75:\"core/group,core/navigation,core/site-logo,core/site-tagline,core/site-title\";}s:14:\"category_slugs\";a:2:{i:0;s:6:\"header\";i:1;s:9:\"wireframe\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:1389:\"<!-- wp:group {\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"var:preset|spacing|30\",\"right\":\"var:preset|spacing|30\",\"bottom\":\"var:preset|spacing|30\",\"left\":\"var:preset|spacing|30\"}},\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|contrast\"}}}},\"textColor\":\"contrast\",\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group alignfull has-contrast-color has-text-color has-link-color\" style=\"padding-top:var(--wp--preset--spacing--30);padding-right:var(--wp--preset--spacing--30);padding-bottom:var(--wp--preset--spacing--30);padding-left:var(--wp--preset--spacing--30)\"><!-- wp:group {\"align\":\"wide\",\"layout\":{\"type\":\"flex\",\"justifyContent\":\"space-between\",\"flexWrap\":\"wrap\"}} -->\n<div class=\"wp-block-group alignwide\"><!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"24px\"}},\"layout\":{\"type\":\"flex\"}} -->\n<div class=\"wp-block-group\"><!-- wp:site-logo /-->\n\n<!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"4px\"}},\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\"}} -->\n<div class=\"wp-block-group\"><!-- wp:site-title {\"style\":{\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|contrast\"}}}}} /-->\n\n<!-- wp:site-tagline {\"fontSize\":\"small\"} /--></div>\n<!-- /wp:group --></div>\n<!-- /wp:group -->\n\n<!-- wp:navigation {\"layout\":{\"type\":\"flex\",\"setCascadingProperties\":true,\"justifyContent\":\"right\"},\"fontSize\":\"small\"} /--></div>\n<!-- /wp:group --></div>\n<!-- /wp:group -->\";}i:21;O:8:\"stdClass\":7:{s:2:\"id\";i:229111;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:36:\"Fullwidth site title and menu button\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:3499:\"\n<div class=\"wp-block-group alignfull has-contrast-color has-text-color has-link-color wp-elements-e0434f7bbe3c9d87e2f1562e19b734da is-content-justification-space-between is-layout-flex wp-container-136 wp-block-group-is-layout-flex\" style=\"padding-top:var(--wp--preset--spacing--30);padding-right:var(--wp--preset--spacing--30);padding-bottom:var(--wp--preset--spacing--30);padding-left:var(--wp--preset--spacing--30)\"><h1 class=\"wp-block-site-title\"><a href=\"https://wordpress.org/patterns\" target=\"_self\" rel=\"home\">Block Pattern Directory</a></h1>\n\n<nav class=\"is-responsive items-justified-right is-fallback wp-block-navigation is-content-justification-right is-layout-flex wp-container-135 wp-block-navigation-is-layout-flex\" aria-label=\"\" \n			data-wp-interactive\n			data-wp-context=\'{ \"core\": { \"navigation\": { \"overlayOpenedBy\": {}, \"type\": \"overlay\", \"roleAttribute\": \"\" } } }\'\n		><button aria-haspopup=\"true\" aria-label=\"Open menu\" class=\"wp-block-navigation__responsive-container-open always-shown\" data-micromodal-trigger=\"modal-134\" \n			data-wp-on--click=\"actions.core.navigation.openMenuOnClick\"\n			data-wp-on--keydown=\"actions.core.navigation.handleMenuKeydown\"\n		><svg width=\"24\" height=\"24\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" aria-hidden=\"true\" focusable=\"false\"><rect x=\"4\" y=\"7.5\" width=\"16\" height=\"1.5\" /><rect x=\"4\" y=\"15\" width=\"16\" height=\"1.5\" /></svg></button>\n			<div class=\"wp-block-navigation__responsive-container hidden-by-default \" style=\"\" id=\"modal-134\" \n			data-wp-class--has-modal-open=\"selectors.core.navigation.isMenuOpen\"\n			data-wp-class--is-menu-open=\"selectors.core.navigation.isMenuOpen\"\n			data-wp-effect=\"effects.core.navigation.initMenu\"\n			data-wp-on--keydown=\"actions.core.navigation.handleMenuKeydown\"\n			data-wp-on--focusout=\"actions.core.navigation.handleMenuFocusout\"\n			tabindex=\"-1\"\n		>\n				<div class=\"wp-block-navigation__responsive-close\" tabindex=\"-1\" data-micromodal-close>\n					<div aria-modal=\"\" role=\"\" class=\"wp-block-navigation__responsive-dialog\" aria-label=\"Menu\" \n			data-wp-bind--aria-modal=\"selectors.core.navigation.isMenuOpen\"\n			data-wp-bind--role=\"selectors.core.navigation.roleAttribute\"\n			data-wp-effect=\"effects.core.navigation.focusFirstElement\"\n		>\n							<button aria-label=\"Close menu\" data-micromodal-close class=\"wp-block-navigation__responsive-container-close\" \n			data-wp-on--click=\"actions.core.navigation.closeMenuOnClick\"\n		><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"24\" height=\"24\" aria-hidden=\"true\" focusable=\"false\"><path d=\"M13 11.8l6.1-6.3-1-1-6.1 6.2-6.1-6.2-1 1 6.1 6.3-6.5 6.7 1 1 6.5-6.6 6.5 6.6 1-1z\"></path></svg></button>\n						<div class=\"wp-block-navigation__responsive-container-content\" id=\"modal-134-content\">\n							<ul class=\"wp-block-navigation__container is-responsive items-justified-right is-fallback wp-block-navigation\"><li class=\" wp-block-navigation-item wp-block-navigation-link\"><a class=\"wp-block-navigation-item__content\"  href=\"#\"><span class=\"wp-block-navigation-item__label\">Home</span></a></li><li class=\" wp-block-navigation-item wp-block-navigation-link\"><a class=\"wp-block-navigation-item__content\"  href=\"#\"><span class=\"wp-block-navigation-item__label\">About</span></a></li><li class=\" wp-block-navigation-item wp-block-navigation-link\"><a class=\"wp-block-navigation-item__content\"  href=\"#\"><span class=\"wp-block-navigation-item__label\">Contact</span></a></li></ul>\n						</div>\n					</div>\n				</div>\n			</div></nav></div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:51:\"Header with site title and a hamburger menu button.\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:1:{i:0;s:25:\"core/template-part/header\";}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.1\";s:25:\"wpop_contains_block_types\";s:42:\"core/group,core/navigation,core/site-title\";}s:14:\"category_slugs\";a:2:{i:0;s:6:\"header\";i:1;s:9:\"wireframe\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:794:\"<!-- wp:group {\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"var:preset|spacing|30\",\"right\":\"var:preset|spacing|30\",\"bottom\":\"var:preset|spacing|30\",\"left\":\"var:preset|spacing|30\"}},\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|contrast\"}}}},\"textColor\":\"contrast\",\"layout\":{\"type\":\"flex\",\"justifyContent\":\"space-between\"}} -->\n<div class=\"wp-block-group alignfull has-contrast-color has-text-color has-link-color\" style=\"padding-top:var(--wp--preset--spacing--30);padding-right:var(--wp--preset--spacing--30);padding-bottom:var(--wp--preset--spacing--30);padding-left:var(--wp--preset--spacing--30)\"><!-- wp:site-title /-->\n\n<!-- wp:navigation {\"overlayMenu\":\"always\",\"layout\":{\"type\":\"flex\",\"setCascadingProperties\":true,\"justifyContent\":\"right\"}} /--></div>\n<!-- /wp:group -->\";}i:22;O:8:\"stdClass\":7:{s:2:\"id\";i:229080;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:25:\"Centered header with logo\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:3794:\"\n<div class=\"wp-block-group alignfull is-layout-constrained wp-block-group-is-layout-constrained\" style=\"padding-top:var(--wp--preset--spacing--40);padding-right:var(--wp--preset--spacing--30);padding-bottom:var(--wp--preset--spacing--40);padding-left:var(--wp--preset--spacing--30)\">\n<div class=\"wp-block-group alignwide is-vertical is-content-justification-center is-layout-flex wp-container-139 wp-block-group-is-layout-flex\"><div class=\"is-default-size wp-block-site-logo\"><span class=\"custom-logo-link\"><img decoding=\"async\" src=\"https://s.w.org/images/wmark.png\" class=\"custom-logo\" alt=\"Site logo\"></span></div>\n\n<h1 class=\"has-link-color has-text-color has-contrast-color wp-block-site-title has-large-font-size wp-elements-9728cce79011b64628d7f6beff066787\"><a href=\"https://wordpress.org/patterns\" target=\"_self\" rel=\"home\">Block Pattern Directory</a></h1>\n\n<nav class=\"is-responsive items-justified-center is-fallback wp-block-navigation is-content-justification-center is-layout-flex wp-container-138 wp-block-navigation-is-layout-flex\" aria-label=\"\" \n			data-wp-interactive\n			data-wp-context=\'{ \"core\": { \"navigation\": { \"overlayOpenedBy\": {}, \"type\": \"overlay\", \"roleAttribute\": \"\" } } }\'\n		><button aria-haspopup=\"true\" aria-label=\"Open menu\" class=\"wp-block-navigation__responsive-container-open \" data-micromodal-trigger=\"modal-137\" \n			data-wp-on--click=\"actions.core.navigation.openMenuOnClick\"\n			data-wp-on--keydown=\"actions.core.navigation.handleMenuKeydown\"\n		><svg width=\"24\" height=\"24\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" aria-hidden=\"true\" focusable=\"false\"><rect x=\"4\" y=\"7.5\" width=\"16\" height=\"1.5\" /><rect x=\"4\" y=\"15\" width=\"16\" height=\"1.5\" /></svg></button>\n			<div class=\"wp-block-navigation__responsive-container  \" style=\"\" id=\"modal-137\" \n			data-wp-class--has-modal-open=\"selectors.core.navigation.isMenuOpen\"\n			data-wp-class--is-menu-open=\"selectors.core.navigation.isMenuOpen\"\n			data-wp-effect=\"effects.core.navigation.initMenu\"\n			data-wp-on--keydown=\"actions.core.navigation.handleMenuKeydown\"\n			data-wp-on--focusout=\"actions.core.navigation.handleMenuFocusout\"\n			tabindex=\"-1\"\n		>\n				<div class=\"wp-block-navigation__responsive-close\" tabindex=\"-1\" data-micromodal-close>\n					<div aria-modal=\"\" role=\"\" class=\"wp-block-navigation__responsive-dialog\" aria-label=\"Menu\" \n			data-wp-bind--aria-modal=\"selectors.core.navigation.isMenuOpen\"\n			data-wp-bind--role=\"selectors.core.navigation.roleAttribute\"\n			data-wp-effect=\"effects.core.navigation.focusFirstElement\"\n		>\n							<button aria-label=\"Close menu\" data-micromodal-close class=\"wp-block-navigation__responsive-container-close\" \n			data-wp-on--click=\"actions.core.navigation.closeMenuOnClick\"\n		><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"24\" height=\"24\" aria-hidden=\"true\" focusable=\"false\"><path d=\"M13 11.8l6.1-6.3-1-1-6.1 6.2-6.1-6.2-1 1 6.1 6.3-6.5 6.7 1 1 6.5-6.6 6.5 6.6 1-1z\"></path></svg></button>\n						<div class=\"wp-block-navigation__responsive-container-content\" id=\"modal-137-content\">\n							<ul class=\"wp-block-navigation__container is-responsive items-justified-center is-fallback wp-block-navigation\"><li class=\" wp-block-navigation-item wp-block-navigation-link\"><a class=\"wp-block-navigation-item__content\"  href=\"#\"><span class=\"wp-block-navigation-item__label\">Home</span></a></li><li class=\" wp-block-navigation-item wp-block-navigation-link\"><a class=\"wp-block-navigation-item__content\"  href=\"#\"><span class=\"wp-block-navigation-item__label\">About</span></a></li><li class=\" wp-block-navigation-item wp-block-navigation-link\"><a class=\"wp-block-navigation-item__content\"  href=\"#\"><span class=\"wp-block-navigation-item__label\">Contact</span></a></li></ul>\n						</div>\n					</div>\n				</div>\n			</div></nav></div>\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:65:\"Center aligned header with logo, site title and navigation links.\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:1:{i:0;s:25:\"core/template-part/header\";}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.1\";s:25:\"wpop_contains_block_types\";s:57:\"core/group,core/navigation,core/site-logo,core/site-title\";}s:14:\"category_slugs\";a:2:{i:0;s:6:\"header\";i:1;s:9:\"wireframe\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:926:\"<!-- wp:group {\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"var:preset|spacing|40\",\"right\":\"var:preset|spacing|30\",\"bottom\":\"var:preset|spacing|40\",\"left\":\"var:preset|spacing|30\"}}},\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group alignfull\" style=\"padding-top:var(--wp--preset--spacing--40);padding-right:var(--wp--preset--spacing--30);padding-bottom:var(--wp--preset--spacing--40);padding-left:var(--wp--preset--spacing--30)\"><!-- wp:group {\"align\":\"wide\",\"layout\":{\"type\":\"flex\",\"justifyContent\":\"center\",\"orientation\":\"vertical\"}} -->\n<div class=\"wp-block-group alignwide\"><!-- wp:site-logo /-->\n\n<!-- wp:site-title {\"style\":{\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|contrast\"}}}},\"textColor\":\"contrast\",\"fontSize\":\"large\"} /-->\n\n<!-- wp:navigation {\"layout\":{\"type\":\"flex\",\"setCascadingProperties\":true,\"justifyContent\":\"center\"}} /--></div>\n<!-- /wp:group --></div>\n<!-- /wp:group -->\";}i:23;O:8:\"stdClass\":7:{s:2:\"id\";i:229084;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:37:\"Fullwidth header with large font size\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:3627:\"\n<div class=\"wp-block-group alignfull has-contrast-color has-text-color has-link-color wp-elements-4b5a1e7a31f9f44eaeb3ab45e5ae60f1 is-content-justification-space-between is-layout-flex wp-container-143 wp-block-group-is-layout-flex\" style=\"padding-top:var(--wp--preset--spacing--30);padding-right:var(--wp--preset--spacing--30);padding-bottom:var(--wp--preset--spacing--30);padding-left:var(--wp--preset--spacing--30)\"><h1 class=\"wp-block-site-title has-large-font-size\"><a href=\"https://wordpress.org/patterns\" target=\"_self\" rel=\"home\">Block Pattern Directory</a></h1>\n\n<nav class=\"has-large-font-size is-responsive items-justified-right is-fallback wp-block-navigation has-large-font-size is-content-justification-right is-layout-flex wp-container-142 wp-block-navigation-is-layout-flex\" aria-label=\"\" \n			data-wp-interactive\n			data-wp-context=\'{ \"core\": { \"navigation\": { \"overlayOpenedBy\": {}, \"type\": \"overlay\", \"roleAttribute\": \"\" } } }\'\n		><button aria-haspopup=\"true\" aria-label=\"Open menu\" class=\"wp-block-navigation__responsive-container-open \" data-micromodal-trigger=\"modal-141\" \n			data-wp-on--click=\"actions.core.navigation.openMenuOnClick\"\n			data-wp-on--keydown=\"actions.core.navigation.handleMenuKeydown\"\n		><svg width=\"24\" height=\"24\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" aria-hidden=\"true\" focusable=\"false\"><rect x=\"4\" y=\"7.5\" width=\"16\" height=\"1.5\" /><rect x=\"4\" y=\"15\" width=\"16\" height=\"1.5\" /></svg></button>\n			<div class=\"wp-block-navigation__responsive-container  \" style=\"\" id=\"modal-141\" \n			data-wp-class--has-modal-open=\"selectors.core.navigation.isMenuOpen\"\n			data-wp-class--is-menu-open=\"selectors.core.navigation.isMenuOpen\"\n			data-wp-effect=\"effects.core.navigation.initMenu\"\n			data-wp-on--keydown=\"actions.core.navigation.handleMenuKeydown\"\n			data-wp-on--focusout=\"actions.core.navigation.handleMenuFocusout\"\n			tabindex=\"-1\"\n		>\n				<div class=\"wp-block-navigation__responsive-close\" tabindex=\"-1\" data-micromodal-close>\n					<div aria-modal=\"\" role=\"\" class=\"wp-block-navigation__responsive-dialog\" aria-label=\"Menu\" \n			data-wp-bind--aria-modal=\"selectors.core.navigation.isMenuOpen\"\n			data-wp-bind--role=\"selectors.core.navigation.roleAttribute\"\n			data-wp-effect=\"effects.core.navigation.focusFirstElement\"\n		>\n							<button aria-label=\"Close menu\" data-micromodal-close class=\"wp-block-navigation__responsive-container-close\" \n			data-wp-on--click=\"actions.core.navigation.closeMenuOnClick\"\n		><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"24\" height=\"24\" aria-hidden=\"true\" focusable=\"false\"><path d=\"M13 11.8l6.1-6.3-1-1-6.1 6.2-6.1-6.2-1 1 6.1 6.3-6.5 6.7 1 1 6.5-6.6 6.5 6.6 1-1z\"></path></svg></button>\n						<div class=\"wp-block-navigation__responsive-container-content\" id=\"modal-141-content\">\n							<ul class=\"wp-block-navigation__container has-large-font-size is-responsive items-justified-right is-fallback wp-block-navigation has-large-font-size\"><li class=\"has-large-font-size wp-block-navigation-item wp-block-navigation-link\"><a class=\"wp-block-navigation-item__content\"  href=\"#\"><span class=\"wp-block-navigation-item__label\">Home</span></a></li><li class=\"has-large-font-size wp-block-navigation-item wp-block-navigation-link\"><a class=\"wp-block-navigation-item__content\"  href=\"#\"><span class=\"wp-block-navigation-item__label\">About</span></a></li><li class=\"has-large-font-size wp-block-navigation-item wp-block-navigation-link\"><a class=\"wp-block-navigation-item__content\"  href=\"#\"><span class=\"wp-block-navigation-item__label\">Contact</span></a></li></ul>\n						</div>\n					</div>\n				</div>\n			</div></nav></div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:80:\"Header with a large site title and navigation links in the same large font size.\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:1:{i:0;s:25:\"core/template-part/header\";}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.1\";s:25:\"wpop_contains_block_types\";s:42:\"core/group,core/navigation,core/site-title\";}s:14:\"category_slugs\";a:2:{i:0;s:6:\"header\";i:1;s:9:\"wireframe\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:811:\"<!-- wp:group {\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"var:preset|spacing|30\",\"right\":\"var:preset|spacing|30\",\"bottom\":\"var:preset|spacing|30\",\"left\":\"var:preset|spacing|30\"}},\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|contrast\"}}}},\"textColor\":\"contrast\",\"layout\":{\"type\":\"flex\",\"justifyContent\":\"space-between\"}} -->\n<div class=\"wp-block-group alignfull has-contrast-color has-text-color has-link-color\" style=\"padding-top:var(--wp--preset--spacing--30);padding-right:var(--wp--preset--spacing--30);padding-bottom:var(--wp--preset--spacing--30);padding-left:var(--wp--preset--spacing--30)\"><!-- wp:site-title {\"fontSize\":\"large\"} /-->\n\n<!-- wp:navigation {\"layout\":{\"type\":\"flex\",\"setCascadingProperties\":true,\"justifyContent\":\"right\"},\"fontSize\":\"large\"} /--></div>\n<!-- /wp:group -->\";}i:24;O:8:\"stdClass\":7:{s:2:\"id\";i:229088;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:13:\"Simple header\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:3830:\"\n<div class=\"wp-block-group alignfull is-layout-constrained wp-block-group-is-layout-constrained\" style=\"padding-top:var(--wp--preset--spacing--30);padding-right:var(--wp--preset--spacing--30);padding-bottom:var(--wp--preset--spacing--30);padding-left:var(--wp--preset--spacing--30)\">\n<div class=\"wp-block-group alignwide is-content-justification-space-between is-layout-flex wp-container-147 wp-block-group-is-layout-flex\">\n<div class=\"wp-block-group is-layout-flex wp-container-144 wp-block-group-is-layout-flex\"><div class=\"is-default-size wp-block-site-logo\"><span class=\"custom-logo-link\"><img decoding=\"async\" src=\"https://s.w.org/images/wmark.png\" class=\"custom-logo\" alt=\"Site logo\"></span></div>\n\n<h1 class=\"has-link-color wp-block-site-title wp-elements-d6202aa7d337f2ce08aedc8ed261a84e\"><a href=\"https://wordpress.org/patterns\" target=\"_self\" rel=\"home\">Block Pattern Directory</a></h1></div>\n\n\n<nav class=\"is-responsive items-justified-right is-fallback wp-block-navigation is-content-justification-right is-layout-flex wp-container-146 wp-block-navigation-is-layout-flex\" aria-label=\"\" \n			data-wp-interactive\n			data-wp-context=\'{ \"core\": { \"navigation\": { \"overlayOpenedBy\": {}, \"type\": \"overlay\", \"roleAttribute\": \"\" } } }\'\n		><button aria-haspopup=\"true\" aria-label=\"Open menu\" class=\"wp-block-navigation__responsive-container-open \" data-micromodal-trigger=\"modal-145\" \n			data-wp-on--click=\"actions.core.navigation.openMenuOnClick\"\n			data-wp-on--keydown=\"actions.core.navigation.handleMenuKeydown\"\n		><svg width=\"24\" height=\"24\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" aria-hidden=\"true\" focusable=\"false\"><rect x=\"4\" y=\"7.5\" width=\"16\" height=\"1.5\" /><rect x=\"4\" y=\"15\" width=\"16\" height=\"1.5\" /></svg></button>\n			<div class=\"wp-block-navigation__responsive-container  \" style=\"\" id=\"modal-145\" \n			data-wp-class--has-modal-open=\"selectors.core.navigation.isMenuOpen\"\n			data-wp-class--is-menu-open=\"selectors.core.navigation.isMenuOpen\"\n			data-wp-effect=\"effects.core.navigation.initMenu\"\n			data-wp-on--keydown=\"actions.core.navigation.handleMenuKeydown\"\n			data-wp-on--focusout=\"actions.core.navigation.handleMenuFocusout\"\n			tabindex=\"-1\"\n		>\n				<div class=\"wp-block-navigation__responsive-close\" tabindex=\"-1\" data-micromodal-close>\n					<div aria-modal=\"\" role=\"\" class=\"wp-block-navigation__responsive-dialog\" aria-label=\"Menu\" \n			data-wp-bind--aria-modal=\"selectors.core.navigation.isMenuOpen\"\n			data-wp-bind--role=\"selectors.core.navigation.roleAttribute\"\n			data-wp-effect=\"effects.core.navigation.focusFirstElement\"\n		>\n							<button aria-label=\"Close menu\" data-micromodal-close class=\"wp-block-navigation__responsive-container-close\" \n			data-wp-on--click=\"actions.core.navigation.closeMenuOnClick\"\n		><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"24\" height=\"24\" aria-hidden=\"true\" focusable=\"false\"><path d=\"M13 11.8l6.1-6.3-1-1-6.1 6.2-6.1-6.2-1 1 6.1 6.3-6.5 6.7 1 1 6.5-6.6 6.5 6.6 1-1z\"></path></svg></button>\n						<div class=\"wp-block-navigation__responsive-container-content\" id=\"modal-145-content\">\n							<ul class=\"wp-block-navigation__container is-responsive items-justified-right is-fallback wp-block-navigation\"><li class=\" wp-block-navigation-item wp-block-navigation-link\"><a class=\"wp-block-navigation-item__content\"  href=\"#\"><span class=\"wp-block-navigation-item__label\">Home</span></a></li><li class=\" wp-block-navigation-item wp-block-navigation-link\"><a class=\"wp-block-navigation-item__content\"  href=\"#\"><span class=\"wp-block-navigation-item__label\">About</span></a></li><li class=\" wp-block-navigation-item wp-block-navigation-link\"><a class=\"wp-block-navigation-item__content\"  href=\"#\"><span class=\"wp-block-navigation-item__label\">Contact</span></a></li></ul>\n						</div>\n					</div>\n				</div>\n			</div></nav></div>\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:51:\"Simple header with logo, site title and navigation.\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:1:{i:0;s:25:\"core/template-part/header\";}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.1\";s:25:\"wpop_contains_block_types\";s:57:\"core/group,core/navigation,core/site-logo,core/site-title\";}s:14:\"category_slugs\";a:2:{i:0;s:6:\"header\";i:1;s:9:\"wireframe\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:1021:\"<!-- wp:group {\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"var:preset|spacing|30\",\"right\":\"var:preset|spacing|30\",\"bottom\":\"var:preset|spacing|30\",\"left\":\"var:preset|spacing|30\"}}},\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group alignfull\" style=\"padding-top:var(--wp--preset--spacing--30);padding-right:var(--wp--preset--spacing--30);padding-bottom:var(--wp--preset--spacing--30);padding-left:var(--wp--preset--spacing--30)\"><!-- wp:group {\"align\":\"wide\",\"layout\":{\"type\":\"flex\",\"justifyContent\":\"space-between\",\"flexWrap\":\"wrap\"}} -->\n<div class=\"wp-block-group alignwide\"><!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"24px\"}},\"layout\":{\"type\":\"flex\"}} -->\n<div class=\"wp-block-group\"><!-- wp:site-logo /-->\n\n<!-- wp:site-title {\"style\":{\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|contrast\"}}}}} /--></div>\n<!-- /wp:group -->\n\n<!-- wp:navigation {\"layout\":{\"type\":\"flex\",\"setCascadingProperties\":true,\"justifyContent\":\"right\"}} /--></div>\n<!-- /wp:group --></div>\n<!-- /wp:group -->\";}i:25;O:8:\"stdClass\":7:{s:2:\"id\";i:229123;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:33:\"Centered footer with social links\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:4180:\"\n<div class=\"wp-block-group alignfull has-contrast-color has-text-color is-vertical is-content-justification-center is-layout-flex wp-container-151 wp-block-group-is-layout-flex\" style=\"min-height:30vh;margin-top:0;margin-bottom:0;padding-top:var(--wp--preset--spacing--60);padding-right:var(--wp--preset--spacing--50);padding-bottom:var(--wp--preset--spacing--60);padding-left:var(--wp--preset--spacing--50)\">\n<div class=\"wp-block-group is-nowrap is-layout-flex wp-container-150 wp-block-group-is-layout-flex\">\n<p class=\"has-text-align-center\">Proudly powered by <a href=\"https://wordpress.org\">WordPress</a></p>\n\n\n\n<ul class=\"wp-block-social-links has-small-icon-size is-style-logos-only is-nowrap is-layout-flex wp-container-149 wp-block-social-links-is-layout-flex\"><li class=\"wp-social-link wp-social-link-twitter  wp-block-social-link\"><a href=\"https://#\" class=\"wp-block-social-link-anchor\"><svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" aria-hidden=\"true\" focusable=\"false\"><path d=\"M22.23,5.924c-0.736,0.326-1.527,0.547-2.357,0.646c0.847-0.508,1.498-1.312,1.804-2.27 c-0.793,0.47-1.671,0.812-2.606,0.996C18.324,4.498,17.257,4,16.077,4c-2.266,0-4.103,1.837-4.103,4.103 c0,0.322,0.036,0.635,0.106,0.935C8.67,8.867,5.647,7.234,3.623,4.751C3.27,5.357,3.067,6.062,3.067,6.814 c0,1.424,0.724,2.679,1.825,3.415c-0.673-0.021-1.305-0.206-1.859-0.513c0,0.017,0,0.034,0,0.052c0,1.988,1.414,3.647,3.292,4.023 c-0.344,0.094-0.707,0.144-1.081,0.144c-0.264,0-0.521-0.026-0.772-0.074c0.522,1.63,2.038,2.816,3.833,2.85 c-1.404,1.1-3.174,1.756-5.096,1.756c-0.331,0-0.658-0.019-0.979-0.057c1.816,1.164,3.973,1.843,6.29,1.843 c7.547,0,11.675-6.252,11.675-11.675c0-0.178-0.004-0.355-0.012-0.531C20.985,7.47,21.68,6.747,22.23,5.924z\"></path></svg><span class=\"wp-block-social-link-label screen-reader-text\">Twitter</span></a></li>\n\n<li class=\"wp-social-link wp-social-link-instagram  wp-block-social-link\"><a href=\"https://#\" class=\"wp-block-social-link-anchor\"><svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" aria-hidden=\"true\" focusable=\"false\"><path d=\"M12,4.622c2.403,0,2.688,0.009,3.637,0.052c0.877,0.04,1.354,0.187,1.671,0.31c0.42,0.163,0.72,0.358,1.035,0.673 c0.315,0.315,0.51,0.615,0.673,1.035c0.123,0.317,0.27,0.794,0.31,1.671c0.043,0.949,0.052,1.234,0.052,3.637 s-0.009,2.688-0.052,3.637c-0.04,0.877-0.187,1.354-0.31,1.671c-0.163,0.42-0.358,0.72-0.673,1.035 c-0.315,0.315-0.615,0.51-1.035,0.673c-0.317,0.123-0.794,0.27-1.671,0.31c-0.949,0.043-1.233,0.052-3.637,0.052 s-2.688-0.009-3.637-0.052c-0.877-0.04-1.354-0.187-1.671-0.31c-0.42-0.163-0.72-0.358-1.035-0.673 c-0.315-0.315-0.51-0.615-0.673-1.035c-0.123-0.317-0.27-0.794-0.31-1.671C4.631,14.688,4.622,14.403,4.622,12 s0.009-2.688,0.052-3.637c0.04-0.877,0.187-1.354,0.31-1.671c0.163-0.42,0.358-0.72,0.673-1.035 c0.315-0.315,0.615-0.51,1.035-0.673c0.317-0.123,0.794-0.27,1.671-0.31C9.312,4.631,9.597,4.622,12,4.622 M12,3 C9.556,3,9.249,3.01,8.289,3.054C7.331,3.098,6.677,3.25,6.105,3.472C5.513,3.702,5.011,4.01,4.511,4.511 c-0.5,0.5-0.808,1.002-1.038,1.594C3.25,6.677,3.098,7.331,3.054,8.289C3.01,9.249,3,9.556,3,12c0,2.444,0.01,2.751,0.054,3.711 c0.044,0.958,0.196,1.612,0.418,2.185c0.23,0.592,0.538,1.094,1.038,1.594c0.5,0.5,1.002,0.808,1.594,1.038 c0.572,0.222,1.227,0.375,2.185,0.418C9.249,20.99,9.556,21,12,21s2.751-0.01,3.711-0.054c0.958-0.044,1.612-0.196,2.185-0.418 c0.592-0.23,1.094-0.538,1.594-1.038c0.5-0.5,0.808-1.002,1.038-1.594c0.222-0.572,0.375-1.227,0.418-2.185 C20.99,14.751,21,14.444,21,12s-0.01-2.751-0.054-3.711c-0.044-0.958-0.196-1.612-0.418-2.185c-0.23-0.592-0.538-1.094-1.038-1.594 c-0.5-0.5-1.002-0.808-1.594-1.038c-0.572-0.222-1.227-0.375-2.185-0.418C14.751,3.01,14.444,3,12,3L12,3z M12,7.378 c-2.552,0-4.622,2.069-4.622,4.622S9.448,16.622,12,16.622s4.622-2.069,4.622-4.622S14.552,7.378,12,7.378z M12,15 c-1.657,0-3-1.343-3-3s1.343-3,3-3s3,1.343,3,3S13.657,15,12,15z M16.804,6.116c-0.596,0-1.08,0.484-1.08,1.08 s0.484,1.08,1.08,1.08c0.596,0,1.08-0.484,1.08-1.08S17.401,6.116,16.804,6.116z\"></path></svg><span class=\"wp-block-social-link-label screen-reader-text\">Instagram</span></a></li></ul>\n</div>\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:82:\"Centered footer with the sentence \"Proudly powered by WordPress\" and social links.\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:1:{i:0;s:25:\"core/template-part/footer\";}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.2\";s:25:\"wpop_contains_block_types\";s:25:\"core/group,core/paragraph\";}s:14:\"category_slugs\";a:2:{i:0;s:6:\"footer\";i:1;s:9:\"wireframe\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:1495:\"<!-- wp:group {\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"right\":\"var:preset|spacing|50\",\"bottom\":\"var:preset|spacing|60\",\"left\":\"var:preset|spacing|50\",\"top\":\"var:preset|spacing|60\"},\"blockGap\":\"var:preset|spacing|40\",\"margin\":{\"top\":\"0\",\"bottom\":\"0\"}},\"dimensions\":{\"minHeight\":\"30vh\"}},\"textColor\":\"contrast\",\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\",\"justifyContent\":\"center\",\"verticalAlignment\":\"center\"}} -->\n<div class=\"wp-block-group alignfull has-contrast-color has-text-color\" style=\"min-height:30vh;margin-top:0;margin-bottom:0;padding-top:var(--wp--preset--spacing--60);padding-right:var(--wp--preset--spacing--50);padding-bottom:var(--wp--preset--spacing--60);padding-left:var(--wp--preset--spacing--50)\"><!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"24px\"}},\"layout\":{\"type\":\"flex\",\"flexWrap\":\"nowrap\"}} -->\n<div class=\"wp-block-group\"><!-- wp:paragraph {\"align\":\"center\"} -->\n<p class=\"has-text-align-center\">Proudly powered by <a href=\"https://wordpress.org\">WordPress</a></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:social-links {\"size\":\"has-small-icon-size\",\"style\":{\"spacing\":{\"blockGap\":{\"top\":\"8px\",\"left\":\"8px\"}}},\"className\":\"is-style-logos-only\",\"layout\":{\"type\":\"flex\",\"flexWrap\":\"nowrap\"}} -->\n<ul class=\"wp-block-social-links has-small-icon-size is-style-logos-only\"><!-- wp:social-link {\"url\":\"#\",\"service\":\"twitter\"} /-->\n\n<!-- wp:social-link {\"url\":\"#\",\"service\":\"instagram\"} /--></ul>\n<!-- /wp:social-links --></div>\n<!-- /wp:group --></div>\n<!-- /wp:group -->\";}i:26;O:8:\"stdClass\":7:{s:2:\"id\";i:229127;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:47:\"Footer with search, site title, and credit line\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:2962:\"\n<div class=\"wp-block-group alignfull has-background is-layout-constrained wp-block-group-is-layout-constrained\" style=\"background-color:#00000008;padding-top:var(--wp--preset--spacing--50);padding-right:var(--wp--preset--spacing--40);padding-bottom:var(--wp--preset--spacing--50);padding-left:var(--wp--preset--spacing--40)\">\n<div class=\"wp-block-group alignwide is-content-justification-space-between is-layout-flex wp-container-158 wp-block-group-is-layout-flex\">\n<div class=\"wp-block-group wp-container-content-153 is-content-justification-left is-layout-constrained wp-container-154 wp-block-group-is-layout-constrained\">\n<p class=\"has-text-align-left\" style=\"font-size:0.9rem;font-style:normal;font-weight:600;letter-spacing:1px;text-transform:uppercase\">Search</p>\n\n\n<form role=\"search\" method=\"get\" action=\"https://wordpress.org/patterns/\" class=\"wp-block-search__button-outside wp-block-search__icon-button wp-block-search\"><label class=\"wp-block-search__label screen-reader-text\" for=\"wp-block-search__input-152\" >Search</label><div class=\"wp-block-search__inside-wrapper \"  style=\"width: 100%\"><input class=\"wp-block-search__input\" id=\"wp-block-search__input-152\" placeholder=\"\" value=\"\" type=\"search\" name=\"s\" required  style=\"border-width: 1px\"/><button aria-label=\"Search\" class=\"wp-block-search__button has-icon wp-element-button\" type=\"submit\"  style=\"border-width: 1px\"><svg class=\"search-icon\" viewBox=\"0 0 24 24\" width=\"24\" height=\"24\">\n					<path d=\"M13 5c-3.3 0-6 2.7-6 6 0 1.4.5 2.7 1.3 3.7l-3.8 3.8 1.1 1.1 3.8-3.8c1 .8 2.3 1.3 3.7 1.3 3.3 0 6-2.7 6-6S16.3 5 13 5zm0 10.5c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5-2 4.5-4.5 4.5z\"></path>\n				</svg></button></div></form></div>\n\n\n\n<div class=\"wp-block-group is-content-justification-right is-nowrap is-layout-flex wp-container-157 wp-block-group-is-layout-flex\">\n<div class=\"wp-block-group is-vertical is-layout-flex wp-container-156 wp-block-group-is-layout-flex\">\n<p class=\"has-text-align-left\" style=\"font-size:0.9rem;font-style:normal;font-weight:600;letter-spacing:1px;text-transform:uppercase\">Social</p>\n\n\n\n<div class=\"wp-block-group has-small-font-size is-vertical is-content-justification-left is-layout-flex wp-container-155 wp-block-group-is-layout-flex\">\n<p><a href=\"#\">Facebook</a></p>\n\n\n\n<p><a href=\"#\">Instagram</a></p>\n\n\n\n<p><a href=\"#\">Twitter</a></p>\n</div>\n</div>\n</div>\n</div>\n\n\n\n<div style=\"height:48px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<div class=\"wp-block-group alignwide is-content-justification-space-between is-layout-flex wp-container-160 wp-block-group-is-layout-flex\">\n<div class=\"wp-block-group is-layout-flex wp-block-group-is-layout-flex\"><h1 class=\"wp-block-site-title has-small-font-size\"><a href=\"https://wordpress.org/patterns\" target=\"_self\" rel=\"home\">Block Pattern Directory</a></h1></div>\n\n\n\n<p class=\"has-small-font-size\"> Proudly powered by <a rel=\"nofollow\" href=\"https://wordpress.org\">WordPress</a> </p>\n</div>\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:88:\"Footer with search field and site title on the left, and small credit line on the right.\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:1:{i:0;s:25:\"core/template-part/footer\";}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.1\";s:25:\"wpop_contains_block_types\";s:65:\"core/group,core/paragraph,core/search,core/site-title,core/spacer\";}s:14:\"category_slugs\";a:2:{i:0;s:6:\"footer\";i:1;s:9:\"wireframe\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:3254:\"<!-- wp:group {\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"right\":\"var:preset|spacing|40\",\"left\":\"var:preset|spacing|40\",\"top\":\"var:preset|spacing|50\",\"bottom\":\"var:preset|spacing|50\"}},\"color\":{\"background\":\"#00000008\"}},\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group alignfull has-background\" style=\"background-color:#00000008;padding-top:var(--wp--preset--spacing--50);padding-right:var(--wp--preset--spacing--40);padding-bottom:var(--wp--preset--spacing--50);padding-left:var(--wp--preset--spacing--40)\"><!-- wp:group {\"align\":\"wide\",\"style\":{\"spacing\":{\"blockGap\":\"var:preset|spacing|60\"}},\"layout\":{\"type\":\"flex\",\"flexWrap\":\"wrap\",\"justifyContent\":\"space-between\",\"verticalAlignment\":\"top\"}} -->\n<div class=\"wp-block-group alignwide\"><!-- wp:group {\"style\":{\"layout\":{\"selfStretch\":\"fill\",\"flexSize\":null}},\"layout\":{\"type\":\"constrained\",\"justifyContent\":\"left\"}} -->\n<div class=\"wp-block-group\"><!-- wp:paragraph {\"align\":\"left\",\"style\":{\"typography\":{\"textTransform\":\"uppercase\",\"fontSize\":\"0.9rem\",\"letterSpacing\":\"1px\",\"fontStyle\":\"normal\",\"fontWeight\":\"600\"}}} -->\n<p class=\"has-text-align-left\" style=\"font-size:0.9rem;font-style:normal;font-weight:600;letter-spacing:1px;text-transform:uppercase\">Search</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:search {\"label\":\"Search\",\"showLabel\":false,\"width\":100,\"widthUnit\":\"%\",\"buttonText\":\"Search\",\"buttonUseIcon\":true,\"style\":{\"border\":{\"width\":\"1px\"}}} /--></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"style\":{\"spacing\":[]},\"layout\":{\"type\":\"flex\",\"flexWrap\":\"nowrap\",\"justifyContent\":\"right\",\"verticalAlignment\":\"top\"}} -->\n<div class=\"wp-block-group\"><!-- wp:group {\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\"}} -->\n<div class=\"wp-block-group\"><!-- wp:paragraph {\"align\":\"left\",\"style\":{\"typography\":{\"textTransform\":\"uppercase\",\"fontSize\":\"0.9rem\",\"letterSpacing\":\"1px\",\"fontStyle\":\"normal\",\"fontWeight\":\"600\"}}} -->\n<p class=\"has-text-align-left\" style=\"font-size:0.9rem;font-style:normal;font-weight:600;letter-spacing:1px;text-transform:uppercase\">Social</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"8px\"}},\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\",\"justifyContent\":\"left\"},\"fontSize\":\"small\"} -->\n<div class=\"wp-block-group has-small-font-size\"><!-- wp:paragraph -->\n<p><a href=\"#\">Facebook</a></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><a href=\"#\">Instagram</a></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><a href=\"#\">Twitter</a></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group --></div>\n<!-- /wp:group --></div>\n<!-- /wp:group --></div>\n<!-- /wp:group -->\n\n<!-- wp:spacer {\"height\":\"48px\"} -->\n<div style=\"height:48px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:group {\"align\":\"wide\",\"layout\":{\"type\":\"flex\",\"justifyContent\":\"space-between\",\"flexWrap\":\"wrap\"}} -->\n<div class=\"wp-block-group alignwide\"><!-- wp:group {\"layout\":{\"type\":\"flex\"}} -->\n<div class=\"wp-block-group\"><!-- wp:site-title {\"fontSize\":\"small\"} /--></div>\n<!-- /wp:group -->\n\n<!-- wp:paragraph {\"fontSize\":\"small\"} -->\n<p class=\"has-small-font-size\"> Proudly powered by <a rel=\"nofollow\" href=\"https://wordpress.org\">WordPress</a> </p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group --></div>\n<!-- /wp:group -->\";}i:27;O:8:\"stdClass\":7:{s:2:\"id\";i:229131;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:38:\"Footer with site title and credit line\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:840:\"\n<div class=\"wp-block-group alignfull has-background-color is-layout-constrained wp-block-group-is-layout-constrained\" style=\"margin-top:0;margin-bottom:0;padding-top:var(--wp--preset--spacing--40);padding-right:var(--wp--preset--spacing--30);padding-bottom:var(--wp--preset--spacing--40);padding-left:var(--wp--preset--spacing--30)\">\n<div class=\"wp-block-group alignwide is-content-justification-space-between is-layout-flex wp-container-163 wp-block-group-is-layout-flex\">\n<div class=\"wp-block-group is-layout-flex wp-block-group-is-layout-flex\"><h1 class=\"wp-block-site-title has-small-font-size\"><a href=\"https://wordpress.org/patterns\" target=\"_self\" rel=\"home\">Block Pattern Directory</a></h1></div>\n\n\n\n<p class=\"has-small-font-size\"> Proudly powered by <a rel=\"nofollow\" href=\"https://wordpress.org\">WordPress</a> </p>\n</div>\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:64:\"Footer with site title on the left and credit line on the right.\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:1:{i:0;s:25:\"core/template-part/footer\";}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.1\";s:25:\"wpop_contains_block_types\";s:41:\"core/group,core/paragraph,core/site-title\";}s:14:\"category_slugs\";a:2:{i:0;s:6:\"footer\";i:1;s:9:\"wireframe\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:1095:\"<!-- wp:group {\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"var:preset|spacing|40\",\"right\":\"var:preset|spacing|30\",\"bottom\":\"var:preset|spacing|40\",\"left\":\"var:preset|spacing|30\"},\"margin\":{\"top\":\"0\",\"bottom\":\"0\"}}},\"className\":\"has-background-color\",\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group alignfull has-background-color\" style=\"margin-top:0;margin-bottom:0;padding-top:var(--wp--preset--spacing--40);padding-right:var(--wp--preset--spacing--30);padding-bottom:var(--wp--preset--spacing--40);padding-left:var(--wp--preset--spacing--30)\"><!-- wp:group {\"align\":\"wide\",\"layout\":{\"type\":\"flex\",\"justifyContent\":\"space-between\",\"flexWrap\":\"wrap\"}} -->\n<div class=\"wp-block-group alignwide\"><!-- wp:group {\"layout\":{\"type\":\"flex\"}} -->\n<div class=\"wp-block-group\"><!-- wp:site-title {\"fontSize\":\"small\"} /--></div>\n<!-- /wp:group -->\n\n<!-- wp:paragraph {\"fontSize\":\"small\"} -->\n<p class=\"has-small-font-size\"> Proudly powered by <a rel=\"nofollow\" href=\"https://wordpress.org\">WordPress</a> </p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group --></div>\n<!-- /wp:group -->\";}i:28;O:8:\"stdClass\":7:{s:2:\"id\";i:229135;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:38:\"Footer with navigation and credit line\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:3733:\"\n<div class=\"wp-block-group alignfull has-background-color is-layout-constrained wp-block-group-is-layout-constrained\" style=\"margin-top:0;margin-bottom:0;padding-top:var(--wp--preset--spacing--40);padding-right:var(--wp--preset--spacing--30);padding-bottom:var(--wp--preset--spacing--40);padding-left:var(--wp--preset--spacing--30)\">\n<div class=\"wp-block-group alignwide is-content-justification-space-between is-layout-flex wp-container-168 wp-block-group-is-layout-flex\">\n<div class=\"wp-block-group is-layout-flex wp-block-group-is-layout-flex\"><nav class=\"has-small-font-size is-responsive items-justified-left is-fallback wp-block-navigation has-small-font-size is-content-justification-left is-layout-flex wp-container-166 wp-block-navigation-is-layout-flex\" aria-label=\"\" \n			data-wp-interactive\n			data-wp-context=\'{ \"core\": { \"navigation\": { \"overlayOpenedBy\": {}, \"type\": \"overlay\", \"roleAttribute\": \"\" } } }\'\n		><button aria-haspopup=\"true\" aria-label=\"Open menu\" class=\"wp-block-navigation__responsive-container-open \" data-micromodal-trigger=\"modal-165\" \n			data-wp-on--click=\"actions.core.navigation.openMenuOnClick\"\n			data-wp-on--keydown=\"actions.core.navigation.handleMenuKeydown\"\n		><svg width=\"24\" height=\"24\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" aria-hidden=\"true\" focusable=\"false\"><rect x=\"4\" y=\"7.5\" width=\"16\" height=\"1.5\" /><rect x=\"4\" y=\"15\" width=\"16\" height=\"1.5\" /></svg></button>\n			<div class=\"wp-block-navigation__responsive-container  \" style=\"\" id=\"modal-165\" \n			data-wp-class--has-modal-open=\"selectors.core.navigation.isMenuOpen\"\n			data-wp-class--is-menu-open=\"selectors.core.navigation.isMenuOpen\"\n			data-wp-effect=\"effects.core.navigation.initMenu\"\n			data-wp-on--keydown=\"actions.core.navigation.handleMenuKeydown\"\n			data-wp-on--focusout=\"actions.core.navigation.handleMenuFocusout\"\n			tabindex=\"-1\"\n		>\n				<div class=\"wp-block-navigation__responsive-close\" tabindex=\"-1\" data-micromodal-close>\n					<div aria-modal=\"\" role=\"\" class=\"wp-block-navigation__responsive-dialog\" aria-label=\"Menu\" \n			data-wp-bind--aria-modal=\"selectors.core.navigation.isMenuOpen\"\n			data-wp-bind--role=\"selectors.core.navigation.roleAttribute\"\n			data-wp-effect=\"effects.core.navigation.focusFirstElement\"\n		>\n							<button aria-label=\"Close menu\" data-micromodal-close class=\"wp-block-navigation__responsive-container-close\" \n			data-wp-on--click=\"actions.core.navigation.closeMenuOnClick\"\n		><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"24\" height=\"24\" aria-hidden=\"true\" focusable=\"false\"><path d=\"M13 11.8l6.1-6.3-1-1-6.1 6.2-6.1-6.2-1 1 6.1 6.3-6.5 6.7 1 1 6.5-6.6 6.5 6.6 1-1z\"></path></svg></button>\n						<div class=\"wp-block-navigation__responsive-container-content\" id=\"modal-165-content\">\n							<ul class=\"wp-block-navigation__container has-small-font-size is-responsive items-justified-left is-fallback wp-block-navigation has-small-font-size\"><li class=\"has-small-font-size wp-block-navigation-item wp-block-navigation-link\"><a class=\"wp-block-navigation-item__content\"  href=\"#\"><span class=\"wp-block-navigation-item__label\">Home</span></a></li><li class=\"has-small-font-size wp-block-navigation-item wp-block-navigation-link\"><a class=\"wp-block-navigation-item__content\"  href=\"#\"><span class=\"wp-block-navigation-item__label\">About</span></a></li><li class=\"has-small-font-size wp-block-navigation-item wp-block-navigation-link\"><a class=\"wp-block-navigation-item__content\"  href=\"#\"><span class=\"wp-block-navigation-item__label\">Contact</span></a></li></ul>\n						</div>\n					</div>\n				</div>\n			</div></nav></div>\n\n\n\n<p class=\"has-small-font-size\"> Proudly powered by <a rel=\"nofollow\" href=\"https://wordpress.org\">WordPress</a> </p>\n</div>\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:64:\"Footer with navigation on the left and credit line on the right.\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:1:{i:0;s:25:\"core/template-part/footer\";}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.1\";s:25:\"wpop_contains_block_types\";s:41:\"core/group,core/navigation,core/paragraph\";}s:14:\"category_slugs\";a:2:{i:0;s:6:\"footer\";i:1;s:9:\"wireframe\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:1174:\"<!-- wp:group {\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"var:preset|spacing|40\",\"right\":\"var:preset|spacing|30\",\"bottom\":\"var:preset|spacing|40\",\"left\":\"var:preset|spacing|30\"},\"margin\":{\"top\":\"0\",\"bottom\":\"0\"}}},\"className\":\"has-background-color\",\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group alignfull has-background-color\" style=\"margin-top:0;margin-bottom:0;padding-top:var(--wp--preset--spacing--40);padding-right:var(--wp--preset--spacing--30);padding-bottom:var(--wp--preset--spacing--40);padding-left:var(--wp--preset--spacing--30)\"><!-- wp:group {\"align\":\"wide\",\"layout\":{\"type\":\"flex\",\"justifyContent\":\"space-between\",\"flexWrap\":\"wrap\"}} -->\n<div class=\"wp-block-group alignwide\"><!-- wp:group {\"layout\":{\"type\":\"flex\"}} -->\n<div class=\"wp-block-group\"><!-- wp:navigation {\"layout\":{\"type\":\"flex\",\"setCascadingProperties\":true,\"justifyContent\":\"left\"},\"fontSize\":\"small\"} /--></div>\n<!-- /wp:group -->\n\n<!-- wp:paragraph {\"fontSize\":\"small\"} -->\n<p class=\"has-small-font-size\"> Proudly powered by <a rel=\"nofollow\" href=\"https://wordpress.org\">WordPress</a> </p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group --></div>\n<!-- /wp:group -->\";}i:29;O:8:\"stdClass\":7:{s:2:\"id\";i:229139;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:56:\"Fullwidth footer with background color and three columns\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:2963:\"\n<div class=\"wp-block-group alignfull has-background-color has-white-color has-black-background-color has-text-color has-background has-link-color wp-elements-8d0170a0199cafe7fbcba6c0b4dac464 is-vertical is-content-justification-stretch is-layout-flex wp-container-178 wp-block-group-is-layout-flex\" style=\"min-height:40vh;margin-top:0;margin-bottom:0;padding-top:var(--wp--preset--spacing--60);padding-right:var(--wp--preset--spacing--40);padding-bottom:var(--wp--preset--spacing--60);padding-left:var(--wp--preset--spacing--40)\">\n<div class=\"wp-block-columns alignwide has-small-font-size is-layout-flex wp-container-176 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<p class=\"has-text-align-center\">Location</p>\n\n\n\n<p class=\"has-text-align-center\">2020 Lomita Blvd,&nbsp;<br>Torrance, CA 90101<br>United States</p>\n\n\n\n<div style=\"height:24px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<p class=\"has-text-align-center\">Pages</p>\n\n\n<nav class=\"has-small-font-size items-justified-center is-vertical no-wrap is-fallback wp-block-navigation has-small-font-size is-content-justification-center is-nowrap is-layout-flex wp-container-172 wp-block-navigation-is-layout-flex\" aria-label=\"\"><ul class=\"wp-block-navigation__container has-small-font-size items-justified-center is-vertical no-wrap is-fallback wp-block-navigation has-small-font-size\"><li class=\"has-small-font-size wp-block-navigation-item wp-block-navigation-link\"><a class=\"wp-block-navigation-item__content\"  href=\"#\"><span class=\"wp-block-navigation-item__label\">Home</span></a></li><li class=\"has-small-font-size wp-block-navigation-item wp-block-navigation-link\"><a class=\"wp-block-navigation-item__content\"  href=\"#\"><span class=\"wp-block-navigation-item__label\">About</span></a></li><li class=\"has-small-font-size wp-block-navigation-item wp-block-navigation-link\"><a class=\"wp-block-navigation-item__content\"  href=\"#\"><span class=\"wp-block-navigation-item__label\">Contact</span></a></li></ul></nav>\n\n\n<div style=\"height:24px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<p class=\"has-text-align-center\">Follow us</p>\n\n\n\n<div class=\"wp-block-group is-vertical is-content-justification-center is-layout-flex wp-container-174 wp-block-group-is-layout-flex\">\n<p><a href=\"#\">Facebook</a></p>\n\n\n\n<p><a href=\"#\">Instagram</a></p>\n\n\n\n<p><a href=\"#\">Twitter</a></p>\n</div>\n\n\n\n<div style=\"height:24px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n</div>\n</div>\n\n\n\n<div class=\"wp-block-group alignwide is-content-justification-center is-layout-flex wp-container-177 wp-block-group-is-layout-flex\">\n<p class=\"has-text-align-center has-small-font-size\"> Proudly powered by <a rel=\"nofollow\" href=\"https://wordpress.org\">WordPress</a> </p>\n</div>\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:57:\"Text-only footer with background color and three columns.\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:1:{i:0;s:25:\"core/template-part/footer\";}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.2\";s:25:\"wpop_contains_block_types\";s:78:\"core/column,core/columns,core/group,core/navigation,core/paragraph,core/spacer\";}s:14:\"category_slugs\";a:2:{i:0;s:6:\"footer\";i:1;s:9:\"wireframe\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:3225:\"<!-- wp:group {\"align\":\"full\",\"style\":{\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|white\"}}},\"spacing\":{\"padding\":{\"top\":\"var:preset|spacing|60\",\"right\":\"var:preset|spacing|40\",\"bottom\":\"var:preset|spacing|60\",\"left\":\"var:preset|spacing|40\"},\"margin\":{\"top\":\"0\",\"bottom\":\"0\"},\"blockGap\":\"var:preset|spacing|30\"},\"dimensions\":{\"minHeight\":\"40vh\"}},\"backgroundColor\":\"black\",\"textColor\":\"white\",\"className\":\"has-background-color\",\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\",\"justifyContent\":\"stretch\",\"verticalAlignment\":\"center\"}} -->\n<div class=\"wp-block-group alignfull has-background-color has-white-color has-black-background-color has-text-color has-background has-link-color\" style=\"min-height:40vh;margin-top:0;margin-bottom:0;padding-top:var(--wp--preset--spacing--60);padding-right:var(--wp--preset--spacing--40);padding-bottom:var(--wp--preset--spacing--60);padding-left:var(--wp--preset--spacing--40)\"><!-- wp:columns {\"align\":\"wide\",\"fontSize\":\"small\"} -->\n<div class=\"wp-block-columns alignwide has-small-font-size\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"align\":\"center\"} -->\n<p class=\"has-text-align-center\">Location</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\"} -->\n<p class=\"has-text-align-center\">2020 Lomita Blvd,&nbsp;<br>Torrance, CA 90101<br>United States</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:spacer {\"height\":\"24px\"} -->\n<div style=\"height:24px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"align\":\"center\"} -->\n<p class=\"has-text-align-center\">Pages</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:navigation {\"overlayMenu\":\"never\",\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\",\"justifyContent\":\"center\",\"flexWrap\":\"nowrap\"},\"style\":{\"spacing\":{\"blockGap\":\"8px\"}},\"fontSize\":\"small\"} /-->\n\n<!-- wp:spacer {\"height\":\"24px\"} -->\n<div style=\"height:24px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"align\":\"center\"} -->\n<p class=\"has-text-align-center\">Follow us</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"8px\"}},\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-group\"><!-- wp:paragraph -->\n<p><a href=\"#\">Facebook</a></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><a href=\"#\">Instagram</a></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><a href=\"#\">Twitter</a></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group -->\n\n<!-- wp:spacer {\"height\":\"24px\"} -->\n<div style=\"height:24px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:group {\"align\":\"wide\",\"layout\":{\"type\":\"flex\",\"justifyContent\":\"center\",\"flexWrap\":\"wrap\"}} -->\n<div class=\"wp-block-group alignwide\"><!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"small\"} -->\n<p class=\"has-text-align-center has-small-font-size\"> Proudly powered by <a rel=\"nofollow\" href=\"https://wordpress.org\">WordPress</a> </p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group --></div>\n<!-- /wp:group -->\";}i:30;O:8:\"stdClass\":7:{s:2:\"id\";i:229143;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:33:\"Centered footer with social links\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:4120:\"\n<div class=\"wp-block-group alignfull has-contrast-color has-text-color is-vertical is-content-justification-center is-layout-flex wp-container-180 wp-block-group-is-layout-flex\" style=\"min-height:40vh;margin-top:0;margin-bottom:0;padding-top:var(--wp--preset--spacing--60);padding-right:var(--wp--preset--spacing--50);padding-bottom:var(--wp--preset--spacing--60);padding-left:var(--wp--preset--spacing--50)\"><div style=\"margin-bottom:6px;\" class=\"is-default-size aligncenter wp-block-site-logo\"><span class=\"custom-logo-link\"><img decoding=\"async\" src=\"https://s.w.org/images/wmark.png\" class=\"custom-logo\" alt=\"Site logo\"></span></div>\n\n\n<p class=\"has-text-align-center has-medium-font-size\">Proudly powered by <a href=\"https://wordpress.org\">WordPress</a></p>\n\n\n\n<ul class=\"wp-block-social-links has-normal-icon-size is-style-logos-only is-nowrap is-layout-flex wp-container-179 wp-block-social-links-is-layout-flex\"><li class=\"wp-social-link wp-social-link-facebook  wp-block-social-link\"><a href=\"https://#\" class=\"wp-block-social-link-anchor\"><svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" aria-hidden=\"true\" focusable=\"false\"><path d=\"M12 2C6.5 2 2 6.5 2 12c0 5 3.7 9.1 8.4 9.9v-7H7.9V12h2.5V9.8c0-2.5 1.5-3.9 3.8-3.9 1.1 0 2.2.2 2.2.2v2.5h-1.3c-1.2 0-1.6.8-1.6 1.6V12h2.8l-.4 2.9h-2.3v7C18.3 21.1 22 17 22 12c0-5.5-4.5-10-10-10z\"></path></svg><span class=\"wp-block-social-link-label screen-reader-text\">Facebook</span></a></li>\n\n<li class=\"wp-social-link wp-social-link-twitter  wp-block-social-link\"><a href=\"https://#\" class=\"wp-block-social-link-anchor\"><svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" aria-hidden=\"true\" focusable=\"false\"><path d=\"M22.23,5.924c-0.736,0.326-1.527,0.547-2.357,0.646c0.847-0.508,1.498-1.312,1.804-2.27 c-0.793,0.47-1.671,0.812-2.606,0.996C18.324,4.498,17.257,4,16.077,4c-2.266,0-4.103,1.837-4.103,4.103 c0,0.322,0.036,0.635,0.106,0.935C8.67,8.867,5.647,7.234,3.623,4.751C3.27,5.357,3.067,6.062,3.067,6.814 c0,1.424,0.724,2.679,1.825,3.415c-0.673-0.021-1.305-0.206-1.859-0.513c0,0.017,0,0.034,0,0.052c0,1.988,1.414,3.647,3.292,4.023 c-0.344,0.094-0.707,0.144-1.081,0.144c-0.264,0-0.521-0.026-0.772-0.074c0.522,1.63,2.038,2.816,3.833,2.85 c-1.404,1.1-3.174,1.756-5.096,1.756c-0.331,0-0.658-0.019-0.979-0.057c1.816,1.164,3.973,1.843,6.29,1.843 c7.547,0,11.675-6.252,11.675-11.675c0-0.178-0.004-0.355-0.012-0.531C20.985,7.47,21.68,6.747,22.23,5.924z\"></path></svg><span class=\"wp-block-social-link-label screen-reader-text\">Twitter</span></a></li>\n\n<li class=\"wp-social-link wp-social-link-wordpress  wp-block-social-link\"><a href=\"https://#\" class=\"wp-block-social-link-anchor\"><svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" aria-hidden=\"true\" focusable=\"false\"><path d=\"M12.158,12.786L9.46,20.625c0.806,0.237,1.657,0.366,2.54,0.366c1.047,0,2.051-0.181,2.986-0.51 c-0.024-0.038-0.046-0.079-0.065-0.124L12.158,12.786z M3.009,12c0,3.559,2.068,6.634,5.067,8.092L3.788,8.341 C3.289,9.459,3.009,10.696,3.009,12z M18.069,11.546c0-1.112-0.399-1.881-0.741-2.48c-0.456-0.741-0.883-1.368-0.883-2.109 c0-0.826,0.627-1.596,1.51-1.596c0.04,0,0.078,0.005,0.116,0.007C16.472,3.904,14.34,3.009,12,3.009 c-3.141,0-5.904,1.612-7.512,4.052c0.211,0.007,0.41,0.011,0.579,0.011c0.94,0,2.396-0.114,2.396-0.114 C7.947,6.93,8.004,7.642,7.52,7.699c0,0-0.487,0.057-1.029,0.085l3.274,9.739l1.968-5.901l-1.401-3.838 C9.848,7.756,9.389,7.699,9.389,7.699C8.904,7.67,8.961,6.93,9.446,6.958c0,0,1.484,0.114,2.368,0.114 c0.94,0,2.397-0.114,2.397-0.114c0.485-0.028,0.542,0.684,0.057,0.741c0,0-0.488,0.057-1.029,0.085l3.249,9.665l0.897-2.996 C17.841,13.284,18.069,12.316,18.069,11.546z M19.889,7.686c0.039,0.286,0.06,0.593,0.06,0.924c0,0.912-0.171,1.938-0.684,3.22 l-2.746,7.94c2.673-1.558,4.47-4.454,4.47-7.771C20.991,10.436,20.591,8.967,19.889,7.686z M12,22C6.486,22,2,17.514,2,12 C2,6.486,6.486,2,12,2c5.514,0,10,4.486,10,10C22,17.514,17.514,22,12,22z\"></path></svg><span class=\"wp-block-social-link-label screen-reader-text\">WordPress</span></a></li></ul>\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:71:\"Footer with centered site title, tagline, social links and credit line.\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:1:{i:0;s:25:\"core/template-part/footer\";}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.2\";s:25:\"wpop_contains_block_types\";s:75:\"core/group,core/paragraph,core/site-logo,core/social-link,core/social-links\";}s:14:\"category_slugs\";a:2:{i:0;s:6:\"footer\";i:1;s:9:\"wireframe\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:1532:\"<!-- wp:group {\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"right\":\"var:preset|spacing|50\",\"bottom\":\"var:preset|spacing|60\",\"left\":\"var:preset|spacing|50\",\"top\":\"var:preset|spacing|60\"},\"blockGap\":\"var:preset|spacing|40\",\"margin\":{\"top\":\"0\",\"bottom\":\"0\"}},\"dimensions\":{\"minHeight\":\"40vh\"}},\"textColor\":\"contrast\",\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\",\"justifyContent\":\"center\",\"verticalAlignment\":\"center\"}} -->\n<div class=\"wp-block-group alignfull has-contrast-color has-text-color\" style=\"min-height:40vh;margin-top:0;margin-bottom:0;padding-top:var(--wp--preset--spacing--60);padding-right:var(--wp--preset--spacing--50);padding-bottom:var(--wp--preset--spacing--60);padding-left:var(--wp--preset--spacing--50)\"><!-- wp:site-logo {\"align\":\"center\",\"style\":{\"spacing\":{\"margin\":{\"bottom\":\"6px\"}}}} /-->\n\n<!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"medium\"} -->\n<p class=\"has-text-align-center has-medium-font-size\">Proudly powered by <a href=\"https://wordpress.org\">WordPress</a></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:social-links {\"size\":\"has-normal-icon-size\",\"style\":{\"spacing\":{\"blockGap\":{\"top\":\"12px\",\"left\":\"12px\"}}},\"className\":\"is-style-logos-only\",\"layout\":{\"type\":\"flex\",\"flexWrap\":\"nowrap\"}} -->\n<ul class=\"wp-block-social-links has-normal-icon-size is-style-logos-only\"><!-- wp:social-link {\"url\":\"#\",\"service\":\"facebook\"} /-->\n\n<!-- wp:social-link {\"url\":\"#\",\"service\":\"twitter\"} /-->\n\n<!-- wp:social-link {\"url\":\"#\",\"service\":\"wordpress\"} /--></ul>\n<!-- /wp:social-links --></div>\n<!-- /wp:group -->\";}i:31;O:8:\"stdClass\":7:{s:2:\"id\";i:229147;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:52:\"Fullwidth footer with navigation, credit, and social\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:4597:\"\n<div class=\"wp-block-group alignfull has-background-color is-layout-flow wp-block-group-is-layout-flow\" style=\"margin-top:0;margin-bottom:0;padding-top:var(--wp--preset--spacing--50);padding-right:var(--wp--preset--spacing--30);padding-bottom:var(--wp--preset--spacing--50);padding-left:var(--wp--preset--spacing--30)\">\n<div class=\"wp-block-group alignfull has-small-font-size is-content-justification-space-between is-nowrap is-layout-flex wp-container-186 wp-block-group-is-layout-flex\"><h1 class=\"wp-block-site-title has-small-font-size wp-container-content-181\"><a href=\"https://wordpress.org/patterns\" target=\"_self\" rel=\"home\">Block Pattern Directory</a></h1>\n\n\n<div class=\"wp-block-group wp-container-content-182 is-vertical is-content-justification-center is-layout-flex wp-container-183 wp-block-group-is-layout-flex\">\n<p class=\"has-text-align-center has-small-font-size\"> Proudly powered by <a rel=\"nofollow\" href=\"https://wordpress.org\">WordPress</a> </p>\n</div>\n\n\n\n<ul class=\"wp-block-social-links has-small-icon-size is-style-logos-only wp-container-content-184 is-content-justification-right is-nowrap is-layout-flex wp-container-185 wp-block-social-links-is-layout-flex\"><li class=\"wp-social-link wp-social-link-twitter  wp-block-social-link\"><a href=\"https://#\" class=\"wp-block-social-link-anchor\"><svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" aria-hidden=\"true\" focusable=\"false\"><path d=\"M22.23,5.924c-0.736,0.326-1.527,0.547-2.357,0.646c0.847-0.508,1.498-1.312,1.804-2.27 c-0.793,0.47-1.671,0.812-2.606,0.996C18.324,4.498,17.257,4,16.077,4c-2.266,0-4.103,1.837-4.103,4.103 c0,0.322,0.036,0.635,0.106,0.935C8.67,8.867,5.647,7.234,3.623,4.751C3.27,5.357,3.067,6.062,3.067,6.814 c0,1.424,0.724,2.679,1.825,3.415c-0.673-0.021-1.305-0.206-1.859-0.513c0,0.017,0,0.034,0,0.052c0,1.988,1.414,3.647,3.292,4.023 c-0.344,0.094-0.707,0.144-1.081,0.144c-0.264,0-0.521-0.026-0.772-0.074c0.522,1.63,2.038,2.816,3.833,2.85 c-1.404,1.1-3.174,1.756-5.096,1.756c-0.331,0-0.658-0.019-0.979-0.057c1.816,1.164,3.973,1.843,6.29,1.843 c7.547,0,11.675-6.252,11.675-11.675c0-0.178-0.004-0.355-0.012-0.531C20.985,7.47,21.68,6.747,22.23,5.924z\"></path></svg><span class=\"wp-block-social-link-label screen-reader-text\">Twitter</span></a></li>\n\n<li class=\"wp-social-link wp-social-link-instagram  wp-block-social-link\"><a href=\"https://#\" class=\"wp-block-social-link-anchor\"><svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" aria-hidden=\"true\" focusable=\"false\"><path d=\"M12,4.622c2.403,0,2.688,0.009,3.637,0.052c0.877,0.04,1.354,0.187,1.671,0.31c0.42,0.163,0.72,0.358,1.035,0.673 c0.315,0.315,0.51,0.615,0.673,1.035c0.123,0.317,0.27,0.794,0.31,1.671c0.043,0.949,0.052,1.234,0.052,3.637 s-0.009,2.688-0.052,3.637c-0.04,0.877-0.187,1.354-0.31,1.671c-0.163,0.42-0.358,0.72-0.673,1.035 c-0.315,0.315-0.615,0.51-1.035,0.673c-0.317,0.123-0.794,0.27-1.671,0.31c-0.949,0.043-1.233,0.052-3.637,0.052 s-2.688-0.009-3.637-0.052c-0.877-0.04-1.354-0.187-1.671-0.31c-0.42-0.163-0.72-0.358-1.035-0.673 c-0.315-0.315-0.51-0.615-0.673-1.035c-0.123-0.317-0.27-0.794-0.31-1.671C4.631,14.688,4.622,14.403,4.622,12 s0.009-2.688,0.052-3.637c0.04-0.877,0.187-1.354,0.31-1.671c0.163-0.42,0.358-0.72,0.673-1.035 c0.315-0.315,0.615-0.51,1.035-0.673c0.317-0.123,0.794-0.27,1.671-0.31C9.312,4.631,9.597,4.622,12,4.622 M12,3 C9.556,3,9.249,3.01,8.289,3.054C7.331,3.098,6.677,3.25,6.105,3.472C5.513,3.702,5.011,4.01,4.511,4.511 c-0.5,0.5-0.808,1.002-1.038,1.594C3.25,6.677,3.098,7.331,3.054,8.289C3.01,9.249,3,9.556,3,12c0,2.444,0.01,2.751,0.054,3.711 c0.044,0.958,0.196,1.612,0.418,2.185c0.23,0.592,0.538,1.094,1.038,1.594c0.5,0.5,1.002,0.808,1.594,1.038 c0.572,0.222,1.227,0.375,2.185,0.418C9.249,20.99,9.556,21,12,21s2.751-0.01,3.711-0.054c0.958-0.044,1.612-0.196,2.185-0.418 c0.592-0.23,1.094-0.538,1.594-1.038c0.5-0.5,0.808-1.002,1.038-1.594c0.222-0.572,0.375-1.227,0.418-2.185 C20.99,14.751,21,14.444,21,12s-0.01-2.751-0.054-3.711c-0.044-0.958-0.196-1.612-0.418-2.185c-0.23-0.592-0.538-1.094-1.038-1.594 c-0.5-0.5-1.002-0.808-1.594-1.038c-0.572-0.222-1.227-0.375-2.185-0.418C14.751,3.01,14.444,3,12,3L12,3z M12,7.378 c-2.552,0-4.622,2.069-4.622,4.622S9.448,16.622,12,16.622s4.622-2.069,4.622-4.622S14.552,7.378,12,7.378z M12,15 c-1.657,0-3-1.343-3-3s1.343-3,3-3s3,1.343,3,3S13.657,15,12,15z M16.804,6.116c-0.596,0-1.08,0.484-1.08,1.08 s0.484,1.08,1.08,1.08c0.596,0,1.08-0.484,1.08-1.08S17.401,6.116,16.804,6.116z\"></path></svg><span class=\"wp-block-social-link-label screen-reader-text\">Instagram</span></a></li></ul>\n</div>\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:87:\"Footer with site title on the left, credit in the middle and social links on the right.\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:1:{i:0;s:25:\"core/template-part/footer\";}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.1\";s:25:\"wpop_contains_block_types\";s:76:\"core/group,core/paragraph,core/site-title,core/social-link,core/social-links\";}s:14:\"category_slugs\";a:2:{i:0;s:6:\"footer\";i:1;s:9:\"wireframe\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:1869:\"<!-- wp:group {\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"var:preset|spacing|50\",\"right\":\"var:preset|spacing|30\",\"bottom\":\"var:preset|spacing|50\",\"left\":\"var:preset|spacing|30\"},\"margin\":{\"top\":\"0\",\"bottom\":\"0\"}}},\"className\":\"has-background-color\",\"layout\":{\"type\":\"default\"}} -->\n<div class=\"wp-block-group alignfull has-background-color\" style=\"margin-top:0;margin-bottom:0;padding-top:var(--wp--preset--spacing--50);padding-right:var(--wp--preset--spacing--30);padding-bottom:var(--wp--preset--spacing--50);padding-left:var(--wp--preset--spacing--30)\"><!-- wp:group {\"align\":\"full\",\"style\":{\"spacing\":{\"blockGap\":\"0\"}},\"layout\":{\"type\":\"flex\",\"justifyContent\":\"space-between\",\"flexWrap\":\"nowrap\"},\"fontSize\":\"small\"} -->\n<div class=\"wp-block-group alignfull has-small-font-size\"><!-- wp:site-title {\"style\":{\"layout\":{\"selfStretch\":\"fixed\",\"flexSize\":\"25%\"}},\"fontSize\":\"small\"} /-->\n\n<!-- wp:group {\"style\":{\"layout\":{\"selfStretch\":\"fill\",\"flexSize\":null}},\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-group\"><!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"small\"} -->\n<p class=\"has-text-align-center has-small-font-size\"> Proudly powered by <a rel=\"nofollow\" href=\"https://wordpress.org\">WordPress</a> </p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group -->\n\n<!-- wp:social-links {\"size\":\"has-small-icon-size\",\"style\":{\"spacing\":{\"blockGap\":{\"top\":\"0\",\"left\":\"12px\"}},\"layout\":{\"selfStretch\":\"fixed\",\"flexSize\":\"25%\"}},\"className\":\"is-style-logos-only\",\"layout\":{\"type\":\"flex\",\"flexWrap\":\"nowrap\",\"justifyContent\":\"right\"}} -->\n<ul class=\"wp-block-social-links has-small-icon-size is-style-logos-only\"><!-- wp:social-link {\"url\":\"#\",\"service\":\"twitter\"} /-->\n\n<!-- wp:social-link {\"url\":\"#\",\"service\":\"instagram\"} /--></ul>\n<!-- /wp:social-links --></div>\n<!-- /wp:group --></div>\n<!-- /wp:group -->\";}i:32;O:8:\"stdClass\":7:{s:2:\"id\";i:229151;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:19:\"Left-aligned footer\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:2835:\"\n<div class=\"wp-block-group alignfull is-content-justification-space-between is-layout-flex wp-container-196 wp-block-group-is-layout-flex\" style=\"margin-top:0;margin-bottom:0;padding-top:var(--wp--preset--spacing--50);padding-right:var(--wp--preset--spacing--30);padding-bottom:var(--wp--preset--spacing--50);padding-left:var(--wp--preset--spacing--30)\">\n<div class=\"wp-block-group wp-container-content-188 is-vertical is-layout-flex wp-container-189 wp-block-group-is-layout-flex\"><h1 class=\"wp-block-site-title has-medium-font-size\"><a href=\"https://wordpress.org/patterns\" target=\"_self\" rel=\"home\">Block Pattern Directory</a></h1>\n\n\n<p class=\"has-text-align-left\">2020 Lomita Blvd,&nbsp;<br>Torrance, CA 90101<br>United States</p>\n\n\n\n<p class=\"has-text-align-left has-small-font-size\">Proudly powered by <a rel=\"nofollow\" href=\"https://wordpress.org\">WordPress</a> </p>\n\n\n\n<div style=\"height:24px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n</div>\n\n\n\n<div class=\"wp-block-group is-content-justification-right is-layout-flex wp-container-195 wp-block-group-is-layout-flex\">\n<div class=\"wp-block-group is-vertical is-layout-flex wp-container-192 wp-block-group-is-layout-flex\">\n<p class=\"has-text-align-left\">Pages</p>\n\n\n<nav class=\"has-small-font-size items-justified-left is-vertical no-wrap is-fallback wp-block-navigation has-small-font-size is-content-justification-left is-nowrap is-layout-flex wp-container-191 wp-block-navigation-is-layout-flex\" aria-label=\"\"><ul class=\"wp-block-navigation__container has-small-font-size items-justified-left is-vertical no-wrap is-fallback wp-block-navigation has-small-font-size\"><li class=\"has-small-font-size wp-block-navigation-item wp-block-navigation-link\"><a class=\"wp-block-navigation-item__content\"  href=\"#\"><span class=\"wp-block-navigation-item__label\">Home</span></a></li><li class=\"has-small-font-size wp-block-navigation-item wp-block-navigation-link\"><a class=\"wp-block-navigation-item__content\"  href=\"#\"><span class=\"wp-block-navigation-item__label\">About</span></a></li><li class=\"has-small-font-size wp-block-navigation-item wp-block-navigation-link\"><a class=\"wp-block-navigation-item__content\"  href=\"#\"><span class=\"wp-block-navigation-item__label\">Contact</span></a></li></ul></nav>\n\n\n<div style=\"height:24px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n</div>\n\n\n\n<div class=\"wp-block-group is-vertical is-layout-flex wp-container-194 wp-block-group-is-layout-flex\">\n<p class=\"has-text-align-left\">Social</p>\n\n\n\n<div class=\"wp-block-group is-vertical is-content-justification-left is-layout-flex wp-container-193 wp-block-group-is-layout-flex\">\n<p><a href=\"#\">Facebook</a></p>\n\n\n\n<p><a href=\"#\">Instagram</a></p>\n\n\n\n<p><a href=\"#\">Twitter</a></p>\n</div>\n\n\n\n<div style=\"height:24px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n</div>\n</div>\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:44:\"Left-aligned footer with just a credit line.\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:1:{i:0;s:25:\"core/template-part/footer\";}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.1\";s:25:\"wpop_contains_block_types\";s:69:\"core/group,core/navigation,core/paragraph,core/site-title,core/spacer\";}s:14:\"category_slugs\";a:2:{i:0;s:6:\"footer\";i:1;s:9:\"wireframe\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:2939:\"<!-- wp:group {\"align\":\"full\",\"style\":{\"spacing\":{\"margin\":{\"top\":\"0\",\"bottom\":\"0\"},\"padding\":{\"top\":\"var:preset|spacing|50\",\"right\":\"var:preset|spacing|30\",\"bottom\":\"var:preset|spacing|50\",\"left\":\"var:preset|spacing|30\"}}},\"layout\":{\"type\":\"flex\",\"flexWrap\":\"wrap\",\"justifyContent\":\"space-between\",\"verticalAlignment\":\"top\"}} -->\n<div class=\"wp-block-group alignfull\" style=\"margin-top:0;margin-bottom:0;padding-top:var(--wp--preset--spacing--50);padding-right:var(--wp--preset--spacing--30);padding-bottom:var(--wp--preset--spacing--50);padding-left:var(--wp--preset--spacing--30)\"><!-- wp:group {\"style\":{\"layout\":{\"selfStretch\":\"fill\",\"flexSize\":null}},\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\",\"verticalAlignment\":\"top\"}} -->\n<div class=\"wp-block-group\"><!-- wp:site-title {\"fontSize\":\"medium\"} /-->\n\n<!-- wp:paragraph {\"align\":\"left\"} -->\n<p class=\"has-text-align-left\">2020 Lomita Blvd,&nbsp;<br>Torrance, CA 90101<br>United States</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"left\",\"fontSize\":\"small\"} -->\n<p class=\"has-text-align-left has-small-font-size\">Proudly powered by <a rel=\"nofollow\" href=\"https://wordpress.org\">WordPress</a> </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:spacer {\"height\":\"24px\"} -->\n<div style=\"height:24px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"var:preset|spacing|50\"}},\"layout\":{\"type\":\"flex\",\"flexWrap\":\"wrap\",\"justifyContent\":\"right\",\"verticalAlignment\":\"top\"}} -->\n<div class=\"wp-block-group\"><!-- wp:group {\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\"}} -->\n<div class=\"wp-block-group\"><!-- wp:paragraph {\"align\":\"left\"} -->\n<p class=\"has-text-align-left\">Pages</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:navigation {\"overlayMenu\":\"never\",\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\",\"justifyContent\":\"left\",\"flexWrap\":\"nowrap\"},\"style\":{\"spacing\":{\"blockGap\":\"8px\"}},\"fontSize\":\"small\"} /-->\n\n<!-- wp:spacer {\"height\":\"24px\"} -->\n<div style=\"height:24px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\"}} -->\n<div class=\"wp-block-group\"><!-- wp:paragraph {\"align\":\"left\"} -->\n<p class=\"has-text-align-left\">Social</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"8px\"}},\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\",\"justifyContent\":\"left\"}} -->\n<div class=\"wp-block-group\"><!-- wp:paragraph -->\n<p><a href=\"#\">Facebook</a></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><a href=\"#\">Instagram</a></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><a href=\"#\">Twitter</a></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group -->\n\n<!-- wp:spacer {\"height\":\"24px\"} -->\n<div style=\"height:24px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:group --></div>\n<!-- /wp:group --></div>\n<!-- /wp:group -->\";}i:33;O:8:\"stdClass\":7:{s:2:\"id\";i:201;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:32:\"Three columns with offset images\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:1330:\"\n<div class=\"wp-block-columns alignwide is-layout-flex wp-container-200 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\" style=\"flex-basis:25%\">\n<figure class=\"wp-block-image size-large is-style-default\"><img decoding=\"async\" src=\"https://s.w.org/images/core/5.8/architecture-01.jpg\" alt=\"Close-up, abstract view of geometric architecture.\" /></figure>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\" style=\"flex-basis:25%\">\n<div style=\"height:500px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<div style=\"height:150px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" src=\"https://s.w.org/images/core/5.8/architecture-02.jpg\" alt=\"Close-up, angled view of a window on a white building.\" /></figure>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\" style=\"flex-basis:45%\">\n<figure class=\"wp-block-image size-large is-style-default\"><img decoding=\"async\" src=\"https://s.w.org/images/core/5.8/architecture-03.jpg\" alt=\"Close-up of the corner of a white, geometric building with both sharp points and round corners.\" /></figure>\n\n\n\n<div style=\"height:285px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n</div>\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:33:\"Three columns with offset images.\";s:19:\"wpop_viewport_width\";i:1200;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:0:\"\";s:25:\"wpop_contains_block_types\";s:47:\"core/column,core/columns,core/image,core/spacer\";}s:14:\"category_slugs\";a:2:{i:0;s:7:\"gallery\";i:1;s:6:\"images\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:1753:\"<!-- wp:columns {\"align\":\"wide\"} -->\n<div class=\"wp-block-columns alignwide\"><!-- wp:column {\"width\":\"25%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:25%\"><!-- wp:image {\"sizeSlug\":\"large\",\"linkDestination\":\"none\",\"className\":\"is-style-default\"} -->\n<figure class=\"wp-block-image size-large is-style-default\"><img src=\"https://s.w.org/images/core/5.8/architecture-01.jpg\" alt=\"Close-up, abstract view of geometric architecture.\" /></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"width\":\"25%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:25%\"><!-- wp:spacer {\"height\":500} -->\n<div style=\"height:500px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:spacer {\"height\":150} -->\n<div style=\"height:150px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:image {\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://s.w.org/images/core/5.8/architecture-02.jpg\" alt=\"Close-up, angled view of a window on a white building.\" /></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"width\":\"45%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:45%\"><!-- wp:image {\"sizeSlug\":\"large\",\"linkDestination\":\"none\",\"className\":\"is-style-default\"} -->\n<figure class=\"wp-block-image size-large is-style-default\"><img src=\"https://s.w.org/images/core/5.8/architecture-03.jpg\" alt=\"Close-up of the corner of a white, geometric building with both sharp points and round corners.\" /></figure>\n<!-- /wp:image -->\n\n<!-- wp:spacer {\"height\":285} -->\n<div style=\"height:285px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\";}i:34;O:8:\"stdClass\":7:{s:2:\"id\";i:200;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:21:\"Three columns of text\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:1078:\"\n<div class=\"wp-block-columns alignfull has-text-color has-background is-layout-flex wp-container-204 wp-block-columns-is-layout-flex\" style=\"background-color:#ffffff;color:#000000\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<h3 class=\"wp-block-heading\" style=\"font-size:24px;line-height:1.3\"><strong><a href=\"http://wordpress.org\">Virtual Tour ↗</a></strong></h3>\n\n\n\n<p>Get a virtual tour of the museum. Ideal for schools and events.</p>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<h3 class=\"wp-block-heading\" style=\"font-size:24px;line-height:1.3\"><strong><a href=\"https://wordpress.org\">Current Shows ↗</a></strong></h3>\n\n\n\n<p>Stay updated and see our current exhibitions here.</p>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<h3 class=\"wp-block-heading\" style=\"font-size:24px;line-height:1.3\"><strong><a href=\"https://wordpress.org\">Useful Info ↗</a></strong></h3>\n\n\n\n<p>Get to know our opening times, ticket prices and discounts.</p>\n</div>\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:22:\"Three columns of text.\";s:19:\"wpop_viewport_width\";i:1200;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:0:\"\";s:25:\"wpop_contains_block_types\";s:52:\"core/column,core/columns,core/heading,core/paragraph\";}s:14:\"category_slugs\";a:3:{i:0;s:7:\"columns\";i:1;s:8:\"featured\";i:2;s:4:\"text\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:1496:\"<!-- wp:columns {\"align\":\"full\",\"style\":{\"color\":{\"text\":\"#000000\",\"background\":\"#ffffff\"}}} -->\n<div class=\"wp-block-columns alignfull has-text-color has-background\" style=\"background-color:#ffffff;color:#000000\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:heading {\"level\":3,\"style\":{\"typography\":{\"fontSize\":\"24px\",\"lineHeight\":\"1.3\"}}} -->\n<h3 style=\"font-size:24px;line-height:1.3\"><strong><a href=\"http://wordpress.org\">Virtual Tour ↗</a></strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Get a virtual tour of the museum. Ideal for schools and events.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:heading {\"level\":3,\"style\":{\"typography\":{\"fontSize\":\"24px\",\"lineHeight\":\"1.3\"}}} -->\n<h3 style=\"font-size:24px;line-height:1.3\"><strong><a href=\"https://wordpress.org\">Current Shows ↗</a></strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Stay updated and see our current exhibitions here.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:heading {\"level\":3,\"style\":{\"typography\":{\"fontSize\":\"24px\",\"lineHeight\":\"1.3\"}}} -->\n<h3 style=\"font-size:24px;line-height:1.3\"><strong><a href=\"https://wordpress.org\">Useful Info ↗</a></strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Get to know our opening times, ticket prices and discounts.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\";}i:35;O:8:\"stdClass\":7:{s:2:\"id\";i:199;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:34:\"Three columns with images and text\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:3496:\"\n<div class=\"wp-block-group alignfull has-background is-layout-flow wp-block-group-is-layout-flow\" style=\"background-color:#f5eac1;padding-top:6vw;padding-right:6vw;padding-bottom:6vw;padding-left:6vw\">\n<div class=\"wp-block-group is-vertical is-nowrap is-layout-flex wp-container-205 wp-block-group-is-layout-flex\" style=\"padding-right:0;padding-left:0\">\n<h6 class=\"wp-block-heading has-text-color\" id=\"ecosystem\" style=\"color:#000000;font-size:16px\">ECOSYSTEM</h6>\n\n\n\n<p class=\"has-text-color\" style=\"color:#000000;font-size:6vw;font-style:normal;font-weight:700;letter-spacing:0px;line-height:0.9;text-decoration:none;text-transform:none\">Positive growth.</p>\n</div>\n\n\n\n<div style=\"height:1vw\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<div class=\"wp-block-group alignwide is-vertical is-nowrap is-layout-flex wp-container-213 wp-block-group-is-layout-flex\" style=\"padding-top:0;padding-right:0;padding-bottom:0;padding-left:0\">\n<div class=\"wp-block-columns alignwide is-layout-flex wp-container-209 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\" style=\"flex-basis:33.38%\">\n<p class=\"has-text-color\" style=\"color:#000000;font-size:17px\"><em>Nature</em>, in the common sense, refers to essences unchanged by man; space, the air, the river, the leaf.&nbsp;<em>Art</em>&nbsp;is applied to the mixture of his will with the same things, as in a house, a canal, a statue, a picture. </p>\n\n\n\n<p class=\"has-text-color\" style=\"color:#000000;font-size:17px\">But his operations taken together are so insignificant, a little chipping, baking, patching, and washing, that in an impression so grand as that of the world on the human mind, they do not vary the result.</p>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\" style=\"flex-basis:33%\">\n<div style=\"height:2vw\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" src=\"https://s.w.org/images/core/5.8/outside-01.jpg\" alt=\"The sun setting through a dense forest.\" /></figure>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\" style=\"flex-basis:33.62%\">\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" src=\"https://s.w.org/images/core/5.8/outside-02.jpg\" alt=\"Wind turbines standing on a grassy plain, against a blue sky.\" /></figure>\n</div>\n</div>\n\n\n\n<div class=\"wp-block-columns alignwide is-layout-flex wp-container-212 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\" style=\"flex-basis:69%\">\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" src=\"https://s.w.org/images/core/5.8/outside-03.jpg\" alt=\"The sun shining over a ridge leading down into the shore. In the distance, a car drives down a road.\" /></figure>\n</div>\n\n\n\n<div class=\"wp-block-column is-vertically-aligned-center is-layout-flow wp-block-column-is-layout-flow\" style=\"flex-basis:33%\">\n<div style=\"height:2vw\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<p class=\"has-text-color\" style=\"color:#000000;font-size:17px\">Undoubtedly we have no questions to ask which are unanswerable. We must trust the perfection of the creation so far, as to believe that whatever curiosity the order of things has awakened in our minds, the order of things can satisfy. Every man&#8217;s condition is a solution in hieroglyphic to those inquiries he would put.</p>\n</div>\n</div>\n</div>\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:77:\"Three columns with images and text, with vertical spacing for an offset look.\";s:19:\"wpop_viewport_width\";i:1200;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:0:\"\";s:25:\"wpop_contains_block_types\";s:86:\"core/column,core/columns,core/group,core/heading,core/image,core/paragraph,core/spacer\";}s:14:\"category_slugs\";a:5:{i:0;s:7:\"columns\";i:1;s:8:\"featured\";i:2;s:7:\"gallery\";i:3;s:6:\"images\";i:4;s:4:\"text\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:5124:\"<!-- wp:group {\"align\":\"full\",\"style\":{\"color\":{\"background\":\"#f5eac1\"},\"spacing\":{\"padding\":{\"top\":\"6vw\",\"bottom\":\"6vw\",\"left\":\"6vw\",\"right\":\"6vw\"}}},\"layout\":{\"type\":\"default\"}} -->\n<div class=\"wp-block-group alignfull has-background\" style=\"background-color:#f5eac1;padding-top:6vw;padding-right:6vw;padding-bottom:6vw;padding-left:6vw\"><!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"16px\",\"padding\":{\"right\":\"0\",\"left\":\"0\"}}},\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\",\"flexWrap\":\"nowrap\"}} -->\n<div class=\"wp-block-group\" style=\"padding-right:0;padding-left:0\"><!-- wp:heading {\"level\":6,\"style\":{\"color\":{\"text\":\"#000000\"},\"typography\":{\"fontSize\":\"16px\"}},\"anchor\":\"ecosystem\"} -->\n<h6 class=\"wp-block-heading has-text-color\" id=\"ecosystem\" style=\"color:#000000;font-size:16px\">ECOSYSTEM</h6>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"style\":{\"typography\":{\"lineHeight\":\"0.9\",\"fontSize\":\"6vw\",\"fontStyle\":\"normal\",\"fontWeight\":\"700\",\"textTransform\":\"none\",\"textDecoration\":\"none\",\"letterSpacing\":\"0px\"},\"color\":{\"text\":\"#000000\"}}} -->\n<p class=\"has-text-color\" style=\"color:#000000;font-size:6vw;font-style:normal;font-weight:700;letter-spacing:0px;line-height:0.9;text-decoration:none;text-transform:none\">Positive growth.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group -->\n\n<!-- wp:spacer {\"height\":\"1vw\"} -->\n<div style=\"height:1vw\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:group {\"align\":\"wide\",\"style\":{\"spacing\":{\"blockGap\":\"3vw\",\"padding\":{\"top\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"right\":\"0\"}}},\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\",\"flexWrap\":\"nowrap\"}} -->\n<div class=\"wp-block-group alignwide\" style=\"padding-top:0;padding-right:0;padding-bottom:0;padding-left:0\"><!-- wp:columns {\"align\":\"wide\",\"style\":{\"spacing\":{\"blockGap\":{\"top\":\"3vw\",\"left\":\"3vw\"}}}} -->\n<div class=\"wp-block-columns alignwide\"><!-- wp:column {\"width\":\"33.38%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:33.38%\"><!-- wp:paragraph {\"style\":{\"color\":{\"text\":\"#000000\"},\"typography\":{\"fontSize\":\"17px\"}}} -->\n<p class=\"has-text-color\" style=\"color:#000000;font-size:17px\"><em>Nature</em>, in the common sense, refers to essences unchanged by man; space, the air, the river, the leaf.&nbsp;<em>Art</em>&nbsp;is applied to the mixture of his will with the same things, as in a house, a canal, a statue, a picture. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"style\":{\"color\":{\"text\":\"#000000\"},\"typography\":{\"fontSize\":\"17px\"}}} -->\n<p class=\"has-text-color\" style=\"color:#000000;font-size:17px\">But his operations taken together are so insignificant, a little chipping, baking, patching, and washing, that in an impression so grand as that of the world on the human mind, they do not vary the result.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"width\":\"33%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:33%\"><!-- wp:spacer {\"height\":\"2vw\"} -->\n<div style=\"height:2vw\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:image {\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://s.w.org/images/core/5.8/outside-01.jpg\" alt=\"The sun setting through a dense forest.\" /></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"width\":\"33.62%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:33.62%\"><!-- wp:image {\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://s.w.org/images/core/5.8/outside-02.jpg\" alt=\"Wind turbines standing on a grassy plain, against a blue sky.\" /></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:columns {\"align\":\"wide\",\"style\":{\"spacing\":{\"blockGap\":{\"left\":\"3vw\"}}}} -->\n<div class=\"wp-block-columns alignwide\"><!-- wp:column {\"width\":\"69%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:69%\"><!-- wp:image {\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://s.w.org/images/core/5.8/outside-03.jpg\" alt=\"The sun shining over a ridge leading down into the shore. In the distance, a car drives down a road.\" /></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"verticalAlignment\":\"center\",\"width\":\"33%\"} -->\n<div class=\"wp-block-column is-vertically-aligned-center\" style=\"flex-basis:33%\"><!-- wp:spacer {\"height\":\"2vw\"} -->\n<div style=\"height:2vw\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:paragraph {\"style\":{\"color\":{\"text\":\"#000000\"},\"typography\":{\"fontSize\":\"17px\"}}} -->\n<p class=\"has-text-color\" style=\"color:#000000;font-size:17px\">Undoubtedly we have no questions to ask which are unanswerable. We must trust the perfection of the creation so far, as to believe that whatever curiosity the order of things has awakened in our minds, the order of things can satisfy. Every man\'s condition is a solution in hieroglyphic to those inquiries he would put.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:group --></div>\n<!-- /wp:group -->\";}i:36;O:8:\"stdClass\":7:{s:2:\"id\";i:197;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:39:\"Two columns of text with offset heading\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:2240:\"\n<div class=\"wp-block-group alignfull has-background is-layout-flow wp-block-group-is-layout-flow\" style=\"background-color:#f2f0e9\">\n<div style=\"height:70px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<div class=\"wp-block-columns alignwide are-vertically-aligned-center is-layout-flex wp-container-217 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\" style=\"flex-basis:50%\">\n<p class=\"has-text-color\" style=\"color:#000000;font-size:30px;line-height:1.1\"><strong>Oceanic Inspiration</strong></p>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\" style=\"flex-basis:50%\">\n<hr class=\"wp-block-separator has-text-color has-background is-style-wide\" style=\"background-color:#000000;color:#000000\" />\n</div>\n</div>\n\n\n\n<div class=\"wp-block-columns alignwide is-layout-flex wp-container-221 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\"></div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<p class=\"has-text-color has-extra-small-font-size\" style=\"color:#000000\">Winding veils round their heads, the women walked on deck. They were now moving steadily down the river, passing the dark shapes of ships at anchor, and London was a swarm of lights with a pale yellow canopy drooping above it. There were the lights of the great theatres, the lights of the long streets, lights that indicated huge squares of domestic comfort, lights that hung high in air.</p>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<p class=\"has-text-color has-extra-small-font-size\" style=\"color:#000000\">No darkness would ever settle upon those lamps, as no darkness had settled upon them for hundreds of years. It seemed dreadful that the town should blaze for ever in the same spot; dreadful at least to people going away to adventure upon the sea, and beholding it as a circumscribed mound, eternally burnt, eternally scarred. From the deck of the ship the great city appeared a crouched and cowardly figure, a sedentary miser.</p>\n</div>\n</div>\n\n\n\n<div style=\"height:40px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:43:\"Two columns of text with an offset heading.\";s:19:\"wpop_viewport_width\";i:1200;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:0:\"\";s:25:\"wpop_contains_block_types\";s:77:\"core/column,core/columns,core/group,core/paragraph,core/separator,core/spacer\";}s:14:\"category_slugs\";a:2:{i:0;s:7:\"columns\";i:1;s:4:\"text\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:2837:\"<!-- wp:group {\"align\":\"full\",\"style\":{\"color\":{\"background\":\"#f2f0e9\"}}} -->\n<div class=\"wp-block-group alignfull has-background\" style=\"background-color:#f2f0e9\"><!-- wp:spacer {\"height\":70} -->\n<div style=\"height:70px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:columns {\"verticalAlignment\":\"center\",\"align\":\"wide\"} -->\n<div class=\"wp-block-columns alignwide are-vertically-aligned-center\"><!-- wp:column {\"width\":\"50%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:50%\"><!-- wp:paragraph {\"style\":{\"typography\":{\"lineHeight\":\"1.1\",\"fontSize\":\"30px\"},\"color\":{\"text\":\"#000000\"}}} -->\n<p class=\"has-text-color\" style=\"color:#000000;font-size:30px;line-height:1.1\"><strong>Oceanic Inspiration</strong></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"width\":\"50%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:50%\"><!-- wp:separator {\"customColor\":\"#000000\",\"className\":\"is-style-wide\"} -->\n<hr class=\"wp-block-separator has-text-color has-background is-style-wide\" style=\"background-color:#000000;color:#000000\" />\n<!-- /wp:separator --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:columns {\"align\":\"wide\"} -->\n<div class=\"wp-block-columns alignwide\"><!-- wp:column -->\n<div class=\"wp-block-column\"></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"style\":{\"color\":{\"text\":\"#000000\"}},\"fontSize\":\"extra-small\"} -->\n<p class=\"has-text-color has-extra-small-font-size\" style=\"color:#000000\">Winding veils round their heads, the women walked on deck. They were now moving steadily down the river, passing the dark shapes of ships at anchor, and London was a swarm of lights with a pale yellow canopy drooping above it. There were the lights of the great theatres, the lights of the long streets, lights that indicated huge squares of domestic comfort, lights that hung high in air.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"style\":{\"color\":{\"text\":\"#000000\"}},\"fontSize\":\"extra-small\"} -->\n<p class=\"has-text-color has-extra-small-font-size\" style=\"color:#000000\">No darkness would ever settle upon those lamps, as no darkness had settled upon them for hundreds of years. It seemed dreadful that the town should blaze for ever in the same spot; dreadful at least to people going away to adventure upon the sea, and beholding it as a circumscribed mound, eternally burnt, eternally scarred. From the deck of the ship the great city appeared a crouched and cowardly figure, a sedentary miser.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:spacer {\"height\":40} -->\n<div style=\"height:40px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:group -->\";}i:37;O:8:\"stdClass\":7:{s:2:\"id\";i:196;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:41:\"Media and text in a full height container\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:1445:\"\n<div class=\"wp-block-cover alignfull is-light\" style=\"min-height:100vh\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-100 has-background-dim\" style=\"background-color:#ffffff\"></span><div class=\"wp-block-cover__inner-container is-layout-flow wp-block-cover-is-layout-flow\">\n<div class=\"wp-block-media-text alignwide is-stacked-on-mobile is-vertically-aligned-center is-image-fill\" style=\"grid-template-columns:56% auto\"><figure class=\"wp-block-media-text__media\" style=\"background-image:url(https://s.w.org/images/core/5.8/soil.jpg);background-position:50% 50%\"><img decoding=\"async\" src=\"https://s.w.org/images/core/5.8/soil.jpg\" alt=\"Close-up of dried, cracked earth.\" /></figure><div class=\"wp-block-media-text__content\">\n<h2 class=\"wp-block-heading has-text-color\" style=\"color:#000000;font-size:32px\"><strong>What&#8217;s the problem?</strong></h2>\n\n\n\n<p class=\"has-text-color\" style=\"color:#000000;font-size:17px\">Trees are more important today than ever before. More than 10,000 products are reportedly made from trees. Through chemistry, the humble woodpile is yielding chemicals, plastics and fabrics that were beyond comprehension when an axe first felled a Texas tree.</p>\n\n\n\n<div class=\"wp-block-buttons is-layout-flex wp-block-buttons-is-layout-flex\">\n<div class=\"wp-block-button is-style-fill\"><a class=\"wp-block-button__link wp-element-button\">Learn more</a></div>\n</div>\n</div></div>\n</div></div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:77:\"Media and text block with image to the left and text and button to the right.\";s:19:\"wpop_viewport_width\";i:1200;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:0:\"\";s:25:\"wpop_contains_block_types\";s:79:\"core/button,core/buttons,core/cover,core/heading,core/media-text,core/paragraph\";}s:14:\"category_slugs\";a:1:{i:0;s:6:\"banner\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:2015:\"<!-- wp:cover {\"customOverlayColor\":\"#ffffff\",\"minHeight\":100,\"minHeightUnit\":\"vh\",\"contentPosition\":\"center center\",\"isDark\":false,\"align\":\"full\"} -->\n<div class=\"wp-block-cover alignfull is-light\" style=\"min-height:100vh\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-100 has-background-dim\" style=\"background-color:#ffffff\"></span><div class=\"wp-block-cover__inner-container\"><!-- wp:media-text {\"mediaLink\":\"https://s.w.org/images/core/5.8/soil.jpg\",\"mediaType\":\"image\",\"mediaWidth\":56,\"verticalAlignment\":\"center\",\"imageFill\":true} -->\n<div class=\"wp-block-media-text alignwide is-stacked-on-mobile is-vertically-aligned-center is-image-fill\" style=\"grid-template-columns:56% auto\"><figure class=\"wp-block-media-text__media\" style=\"background-image:url(https://s.w.org/images/core/5.8/soil.jpg);background-position:50% 50%\"><img src=\"https://s.w.org/images/core/5.8/soil.jpg\" alt=\"Close-up of dried, cracked earth.\" /></figure><div class=\"wp-block-media-text__content\"><!-- wp:heading {\"style\":{\"typography\":{\"fontSize\":\"32px\"},\"color\":{\"text\":\"#000000\"}}} -->\n<h2 class=\"wp-block-heading has-text-color\" style=\"color:#000000;font-size:32px\"><strong>What\'s the problem?</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"style\":{\"typography\":{\"fontSize\":\"17px\"},\"color\":{\"text\":\"#000000\"}}} -->\n<p class=\"has-text-color\" style=\"color:#000000;font-size:17px\">Trees are more important today than ever before. More than 10,000 products are reportedly made from trees. Through chemistry, the humble woodpile is yielding chemicals, plastics and fabrics that were beyond comprehension when an axe first felled a Texas tree.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:buttons -->\n<div class=\"wp-block-buttons\"><!-- wp:button {\"className\":\"is-style-fill\"} -->\n<div class=\"wp-block-button is-style-fill\"><a class=\"wp-block-button__link wp-element-button\">Learn more</a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons --></div></div>\n<!-- /wp:media-text --></div></div>\n<!-- /wp:cover -->\";}i:38;O:8:\"stdClass\":7:{s:2:\"id\";i:195;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:38:\"Media and text with image on the right\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:719:\"\n<div class=\"wp-block-media-text alignfull has-media-on-the-right is-stacked-on-mobile is-vertically-aligned-center is-style-default\" style=\"grid-template-columns:auto 56%\"><div class=\"wp-block-media-text__content\">\n<h2 class=\"wp-block-heading has-text-color\" style=\"color:#000000\"><strong>Shore with Blue Sea</strong></h2>\n\n\n\n<p class=\"has-text-color\" style=\"color:#636363;font-size:17px;line-height:1.1\">Eleanor Harris&nbsp;(American, 1901-1942)</p>\n</div><figure class=\"wp-block-media-text__media\"><img decoding=\"async\" src=\"https://s.w.org/images/core/5.8/art-02.jpg\" alt=\"A green and brown rural landscape leading into a bright blue ocean and slightly cloudy sky, done in oil paints.\" /></figure></div>\n\n\n\n<p></p>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:66:\"Media and text block with image to the right and text to the left.\";s:19:\"wpop_viewport_width\";i:1200;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:0:\"\";s:25:\"wpop_contains_block_types\";s:43:\"core/heading,core/media-text,core/paragraph\";}s:14:\"category_slugs\";a:1:{i:0;s:6:\"banner\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:1155:\"<!-- wp:media-text {\"align\":\"full\",\"mediaPosition\":\"right\",\"mediaLink\":\"#\",\"mediaType\":\"image\",\"mediaWidth\":56,\"verticalAlignment\":\"center\",\"className\":\"is-style-default\"} -->\n<div class=\"wp-block-media-text alignfull has-media-on-the-right is-stacked-on-mobile is-vertically-aligned-center is-style-default\" style=\"grid-template-columns:auto 56%\"><div class=\"wp-block-media-text__content\"><!-- wp:heading {\"style\":{\"color\":{\"text\":\"#000000\"}}} -->\n<h2 class=\"wp-block-heading has-text-color\" style=\"color:#000000\"><strong>Shore with Blue Sea</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"style\":{\"typography\":{\"lineHeight\":\"1.1\",\"fontSize\":\"17px\"},\"color\":{\"text\":\"#636363\"}}} -->\n<p class=\"has-text-color\" style=\"color:#636363;font-size:17px;line-height:1.1\">Eleanor Harris&nbsp;(American, 1901-1942)</p>\n<!-- /wp:paragraph --></div><figure class=\"wp-block-media-text__media\"><img src=\"https://s.w.org/images/core/5.8/art-02.jpg\" alt=\"A green and brown rural landscape leading into a bright blue ocean and slightly cloudy sky, done in oil paints.\" /></figure></div>\n<!-- /wp:media-text -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\";}i:39;O:8:\"stdClass\":7:{s:2:\"id\";i:192;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:37:\"Media and text with image on the left\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:554:\"\n<div class=\"wp-block-media-text alignfull is-stacked-on-mobile is-vertically-aligned-center\"><figure class=\"wp-block-media-text__media\"><img decoding=\"async\" src=\"https://s.w.org/images/core/5.8/architecture-04.jpg\" alt=\"Close-up, abstract view of architecture.\" /></figure><div class=\"wp-block-media-text__content\">\n<h3 class=\"wp-block-heading has-text-align-center has-text-color\" style=\"color:#000000\"><strong>Open Spaces</strong></h3>\n\n\n\n<p class=\"has-text-align-center has-extra-small-font-size\"><a href=\"#\">See case study ↗</a></p>\n</div></div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:66:\"Media and text block with image to the left and text to the right.\";s:19:\"wpop_viewport_width\";i:1200;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:0:\"\";s:25:\"wpop_contains_block_types\";s:43:\"core/heading,core/media-text,core/paragraph\";}s:14:\"category_slugs\";a:2:{i:0;s:6:\"banner\";i:1;s:8:\"featured\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:844:\"<!-- wp:media-text {\"align\":\"full\",\"mediaType\":\"image\",\"verticalAlignment\":\"center\"} -->\n<div class=\"wp-block-media-text alignfull is-stacked-on-mobile is-vertically-aligned-center\"><figure class=\"wp-block-media-text__media\"><img src=\"https://s.w.org/images/core/5.8/architecture-04.jpg\" alt=\"Close-up, abstract view of architecture.\" /></figure><div class=\"wp-block-media-text__content\"><!-- wp:heading {\"textAlign\":\"center\",\"level\":3,\"style\":{\"color\":{\"text\":\"#000000\"}}} -->\n<h3 class=\"wp-block-heading has-text-align-center has-text-color\" style=\"color:#000000\"><strong>Open Spaces</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"extra-small\"} -->\n<p class=\"has-text-align-center has-extra-small-font-size\"><a href=\"#\">See case study ↗</a></p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:media-text -->\";}i:40;O:8:\"stdClass\":7:{s:2:\"id\";i:186;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:35:\"Large header with text and a button\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:1508:\"\n<div class=\"wp-block-cover alignfull has-parallax\" style=\"min-height:100vh\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-40 has-background-dim\" style=\"background-color:#000000\"></span><div role=\"img\" class=\"wp-block-cover__image-background has-parallax\" style=\"background-position:50% 50%;background-image:url(https://s.w.org/images/core/5.8/art-01.jpg)\"></div><div class=\"wp-block-cover__inner-container is-layout-flow wp-block-cover-is-layout-flow\">\n<h2 class=\"wp-block-heading alignwide has-white-color has-text-color\" style=\"font-size:48px;line-height:1.2\"><strong><em>Overseas:</em></strong><br><strong><em>1500 — 1960</em></strong></h2>\n\n\n\n<div class=\"wp-block-columns alignwide is-layout-flex wp-container-228 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\" style=\"flex-basis:60%\">\n<p class=\"has-text-color\" style=\"color:#ffffff\">An exhibition about the different representations of the ocean throughout time, between the sixteenth and the twentieth century. Taking place in our Open Room in <em>Floor 2</em>.</p>\n\n\n\n<div class=\"wp-block-buttons is-layout-flex wp-block-buttons-is-layout-flex\">\n<div class=\"wp-block-button is-style-outline\"><a class=\"wp-block-button__link has-text-color has-background wp-element-button\" style=\"color:#ffffff;background-color:#000000\">Visit</a></div>\n</div>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\"></div>\n</div>\n</div></div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:62:\"Large header with background image and text and button on top.\";s:19:\"wpop_viewport_width\";i:1200;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:0:\"\";s:25:\"wpop_contains_block_types\";s:88:\"core/button,core/buttons,core/column,core/columns,core/cover,core/heading,core/paragraph\";}s:14:\"category_slugs\";a:1:{i:0;s:6:\"banner\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:2053:\"<!-- wp:cover {\"url\":\"https://s.w.org/images/core/5.8/art-01.jpg\",\"hasParallax\":true,\"dimRatio\":40,\"customOverlayColor\":\"#000000\",\"minHeight\":100,\"minHeightUnit\":\"vh\",\"contentPosition\":\"center center\",\"align\":\"full\"} -->\n<div class=\"wp-block-cover alignfull has-parallax\" style=\"min-height:100vh\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-40 has-background-dim\" style=\"background-color:#000000\"></span><div role=\"img\" class=\"wp-block-cover__image-background has-parallax\" style=\"background-position:50% 50%;background-image:url(https://s.w.org/images/core/5.8/art-01.jpg)\"></div><div class=\"wp-block-cover__inner-container\"><!-- wp:heading {\"style\":{\"typography\":{\"fontSize\":\"48px\",\"lineHeight\":\"1.2\"}},\"className\":\"alignwide has-white-color has-text-color\"} -->\n<h2 class=\"wp-block-heading alignwide has-white-color has-text-color\" style=\"font-size:48px;line-height:1.2\"><strong><em>Overseas:</em></strong><br><strong><em>1500 — 1960</em></strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:columns {\"align\":\"wide\"} -->\n<div class=\"wp-block-columns alignwide\"><!-- wp:column {\"width\":\"60%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:60%\"><!-- wp:paragraph {\"style\":{\"color\":{\"text\":\"#ffffff\"}}} -->\n<p class=\"has-text-color\" style=\"color:#ffffff\">An exhibition about the different representations of the ocean throughout time, between the sixteenth and the twentieth century. Taking place in our Open Room in <em>Floor 2</em>.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:buttons -->\n<div class=\"wp-block-buttons\"><!-- wp:button {\"style\":{\"color\":{\"text\":\"#ffffff\",\"background\":\"#000000\"}},\"className\":\"is-style-outline\"} -->\n<div class=\"wp-block-button is-style-outline\"><a class=\"wp-block-button__link has-text-color has-background wp-element-button\" style=\"color:#ffffff;background-color:#000000\">Visit</a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div></div>\n<!-- /wp:cover -->\";}i:41;O:8:\"stdClass\":7:{s:2:\"id\";i:185;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:35:\"Large header with left-aligned text\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:1321:\"\n<div class=\"wp-block-cover alignfull\" style=\"min-height:800px\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-60 has-background-dim\"></span><img decoding=\"async\" class=\"wp-block-cover__image-background\" alt=\"\" src=\"https://s.w.org/images/core/5.8/forest.jpg\" data-object-fit=\"cover\" /><div class=\"wp-block-cover__inner-container is-layout-flow wp-block-cover-is-layout-flow\">\n<h2 class=\"wp-block-heading alignwide has-text-color\" style=\"color:#ffe074;font-size:64px\">Forest.</h2>\n\n\n\n<div class=\"wp-block-columns alignwide is-layout-flex wp-container-232 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\" style=\"flex-basis:55%\">\n<div style=\"height:330px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<p class=\"has-text-color\" style=\"color:#ffe074;font-size:12px;line-height:1.3\"><em>Even a child knows how valuable the forest is. The fresh, breathtaking smell of trees. Echoing birds flying above that dense magnitude. A stable climate, a sustainable diverse life and a source of culture. Yet, forests and other ecosystems hang in the balance, threatened to become croplands, pasture, and plantations.</em></p>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\"></div>\n</div>\n</div></div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:29:\"Cover image with quote on top\";s:19:\"wpop_viewport_width\";i:1200;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:0:\"\";s:25:\"wpop_contains_block_types\";s:75:\"core/column,core/columns,core/cover,core/heading,core/paragraph,core/spacer\";}s:14:\"category_slugs\";a:2:{i:0;s:6:\"banner\";i:1;s:8:\"featured\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:1698:\"<!-- wp:cover {\"url\":\"https://s.w.org/images/core/5.8/forest.jpg\",\"dimRatio\":60,\"minHeight\":800,\"align\":\"full\"} -->\n<div class=\"wp-block-cover alignfull\" style=\"min-height:800px\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-60 has-background-dim\"></span><img class=\"wp-block-cover__image-background\" alt=\"\" src=\"https://s.w.org/images/core/5.8/forest.jpg\" data-object-fit=\"cover\" /><div class=\"wp-block-cover__inner-container\"><!-- wp:heading {\"align\":\"wide\",\"style\":{\"color\":{\"text\":\"#ffe074\"},\"typography\":{\"fontSize\":\"64px\"}}} -->\n<h2 class=\"wp-block-heading alignwide has-text-color\" style=\"color:#ffe074;font-size:64px\">Forest.</h2>\n<!-- /wp:heading -->\n\n<!-- wp:columns {\"align\":\"wide\"} -->\n<div class=\"wp-block-columns alignwide\"><!-- wp:column {\"width\":\"55%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:55%\"><!-- wp:spacer {\"height\":\"330px\"} -->\n<div style=\"height:330px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:paragraph {\"style\":{\"color\":{\"text\":\"#ffe074\"},\"typography\":{\"lineHeight\":\"1.3\",\"fontSize\":\"12px\"}}} -->\n<p class=\"has-text-color\" style=\"color:#ffe074;font-size:12px;line-height:1.3\"><em>Even a child knows how valuable the forest is. The fresh, breathtaking smell of trees. Echoing birds flying above that dense magnitude. A stable climate, a sustainable diverse life and a source of culture. Yet, forests and other ecosystems hang in the balance, threatened to become croplands, pasture, and plantations.</em></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div></div>\n<!-- /wp:cover -->\";}i:42;O:8:\"stdClass\":7:{s:2:\"id\";i:184;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:7:\"Heading\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:526:\"\n<h2 class=\"alignwide wp-block-heading\" id=\"we-re-a-studio-in-berlin-with-an-international-practice-in-architecture-urban-planning-and-interior-design-we-believe-in-sharing-knowledge-and-promoting-dialogue-to-increase-the-creative-potential-of-collaboration\" style=\"font-size:48px;line-height:1.1\">We&#8217;re a studio in Berlin with an international practice in architecture, urban planning and interior design. We believe in sharing knowledge and promoting dialogue to increase the creative potential of collaboration.</h2>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:17:\"large text, title\";s:16:\"wpop_description\";s:12:\"Heading text\";s:19:\"wpop_viewport_width\";i:1200;s:16:\"wpop_block_types\";a:1:{i:0;s:12:\"core/heading\";}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:0:\"\";s:25:\"wpop_contains_block_types\";s:12:\"core/heading\";}s:14:\"category_slugs\";a:2:{i:0;s:8:\"featured\";i:1;s:4:\"text\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:621:\"<!-- wp:heading {\"align\":\"wide\",\"style\":{\"typography\":{\"fontSize\":\"48px\",\"lineHeight\":\"1.1\"}}} -->\n<h2 class=\"alignwide\" id=\"we-re-a-studio-in-berlin-with-an-international-practice-in-architecture-urban-planning-and-interior-design-we-believe-in-sharing-knowledge-and-promoting-dialogue-to-increase-the-creative-potential-of-collaboration\" style=\"font-size:48px;line-height:1.1\">We\'re a studio in Berlin with an international practice in architecture, urban planning and interior design. We believe in sharing knowledge and promoting dialogue to increase the creative potential of collaboration.</h2>\n<!-- /wp:heading -->\";}i:43;O:8:\"stdClass\":7:{s:2:\"id\";i:27;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:5:\"Quote\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:688:\"\n<hr class=\"wp-block-separator has-css-opacity is-style-default\" />\n\n\n\n<figure class=\"wp-block-image aligncenter size-large is-resized is-style-rounded\"><img decoding=\"async\" loading=\"lazy\" src=\"https://s.w.org/images/core/5.8/portrait.jpg\" alt=\"A side profile of a woman in a russet-colored turtleneck and white bag. She looks up with her eyes closed.\" width=\"150\" height=\"150\" /></figure>\n\n\n\n<blockquote class=\"wp-block-quote has-text-align-center is-style-large\">\n<p>&#8220;Contributing makes me feel like I&#8217;m being useful to the planet.&#8221;</p>\n<cite>— Anna Wong, <em>Volunteer</em></cite></blockquote>\n\n\n\n<hr class=\"wp-block-separator has-css-opacity is-style-default\" />\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:0:\"\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:1:{i:0;s:10:\"core/quote\";}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:0:\"\";s:25:\"wpop_contains_block_types\";s:51:\"core/image,core/paragraph,core/quote,core/separator\";}s:14:\"category_slugs\";a:2:{i:0;s:12:\"testimonials\";i:1;s:4:\"text\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:1102:\"<!-- wp:separator {\"opacity\":\"css\",\"className\":\"is-style-default\"} -->\n<hr class=\"wp-block-separator has-css-opacity is-style-default\" />\n<!-- /wp:separator -->\n\n<!-- wp:image {\"align\":\"center\",\"width\":150,\"height\":150,\"sizeSlug\":\"large\",\"linkDestination\":\"none\",\"className\":\"is-style-rounded\"} -->\n<figure class=\"wp-block-image aligncenter size-large is-resized is-style-rounded\"><img src=\"https://s.w.org/images/core/5.8/portrait.jpg\" alt=\"A side profile of a woman in a russet-colored turtleneck and white bag. She looks up with her eyes closed.\" width=\"150\" height=\"150\" /></figure>\n<!-- /wp:image -->\n\n<!-- wp:quote {\"align\":\"center\",\"className\":\"is-style-large\"} -->\n<blockquote class=\"wp-block-quote has-text-align-center is-style-large\"><!-- wp:paragraph -->\n<p>\"Contributing makes me feel like I\'m being useful to the planet.\"</p>\n<!-- /wp:paragraph --><cite>— Anna Wong, <em>Volunteer</em></cite></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:separator {\"opacity\":\"css\",\"className\":\"is-style-default\"} -->\n<hr class=\"wp-block-separator has-css-opacity is-style-default\" />\n<!-- /wp:separator -->\";}i:44;O:8:\"stdClass\":7:{s:2:\"id\";i:29;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:29:\"Two columns of text and title\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:1518:\"\n<h2 class=\"wp-block-heading\" style=\"font-size:38px;line-height:1.4\"><strong>The voyage had begun, and had begun happily with a soft blue sky, and a calm sea.</strong></h2>\n\n\n\n<div class=\"wp-block-columns is-layout-flex wp-container-236 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<p style=\"font-size:18px\">They followed her on to the deck. All the smoke and the houses had disappeared, and the ship was out in a wide space of sea very fresh and clear though pale in the early light. They had left London sitting on its mud. A very thin line of shadow tapered on the horizon, scarcely thick enough to stand the burden of Paris, which nevertheless rested upon it. They were free of roads, free of mankind, and the same exhilaration at their freedom ran through them all.</p>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<p style=\"font-size:18px\">The ship was making her way steadily through small waves which slapped her and then fizzled like effervescing water, leaving a little border of bubbles and foam on either side. The colourless October sky above was thinly clouded as if by the trail of wood-fire smoke, and the air was wonderfully salt and brisk. Indeed it was too cold to stand still. Mrs. Ambrose drew her arm within her husband&#8217;s, and as they moved off it could be seen from the way in which her sloping cheek turned up to his that she had something private to communicate.</p>\n</div>\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:47:\"Two columns of text preceded by a long heading.\";s:19:\"wpop_viewport_width\";i:1200;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:0:\"\";s:25:\"wpop_contains_block_types\";s:52:\"core/column,core/columns,core/heading,core/paragraph\";}s:14:\"category_slugs\";a:2:{i:0;s:7:\"columns\";i:1;s:4:\"text\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:1711:\"<!-- wp:heading {\"style\":{\"typography\":{\"fontSize\":38,\"lineHeight\":\"1.4\"}}} -->\n<h2 style=\"font-size:38px;line-height:1.4\"><strong>The voyage had begun, and had begun happily with a soft blue sky, and a calm sea.</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"style\":{\"typography\":{\"fontSize\":18}}} -->\n<p style=\"font-size:18px\">They followed her on to the deck. All the smoke and the houses had disappeared, and the ship was out in a wide space of sea very fresh and clear though pale in the early light. They had left London sitting on its mud. A very thin line of shadow tapered on the horizon, scarcely thick enough to stand the burden of Paris, which nevertheless rested upon it. They were free of roads, free of mankind, and the same exhilaration at their freedom ran through them all.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"style\":{\"typography\":{\"fontSize\":18}}} -->\n<p style=\"font-size:18px\">The ship was making her way steadily through small waves which slapped her and then fizzled like effervescing water, leaving a little border of bubbles and foam on either side. The colourless October sky above was thinly clouded as if by the trail of wood-fire smoke, and the air was wonderfully salt and brisk. Indeed it was too cold to stand still. Mrs. Ambrose drew her arm within her husband\'s, and as they moved off it could be seen from the way in which her sloping cheek turned up to his that she had something private to communicate.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\";}i:45;O:8:\"stdClass\":7:{s:2:\"id\";i:19;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:23:\"Two images side by side\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:572:\"\n<figure class=\"wp-block-gallery alignwide has-nested-images columns-default is-cropped wp-block-gallery-237 is-layout-flex wp-block-gallery-is-layout-flex\">\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" src=\"https://s.w.org/images/core/5.8/nature-above-01.jpg\" alt=\"An aerial view of waves crashing against a shore.\" /></figure>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" src=\"https://s.w.org/images/core/5.8/nature-above-02.jpg\" alt=\"An aerial view of a field. A road runs through the upper right corner.\" /></figure>\n</figure>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:41:\"An image gallery with two example images.\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:0:\"\";s:25:\"wpop_contains_block_types\";s:23:\"core/gallery,core/image\";}s:14:\"category_slugs\";a:1:{i:0;s:7:\"gallery\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:704:\"<!-- wp:gallery {\"linkTo\":\"none\",\"align\":\"wide\"} -->\n<figure class=\"wp-block-gallery alignwide has-nested-images columns-default is-cropped\"><!-- wp:image {\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://s.w.org/images/core/5.8/nature-above-01.jpg\" alt=\"An aerial view of waves crashing against a shore.\" /></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://s.w.org/images/core/5.8/nature-above-02.jpg\" alt=\"An aerial view of a field. A road runs through the upper right corner.\" /></figure>\n<!-- /wp:image --></figure>\n<!-- /wp:gallery -->\";}}','no'),(265,'_site_transient_timeout_wp_remote_block_patterns_8b4fc2c6224785bc57d976c11baeaeb5','1693980741','no'),(266,'_site_transient_wp_remote_block_patterns_8b4fc2c6224785bc57d976c11baeaeb5','a:14:{i:0;O:8:\"stdClass\":7:{s:2:\"id\";i:207567;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:11:\"Link in Bio\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:6630:\"\n<div class=\"wp-block-group has-white-background-color has-background is-layout-flow wp-block-group-is-layout-flow\" style=\"padding-top:var(--wp--preset--spacing--80);padding-right:0;padding-bottom:var(--wp--preset--spacing--80);padding-left:0\"><h1 style=\"font-style:normal;font-weight:700;\" class=\"has-text-align-center wp-block-site-title has-medium-font-size\"><a href=\"https://wordpress.org/patterns\" target=\"_self\" rel=\"home\">Block Pattern Directory</a></h1>\n\n<p class=\"has-text-align-center wp-block-site-tagline\">Beautifully designed patterns ready to go with a simple copy/paste</p>\n\n\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<div class=\"wp-block-buttons is-content-justification-center is-layout-flex wp-container-1 wp-block-buttons-is-layout-flex\">\n<div class=\"wp-block-button has-custom-width wp-block-button__width-100\"><a class=\"wp-block-button__link wp-element-button\">Watch my latest videos</a></div>\n\n\n\n<div class=\"wp-block-button has-custom-width wp-block-button__width-100\"><a class=\"wp-block-button__link wp-element-button\">Buy merch</a></div>\n\n\n\n<div class=\"wp-block-button has-custom-width wp-block-button__width-100\"><a class=\"wp-block-button__link wp-element-button\">Support me on Patreon</a></div>\n\n\n\n<div class=\"wp-block-button has-custom-width wp-block-button__width-100 is-style-fill\"><a class=\"wp-block-button__link wp-element-button\">Get tickets for my show</a></div>\n</div>\n\n\n\n<ul class=\"wp-block-social-links has-normal-icon-size has-icon-color has-icon-background-color is-content-justification-center is-layout-flex wp-container-2 wp-block-social-links-is-layout-flex\" style=\"padding-top:var(--wp--preset--spacing--60);padding-bottom:var(--wp--preset--spacing--60)\"><li style=\"color: #000000; background-color: #ffffff; \" class=\"wp-social-link wp-social-link-instagram has-black-color has-white-background-color wp-block-social-link\"><a href=\"https://wordpress.org/patterns/\" class=\"wp-block-social-link-anchor\"><svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" aria-hidden=\"true\" focusable=\"false\"><path d=\"M12,4.622c2.403,0,2.688,0.009,3.637,0.052c0.877,0.04,1.354,0.187,1.671,0.31c0.42,0.163,0.72,0.358,1.035,0.673 c0.315,0.315,0.51,0.615,0.673,1.035c0.123,0.317,0.27,0.794,0.31,1.671c0.043,0.949,0.052,1.234,0.052,3.637 s-0.009,2.688-0.052,3.637c-0.04,0.877-0.187,1.354-0.31,1.671c-0.163,0.42-0.358,0.72-0.673,1.035 c-0.315,0.315-0.615,0.51-1.035,0.673c-0.317,0.123-0.794,0.27-1.671,0.31c-0.949,0.043-1.233,0.052-3.637,0.052 s-2.688-0.009-3.637-0.052c-0.877-0.04-1.354-0.187-1.671-0.31c-0.42-0.163-0.72-0.358-1.035-0.673 c-0.315-0.315-0.51-0.615-0.673-1.035c-0.123-0.317-0.27-0.794-0.31-1.671C4.631,14.688,4.622,14.403,4.622,12 s0.009-2.688,0.052-3.637c0.04-0.877,0.187-1.354,0.31-1.671c0.163-0.42,0.358-0.72,0.673-1.035 c0.315-0.315,0.615-0.51,1.035-0.673c0.317-0.123,0.794-0.27,1.671-0.31C9.312,4.631,9.597,4.622,12,4.622 M12,3 C9.556,3,9.249,3.01,8.289,3.054C7.331,3.098,6.677,3.25,6.105,3.472C5.513,3.702,5.011,4.01,4.511,4.511 c-0.5,0.5-0.808,1.002-1.038,1.594C3.25,6.677,3.098,7.331,3.054,8.289C3.01,9.249,3,9.556,3,12c0,2.444,0.01,2.751,0.054,3.711 c0.044,0.958,0.196,1.612,0.418,2.185c0.23,0.592,0.538,1.094,1.038,1.594c0.5,0.5,1.002,0.808,1.594,1.038 c0.572,0.222,1.227,0.375,2.185,0.418C9.249,20.99,9.556,21,12,21s2.751-0.01,3.711-0.054c0.958-0.044,1.612-0.196,2.185-0.418 c0.592-0.23,1.094-0.538,1.594-1.038c0.5-0.5,0.808-1.002,1.038-1.594c0.222-0.572,0.375-1.227,0.418-2.185 C20.99,14.751,21,14.444,21,12s-0.01-2.751-0.054-3.711c-0.044-0.958-0.196-1.612-0.418-2.185c-0.23-0.592-0.538-1.094-1.038-1.594 c-0.5-0.5-1.002-0.808-1.594-1.038c-0.572-0.222-1.227-0.375-2.185-0.418C14.751,3.01,14.444,3,12,3L12,3z M12,7.378 c-2.552,0-4.622,2.069-4.622,4.622S9.448,16.622,12,16.622s4.622-2.069,4.622-4.622S14.552,7.378,12,7.378z M12,15 c-1.657,0-3-1.343-3-3s1.343-3,3-3s3,1.343,3,3S13.657,15,12,15z M16.804,6.116c-0.596,0-1.08,0.484-1.08,1.08 s0.484,1.08,1.08,1.08c0.596,0,1.08-0.484,1.08-1.08S17.401,6.116,16.804,6.116z\"></path></svg><span class=\"wp-block-social-link-label screen-reader-text\">Instagram</span></a></li>\n\n<li style=\"color: #000000; background-color: #ffffff; \" class=\"wp-social-link wp-social-link-bandcamp has-black-color has-white-background-color wp-block-social-link\"><a href=\"https://wordpress.org/patterns/\" class=\"wp-block-social-link-anchor\"><svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" aria-hidden=\"true\" focusable=\"false\"><path d=\"M15.27 17.289 3 17.289 8.73 6.711 21 6.711 15.27 17.289\"></path></svg><span class=\"wp-block-social-link-label screen-reader-text\">Bandcamp</span></a></li>\n\n<li style=\"color: #000000; background-color: #ffffff; \" class=\"wp-social-link wp-social-link-twitter has-black-color has-white-background-color wp-block-social-link\"><a href=\"https://wordpress.org/patterns/\" class=\"wp-block-social-link-anchor\"><svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" aria-hidden=\"true\" focusable=\"false\"><path d=\"M22.23,5.924c-0.736,0.326-1.527,0.547-2.357,0.646c0.847-0.508,1.498-1.312,1.804-2.27 c-0.793,0.47-1.671,0.812-2.606,0.996C18.324,4.498,17.257,4,16.077,4c-2.266,0-4.103,1.837-4.103,4.103 c0,0.322,0.036,0.635,0.106,0.935C8.67,8.867,5.647,7.234,3.623,4.751C3.27,5.357,3.067,6.062,3.067,6.814 c0,1.424,0.724,2.679,1.825,3.415c-0.673-0.021-1.305-0.206-1.859-0.513c0,0.017,0,0.034,0,0.052c0,1.988,1.414,3.647,3.292,4.023 c-0.344,0.094-0.707,0.144-1.081,0.144c-0.264,0-0.521-0.026-0.772-0.074c0.522,1.63,2.038,2.816,3.833,2.85 c-1.404,1.1-3.174,1.756-5.096,1.756c-0.331,0-0.658-0.019-0.979-0.057c1.816,1.164,3.973,1.843,6.29,1.843 c7.547,0,11.675-6.252,11.675-11.675c0-0.178-0.004-0.355-0.012-0.531C20.985,7.47,21.68,6.747,22.23,5.924z\"></path></svg><span class=\"wp-block-social-link-label screen-reader-text\">Twitter</span></a></li>\n\n<li style=\"color: #000000; background-color: #ffffff; \" class=\"wp-social-link wp-social-link-twitch has-black-color has-white-background-color wp-block-social-link\"><a href=\"https://wordpress.org/patterns/\" class=\"wp-block-social-link-anchor\"><svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" aria-hidden=\"true\" focusable=\"false\"><path d=\"M16.499,8.089h-1.636v4.91h1.636V8.089z M12,8.089h-1.637v4.91H12V8.089z M4.228,3.178L3,6.451v13.092h4.499V22h2.456 l2.454-2.456h3.681L21,14.636V3.178H4.228z M19.364,13.816l-2.864,2.865H12l-2.453,2.453V16.68H5.863V4.814h13.501V13.816z\"></path></svg><span class=\"wp-block-social-link-label screen-reader-text\">Twitch</span></a></li></ul>\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:0:\"\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.1\";s:25:\"wpop_contains_block_types\";s:116:\"core/button,core/buttons,core/group,core/site-tagline,core/site-title,core/social-link,core/social-links,core/spacer\";}s:14:\"category_slugs\";a:2:{i:0;s:14:\"call-to-action\";i:1;s:8:\"featured\";}s:13:\"keyword_slugs\";a:1:{i:0;s:8:\"featured\";}s:15:\"pattern_content\";s:2665:\"<!-- wp:group {\"style\":{\"spacing\":{\"padding\":{\"top\":\"var:preset|spacing|80\",\"right\":\"0\",\"bottom\":\"var:preset|spacing|80\",\"left\":\"0\"}}},\"backgroundColor\":\"white\",\"layout\":{\"type\":\"default\"}} -->\n<div class=\"wp-block-group has-white-background-color has-background\" style=\"padding-top:var(--wp--preset--spacing--80);padding-right:0;padding-bottom:var(--wp--preset--spacing--80);padding-left:0\"><!-- wp:site-title {\"textAlign\":\"center\",\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"700\"}},\"fontSize\":\"medium\"} /-->\n\n<!-- wp:site-tagline {\"textAlign\":\"center\"} /-->\n\n<!-- wp:spacer {\"height\":\"20px\"} -->\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:buttons {\"layout\":{\"type\":\"flex\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-buttons\"><!-- wp:button {\"width\":100} -->\n<div class=\"wp-block-button has-custom-width wp-block-button__width-100\"><a class=\"wp-block-button__link wp-element-button\">Watch my latest videos</a></div>\n<!-- /wp:button -->\n\n<!-- wp:button {\"width\":100} -->\n<div class=\"wp-block-button has-custom-width wp-block-button__width-100\"><a class=\"wp-block-button__link wp-element-button\">Buy merch</a></div>\n<!-- /wp:button -->\n\n<!-- wp:button {\"width\":100} -->\n<div class=\"wp-block-button has-custom-width wp-block-button__width-100\"><a class=\"wp-block-button__link wp-element-button\">Support me on Patreon</a></div>\n<!-- /wp:button -->\n\n<!-- wp:button {\"width\":100,\"className\":\"is-style-fill\"} -->\n<div class=\"wp-block-button has-custom-width wp-block-button__width-100 is-style-fill\"><a class=\"wp-block-button__link wp-element-button\">Get tickets for my show</a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons -->\n\n<!-- wp:social-links {\"iconColor\":\"black\",\"iconColorValue\":\"#000000\",\"iconBackgroundColor\":\"white\",\"iconBackgroundColorValue\":\"#ffffff\",\"size\":\"has-normal-icon-size\",\"style\":{\"spacing\":{\"blockGap\":{\"top\":\"0\",\"left\":\"0\"},\"padding\":{\"top\":\"var:preset|spacing|60\",\"bottom\":\"var:preset|spacing|60\"}}},\"layout\":{\"type\":\"flex\",\"justifyContent\":\"center\"}} -->\n<ul class=\"wp-block-social-links has-normal-icon-size has-icon-color has-icon-background-color\" style=\"padding-top:var(--wp--preset--spacing--60);padding-bottom:var(--wp--preset--spacing--60)\"><!-- wp:social-link {\"url\":\"https://wordpress.org/patterns/\",\"service\":\"instagram\"} /-->\n\n<!-- wp:social-link {\"url\":\"https://wordpress.org/patterns/\",\"service\":\"bandcamp\"} /-->\n\n<!-- wp:social-link {\"url\":\"https://wordpress.org/patterns/\",\"service\":\"twitter\"} /-->\n\n<!-- wp:social-link {\"url\":\"https://wordpress.org/patterns/\",\"service\":\"twitch\"} /--></ul>\n<!-- /wp:social-links --></div>\n<!-- /wp:group -->\";}i:1;O:8:\"stdClass\":7:{s:2:\"id\";i:732;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:21:\"Simple call to action\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:961:\"\n<div class=\"wp-block-group alignfull has-text-color has-background is-layout-flow wp-block-group-is-layout-flow\" style=\"background-color:#ffffff;color:#000000\">\n<div style=\"height:64px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<p class=\"has-text-align-center has-small-font-size\" style=\"line-height:.9\"><strong>GET IN TOUCH</strong></p>\n\n\n\n<h2 class=\"has-text-align-center wp-block-heading\" id=\"schedule-a-visit\" style=\"font-size:59px;line-height:1.15\"><strong>Schedule a Visit</strong></h2>\n\n\n\n<div class=\"wp-block-buttons is-horizontal is-content-justification-center is-layout-flex wp-container-4 wp-block-buttons-is-layout-flex\">\n<div class=\"wp-block-button has-custom-width wp-block-button__width-50\"><a class=\"wp-block-button__link has-text-color has-background\" style=\"border-radius:50px;background-color:#000000;color:#ffffff\">Contact us</a></div>\n</div>\n\n\n\n<div style=\"height:64px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:89:\"A container with a white background. Inside is a centered paragraph, heading, and button.\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:0:\"\";s:25:\"wpop_contains_block_types\";s:75:\"core/button,core/buttons,core/group,core/heading,core/paragraph,core/spacer\";}s:14:\"category_slugs\";a:2:{i:0;s:7:\"buttons\";i:1;s:8:\"featured\";}s:13:\"keyword_slugs\";a:1:{i:0;s:8:\"featured\";}s:15:\"pattern_content\";s:1506:\"<!-- wp:group {\"align\":\"full\",\"style\":{\"color\":{\"text\":\"#000000\",\"background\":\"#ffffff\"}}} -->\n<div class=\"wp-block-group alignfull has-text-color has-background\" style=\"background-color:#ffffff;color:#000000\"><!-- wp:spacer {\"height\":64} -->\n<div style=\"height:64px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"lineHeight\":\".9\"}},\"fontSize\":\"small\"} -->\n<p class=\"has-text-align-center has-small-font-size\" style=\"line-height:.9\"><strong>GET IN TOUCH</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"textAlign\":\"center\",\"style\":{\"typography\":{\"fontSize\":59,\"lineHeight\":\"1.15\"}}} -->\n<h2 class=\"has-text-align-center\" id=\"schedule-a-visit\" style=\"font-size:59px;line-height:1.15\"><strong>Schedule a Visit</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:buttons {\"layout\":{\"type\":\"flex\",\"justifyContent\":\"center\",\"orientation\":\"horizontal\"}} -->\n<div class=\"wp-block-buttons\"><!-- wp:button {\"width\":50,\"style\":{\"color\":{\"background\":\"#000000\",\"text\":\"#ffffff\"},\"border\":{\"radius\":\"50px\"}}} -->\n<div class=\"wp-block-button has-custom-width wp-block-button__width-50\"><a class=\"wp-block-button__link has-text-color has-background\" style=\"border-radius:50px;background-color:#000000;color:#ffffff\">Contact us</a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons -->\n\n<!-- wp:spacer {\"height\":64} -->\n<div style=\"height:64px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:group -->\";}i:2;O:8:\"stdClass\":7:{s:2:\"id\";i:678;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:26:\"Three column pricing table\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:3717:\"\n<div class=\"wp-block-columns alignwide is-layout-flex wp-container-12 wp-block-columns-is-layout-flex\" style=\"margin-bottom:0\">\n<div class=\"wp-block-column has-text-color has-background has-link-color wp-elements-2ae1b943d87d6b5cbc827b8e7de5c343 is-layout-flow wp-block-column-is-layout-flow\" style=\"color:#000000;background-color:#ffe97d;padding-top:2em;padding-right:2em;padding-bottom:2em;padding-left:2em\">\n<h2 class=\"wp-block-heading\" id=\"single\" style=\"font-size:40px\"><strong>Single</strong></h2>\n\n\n\n<p class=\"has-normal-font-size\" style=\"line-height:1.5\"><strong>Enrich our growing community.</strong> </p>\n\n\n\n<hr class=\"wp-block-separator has-text-color has-css-opacity has-background is-style-wide\" style=\"background-color:#000000;color:#000000\" />\n\n\n\n<ul class=\"has-normal-font-size\">\n<li>General admission and member discounts for one adult</li>\n\n\n\n<li>One free ticket per special exhibition</li>\n\n\n\n<li>Two single-use guest passes per year</li>\n</ul>\n\n\n\n<div class=\"wp-block-buttons alignfull is-horizontal is-content-justification-center is-layout-flex wp-container-6 wp-block-buttons-is-layout-flex\">\n<div class=\"wp-block-button has-custom-width wp-block-button__width-100\"><a class=\"wp-block-button__link has-white-color has-text-color has-background no-border-radius wp-element-button\" style=\"background-color:#000000\">$110 / year</a></div>\n</div>\n</div>\n\n\n\n<div class=\"wp-block-column has-text-color has-background has-link-color wp-elements-c860b6260b3b3b7bae640a65db9c9aec is-layout-flow wp-block-column-is-layout-flow\" style=\"color:#000000;background-color:#d1d1e1;padding-top:2em;padding-right:2em;padding-bottom:2em;padding-left:2em\">\n<h2 class=\"wp-block-heading\" id=\"family\" style=\"font-size:40px\"><strong>Family</strong></h2>\n\n\n\n<p class=\"has-normal-font-size\" style=\"line-height:1.5\"><strong>Support special exhibitions.</strong></p>\n\n\n\n<hr class=\"wp-block-separator has-css-opacity is-style-wide\" />\n\n\n\n<ul class=\"has-normal-font-size\">\n<li>General admission and member discounts for two adults</li>\n\n\n\n<li>Four free tickets per special exhibition</li>\n\n\n\n<li>Four single-use guest passes per year</li>\n</ul>\n\n\n\n<div class=\"wp-block-buttons alignfull is-horizontal is-content-justification-center is-layout-flex wp-container-8 wp-block-buttons-is-layout-flex\">\n<div class=\"wp-block-button has-custom-width wp-block-button__width-100 is-style-fill\"><a class=\"wp-block-button__link has-white-color has-text-color has-background no-border-radius wp-element-button\" style=\"background-color:#000000\">$200 / year</a></div>\n</div>\n</div>\n\n\n\n<div class=\"wp-block-column has-text-color has-background has-link-color wp-elements-4a86cd4fa1de9230a73a90c7ad305893 is-layout-flow wp-block-column-is-layout-flow\" style=\"color:#000000;background-color:#c0ebf1;padding-top:2em;padding-right:2em;padding-bottom:2em;padding-left:2em\">\n<h2 class=\"wp-block-heading\" id=\"patron\" style=\"font-size:40px\"><strong>Patron</strong></h2>\n\n\n\n<p class=\"has-normal-font-size\"><strong>Take support to the next level.</strong></p>\n\n\n\n<hr class=\"wp-block-separator has-css-opacity is-style-wide\" />\n\n\n\n<ul class=\"has-normal-font-size\">\n<li>General admission and member discounts for two adults</li>\n\n\n\n<li>Five free tickets per special exhibition</li>\n\n\n\n<li>Six single-use guest passes per year</li>\n</ul>\n\n\n\n<div class=\"wp-block-buttons alignfull is-horizontal is-content-justification-center is-layout-flex wp-container-10 wp-block-buttons-is-layout-flex\">\n<div class=\"wp-block-button has-custom-width wp-block-button__width-100\"><a class=\"wp-block-button__link has-white-color has-text-color has-background no-border-radius wp-element-button\" style=\"background-color:#000000\">$400 / year</a></div>\n</div>\n</div>\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:272:\"Three equal-width columns set up as a pricing table. The left column has a yellow background, the middle column has a light purple background, and the right column has a light blue background. Each column contains a heading, subheading, separator, list, and then a button.\";s:19:\"wpop_viewport_width\";i:1200;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:0:\"\";s:25:\"wpop_contains_block_types\";s:117:\"core/button,core/buttons,core/column,core/columns,core/heading,core/list,core/list-item,core/paragraph,core/separator\";}s:14:\"category_slugs\";a:2:{i:0;s:14:\"call-to-action\";i:1;s:8:\"featured\";}s:13:\"keyword_slugs\";a:1:{i:0;s:8:\"featured\";}s:15:\"pattern_content\";s:6125:\"<!-- wp:columns {\"align\":\"wide\",\"style\":{\"spacing\":{\"margin\":{\"bottom\":\"0\"}}}} -->\n<div class=\"wp-block-columns alignwide\" style=\"margin-bottom:0\"><!-- wp:column {\"style\":{\"color\":{\"background\":\"#ffe97d\",\"text\":\"#000000\"},\"elements\":{\"link\":{\"color\":{\"text\":\"#000000\"}}},\"spacing\":{\"padding\":{\"top\":\"2em\",\"right\":\"2em\",\"bottom\":\"2em\",\"left\":\"2em\"}}}} -->\n<div class=\"wp-block-column has-text-color has-background has-link-color\" style=\"color:#000000;background-color:#ffe97d;padding-top:2em;padding-right:2em;padding-bottom:2em;padding-left:2em\"><!-- wp:heading {\"style\":{\"typography\":{\"fontSize\":\"40px\"}},\"anchor\":\"single\"} -->\n<h2 class=\"wp-block-heading\" id=\"single\" style=\"font-size:40px\"><strong>Single</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"style\":{\"typography\":{\"lineHeight\":\"1.5\"}},\"fontSize\":\"normal\"} -->\n<p class=\"has-normal-font-size\" style=\"line-height:1.5\"><strong>Enrich our growing community.</strong> </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:separator {\"opacity\":\"css\",\"style\":{\"color\":{\"background\":\"#000000\"}},\"className\":\"is-style-wide\"} -->\n<hr class=\"wp-block-separator has-text-color has-css-opacity has-background is-style-wide\" style=\"background-color:#000000;color:#000000\" />\n<!-- /wp:separator -->\n\n<!-- wp:list {\"fontSize\":\"normal\"} -->\n<ul class=\"has-normal-font-size\"><!-- wp:list-item -->\n<li>General admission and member discounts for one adult</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>One free ticket per special exhibition</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Two single-use guest passes per year</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:buttons {\"align\":\"full\",\"layout\":{\"type\":\"flex\",\"justifyContent\":\"center\",\"orientation\":\"horizontal\"}} -->\n<div class=\"wp-block-buttons alignfull\"><!-- wp:button {\"textColor\":\"white\",\"width\":100,\"style\":{\"color\":{\"background\":\"#000000\"},\"border\":{\"radius\":0}}} -->\n<div class=\"wp-block-button has-custom-width wp-block-button__width-100\"><a class=\"wp-block-button__link has-white-color has-text-color has-background no-border-radius wp-element-button\" style=\"background-color:#000000\">$110 / year</a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"style\":{\"color\":{\"background\":\"#d1d1e1\",\"text\":\"#000000\"},\"elements\":{\"link\":{\"color\":{\"text\":\"#000000\"}}},\"spacing\":{\"padding\":{\"top\":\"2em\",\"right\":\"2em\",\"bottom\":\"2em\",\"left\":\"2em\"}}}} -->\n<div class=\"wp-block-column has-text-color has-background has-link-color\" style=\"color:#000000;background-color:#d1d1e1;padding-top:2em;padding-right:2em;padding-bottom:2em;padding-left:2em\"><!-- wp:heading {\"style\":{\"typography\":{\"fontSize\":\"40px\"}},\"anchor\":\"family\"} -->\n<h2 class=\"wp-block-heading\" id=\"family\" style=\"font-size:40px\"><strong>Family</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"style\":{\"typography\":{\"lineHeight\":\"1.5\"}},\"fontSize\":\"normal\"} -->\n<p class=\"has-normal-font-size\" style=\"line-height:1.5\"><strong>Support special exhibitions.</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:separator {\"opacity\":\"css\",\"className\":\"is-style-wide\"} -->\n<hr class=\"wp-block-separator has-css-opacity is-style-wide\" />\n<!-- /wp:separator -->\n\n<!-- wp:list {\"fontSize\":\"normal\"} -->\n<ul class=\"has-normal-font-size\"><!-- wp:list-item -->\n<li>General admission and member discounts for two adults</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Four free tickets per special exhibition</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Four single-use guest passes per year</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:buttons {\"align\":\"full\",\"layout\":{\"type\":\"flex\",\"justifyContent\":\"center\",\"orientation\":\"horizontal\"}} -->\n<div class=\"wp-block-buttons alignfull\"><!-- wp:button {\"textColor\":\"white\",\"width\":100,\"style\":{\"color\":{\"background\":\"#000000\"},\"border\":{\"radius\":0}},\"className\":\"is-style-fill\"} -->\n<div class=\"wp-block-button has-custom-width wp-block-button__width-100 is-style-fill\"><a class=\"wp-block-button__link has-white-color has-text-color has-background no-border-radius wp-element-button\" style=\"background-color:#000000\">$200 / year</a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"style\":{\"color\":{\"background\":\"#c0ebf1\",\"text\":\"#000000\"},\"elements\":{\"link\":{\"color\":{\"text\":\"#000000\"}}},\"spacing\":{\"padding\":{\"top\":\"2em\",\"right\":\"2em\",\"bottom\":\"2em\",\"left\":\"2em\"}}}} -->\n<div class=\"wp-block-column has-text-color has-background has-link-color\" style=\"color:#000000;background-color:#c0ebf1;padding-top:2em;padding-right:2em;padding-bottom:2em;padding-left:2em\"><!-- wp:heading {\"style\":{\"typography\":{\"fontSize\":\"40px\"}},\"anchor\":\"patron\"} -->\n<h2 class=\"wp-block-heading\" id=\"patron\" style=\"font-size:40px\"><strong>Patron</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"fontSize\":\"normal\"} -->\n<p class=\"has-normal-font-size\"><strong>Take support to the next level.</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:separator {\"opacity\":\"css\",\"className\":\"is-style-wide\"} -->\n<hr class=\"wp-block-separator has-css-opacity is-style-wide\" />\n<!-- /wp:separator -->\n\n<!-- wp:list {\"fontSize\":\"normal\"} -->\n<ul class=\"has-normal-font-size\"><!-- wp:list-item -->\n<li>General admission and member discounts for two adults</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Five free tickets per special exhibition</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Six single-use guest passes per year</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:buttons {\"align\":\"full\",\"layout\":{\"type\":\"flex\",\"justifyContent\":\"center\",\"orientation\":\"horizontal\"}} -->\n<div class=\"wp-block-buttons alignfull\"><!-- wp:button {\"textColor\":\"white\",\"width\":100,\"style\":{\"color\":{\"background\":\"#000000\"},\"border\":{\"radius\":0}}} -->\n<div class=\"wp-block-button has-custom-width wp-block-button__width-100\"><a class=\"wp-block-button__link has-white-color has-text-color has-background no-border-radius wp-element-button\" style=\"background-color:#000000\">$400 / year</a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\";}i:3;O:8:\"stdClass\":7:{s:2:\"id\";i:669;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:31:\"Image and quote on a background\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:2281:\"\n<div class=\"wp-block-media-text alignwide has-media-on-the-right is-stacked-on-mobile is-vertically-aligned-center has-background\" style=\"background-color:#f1f5c7\"><figure class=\"wp-block-media-text__media\"><img decoding=\"async\" loading=\"lazy\" width=\"1024\" height=\"1024\" src=\"https://s.w.org/patterns/files/2021/06/pear-1-1024x1024.png\" alt=\"\" class=\"wp-image-5263 size-full\" srcset=\"https://s.w.org/patterns/files/2021/06/pear-1-1024x1024.png 1024w, https://s.w.org/patterns/files/2021/06/pear-1-300x300.png 300w, https://s.w.org/patterns/files/2021/06/pear-1-150x150.png 150w, https://s.w.org/patterns/files/2021/06/pear-1-768x768.png 768w, https://s.w.org/patterns/files/2021/06/pear-1.png 1300w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" /></figure><div class=\"wp-block-media-text__content\">\n<div class=\"wp-block-group is-layout-flow wp-block-group-is-layout-flow\" style=\"padding-top:2em;padding-right:2em;padding-bottom:2em;padding-left:2em\">\n<p style=\"font-size:36px;line-height:1.2\"><strong>Even the bitterest fruit has sugar in it.</strong></p>\n\n\n\n<p class=\"has-extra-small-font-size\">– Terry a O&#8217;Neal</p>\n</div>\n</div></div>\n\n\n\n<div class=\"wp-block-media-text alignwide is-stacked-on-mobile is-vertically-aligned-center has-background\" style=\"background-color:#fffdea\"><figure class=\"wp-block-media-text__media\"><img decoding=\"async\" loading=\"lazy\" width=\"1024\" height=\"1024\" src=\"https://s.w.org/patterns/files/2021/06/pear-half-1024x1024.png\" alt=\"\" class=\"wp-image-673 size-full\" srcset=\"https://s.w.org/patterns/files/2021/06/pear-half-1024x1024.png 1024w, https://s.w.org/patterns/files/2021/06/pear-half-300x300.png 300w, https://s.w.org/patterns/files/2021/06/pear-half-150x150.png 150w, https://s.w.org/patterns/files/2021/06/pear-half-768x768.png 768w, https://s.w.org/patterns/files/2021/06/pear-half.png 1300w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" /></figure><div class=\"wp-block-media-text__content\">\n<div class=\"wp-block-group is-layout-flow wp-block-group-is-layout-flow\" style=\"padding-top:2em;padding-right:2em;padding-bottom:2em;padding-left:2em\">\n<p style=\"font-size:36px;line-height:1.2\"><strong>The trees that are slow to grow bear the best fruit.</strong></p>\n\n\n\n<p class=\"has-extra-small-font-size\">– Molière</p>\n</div>\n</div></div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:221:\"Two media and text blocks. The top one has a pale green background. The text is on the left and contains a quote, and the image is on the right. The next block underneath has the image on the left, and quote on the right.\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:0:\"\";s:25:\"wpop_contains_block_types\";s:41:\"core/group,core/media-text,core/paragraph\";}s:14:\"category_slugs\";a:3:{i:0;s:8:\"featured\";i:1;s:6:\"images\";i:2;s:4:\"text\";}s:13:\"keyword_slugs\";a:1:{i:0;s:8:\"featured\";}s:15:\"pattern_content\";s:2404:\"<!-- wp:media-text {\"mediaPosition\":\"right\",\"mediaId\":5263,\"mediaLink\":\"https://wordpress.org/patterns/pattern/image-and-quote-on-a-background/pear-3/\",\"mediaType\":\"image\",\"verticalAlignment\":\"center\",\"style\":{\"color\":{\"background\":\"#f1f5c7\"}}} -->\n<div class=\"wp-block-media-text alignwide has-media-on-the-right is-stacked-on-mobile is-vertically-aligned-center has-background\" style=\"background-color:#f1f5c7\"><figure class=\"wp-block-media-text__media\"><img src=\"https://s.w.org/patterns/files/2021/06/pear-1-1024x1024.png\" alt=\"\" class=\"wp-image-5263 size-full\" /></figure><div class=\"wp-block-media-text__content\"><!-- wp:group {\"style\":{\"spacing\":{\"padding\":{\"top\":\"2em\",\"right\":\"2em\",\"bottom\":\"2em\",\"left\":\"2em\"}}}} -->\n<div class=\"wp-block-group\" style=\"padding-top:2em;padding-right:2em;padding-bottom:2em;padding-left:2em\"><!-- wp:paragraph {\"style\":{\"typography\":{\"lineHeight\":\"1.2\",\"fontSize\":\"36px\"}}} -->\n<p style=\"font-size:36px;line-height:1.2\"><strong>Even the bitterest fruit has sugar in it.</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"fontSize\":\"extra-small\"} -->\n<p class=\"has-extra-small-font-size\">– Terry a O\'Neal</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group --></div></div>\n<!-- /wp:media-text -->\n\n<!-- wp:media-text {\"mediaId\":673,\"mediaLink\":\"https://wordpress.org/patterns/pear-half/\",\"mediaType\":\"image\",\"verticalAlignment\":\"center\",\"style\":{\"color\":{\"background\":\"#fffdea\"}}} -->\n<div class=\"wp-block-media-text alignwide is-stacked-on-mobile is-vertically-aligned-center has-background\" style=\"background-color:#fffdea\"><figure class=\"wp-block-media-text__media\"><img src=\"https://s.w.org/patterns/files/2021/06/pear-half-1024x1024.png\" alt=\"\" class=\"wp-image-673 size-full\" /></figure><div class=\"wp-block-media-text__content\"><!-- wp:group {\"style\":{\"spacing\":{\"padding\":{\"top\":\"2em\",\"right\":\"2em\",\"bottom\":\"2em\",\"left\":\"2em\"}}}} -->\n<div class=\"wp-block-group\" style=\"padding-top:2em;padding-right:2em;padding-bottom:2em;padding-left:2em\"><!-- wp:paragraph {\"style\":{\"typography\":{\"lineHeight\":\"1.2\",\"fontSize\":\"36px\"}}} -->\n<p style=\"font-size:36px;line-height:1.2\"><strong>The trees that are slow to grow bear the best fruit.</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"fontSize\":\"extra-small\"} -->\n<p class=\"has-extra-small-font-size\">– Molière</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group --></div></div>\n<!-- /wp:media-text -->\";}i:4;O:8:\"stdClass\":7:{s:2:\"id\";i:591;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:5:\"Event\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:1687:\"\n<div class=\"wp-block-media-text alignfull has-media-on-the-right is-stacked-on-mobile is-vertically-aligned-top has-text-color has-background has-link-color wp-elements-5fce4e677a9b9d7d0cae0196c9d74d97\" style=\"color:#fffdc7;background-color:#121c1c;grid-template-columns:auto 60%\"><div class=\"wp-block-media-text__content\">\n<div class=\"wp-block-group has-link-color wp-elements-71b4a847bbd96313422a1303e9ba41f3 is-layout-flow wp-block-group-is-layout-flow\" style=\"padding-top:2em;padding-right:2em;padding-bottom:2em;padding-left:2em\">\n<h2 class=\"wp-block-heading\" style=\"font-size:48px;font-weight:700;line-height:1.15\">Opening <br>Party</h2>\n\n\n\n<p class=\"has-text-color has-link-color wp-elements-0860918d5b16b9e1778b1966b333b980\" style=\"color:#fffdc7\"><strong><a href=\"#\">RSVP →</a></strong></p>\n</div>\n</div><figure class=\"wp-block-media-text__media\"><img decoding=\"async\" loading=\"lazy\" width=\"1024\" height=\"1024\" src=\"https://s.w.org/patterns/files/2021/06/image-from-rawpixel-id-430289-jpeg-1-1024x1024.jpg\" alt=\"\" class=\"wp-image-590 size-full\" srcset=\"https://s.w.org/patterns/files/2021/06/image-from-rawpixel-id-430289-jpeg-1-1024x1024.jpg 1024w, https://s.w.org/patterns/files/2021/06/image-from-rawpixel-id-430289-jpeg-1-300x300.jpg 300w, https://s.w.org/patterns/files/2021/06/image-from-rawpixel-id-430289-jpeg-1-150x150.jpg 150w, https://s.w.org/patterns/files/2021/06/image-from-rawpixel-id-430289-jpeg-1-768x768.jpg 768w, https://s.w.org/patterns/files/2021/06/image-from-rawpixel-id-430289-jpeg-1-1536x1536.jpg 1536w, https://s.w.org/patterns/files/2021/06/image-from-rawpixel-id-430289-jpeg-1.jpg 1572w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" /></figure></div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:0:\"\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:0:\"\";s:25:\"wpop_contains_block_types\";s:54:\"core/group,core/heading,core/media-text,core/paragraph\";}s:14:\"category_slugs\";a:3:{i:0;s:6:\"banner\";i:1;s:8:\"featured\";i:2;s:6:\"images\";}s:13:\"keyword_slugs\";a:1:{i:0;s:8:\"featured\";}s:15:\"pattern_content\";s:1617:\"<!-- wp:media-text {\"align\":\"full\",\"mediaPosition\":\"right\",\"mediaId\":590,\"mediaLink\":\"https://wordpress.org/patterns/image-from-rawpixel-id-430289-jpeg-1/\",\"mediaType\":\"image\",\"mediaWidth\":60,\"verticalAlignment\":\"top\",\"style\":{\"color\":{\"background\":\"#121c1c\",\"text\":\"#fffdc7\"},\"elements\":{\"link\":{\"color\":{\"text\":\"#fffdc7\"}}}}} -->\n<div class=\"wp-block-media-text alignfull has-media-on-the-right is-stacked-on-mobile is-vertically-aligned-top has-text-color has-background has-link-color\" style=\"color:#fffdc7;background-color:#121c1c;grid-template-columns:auto 60%\"><div class=\"wp-block-media-text__content\"><!-- wp:group {\"style\":{\"spacing\":{\"padding\":{\"top\":\"2em\",\"right\":\"2em\",\"bottom\":\"2em\",\"left\":\"2em\"}},\"elements\":{\"link\":{\"color\":{\"text\":\"#fffdc7\"}}}}} -->\n<div class=\"wp-block-group has-link-color\" style=\"padding-top:2em;padding-right:2em;padding-bottom:2em;padding-left:2em\"><!-- wp:heading {\"style\":{\"typography\":{\"fontWeight\":\"700\",\"fontSize\":\"48px\",\"lineHeight\":\"1.15\"}}} -->\n<h2 class=\"wp-block-heading\" style=\"font-size:48px;font-weight:700;line-height:1.15\">Opening <br>Party</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"style\":{\"elements\":{\"link\":{\"color\":{\"text\":\"#fffdc7\"}}},\"color\":{\"text\":\"#fffdc7\"}}} -->\n<p class=\"has-text-color has-link-color\" style=\"color:#fffdc7\"><strong><a href=\"#\">RSVP →</a></strong></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group --></div><figure class=\"wp-block-media-text__media\"><img src=\"https://s.w.org/patterns/files/2021/06/image-from-rawpixel-id-430289-jpeg-1-1024x1024.jpg\" alt=\"\" class=\"wp-image-590 size-full\" /></figure></div>\n<!-- /wp:media-text -->\";}i:5;O:8:\"stdClass\":7:{s:2:\"id\";i:573;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:37:\"Image on solid color with description\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:1830:\"\n<div class=\"wp-block-columns alignfull is-layout-flex wp-container-21 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\" style=\"flex-basis:50%\">\n<div class=\"wp-block-cover has-background-dim\" style=\"background-color:#f6f6f6;min-height:600px\"><div class=\"wp-block-cover__inner-container is-layout-flow wp-block-cover-is-layout-flow\">\n<div class=\"wp-block-image\"><figure class=\"aligncenter size-medium\"><img decoding=\"async\" loading=\"lazy\" width=\"263\" height=\"300\" src=\"https://s.w.org/patterns/files/2021/06/wire-sculpture-263x300.jpg\" alt=\"\" class=\"wp-image-571\" srcset=\"https://s.w.org/patterns/files/2021/06/wire-sculpture-263x300.jpg 263w, https://s.w.org/patterns/files/2021/06/wire-sculpture-898x1024.jpg 898w, https://s.w.org/patterns/files/2021/06/wire-sculpture-768x875.jpg 768w, https://s.w.org/patterns/files/2021/06/wire-sculpture-1347x1536.jpg 1347w, https://s.w.org/patterns/files/2021/06/wire-sculpture.jpg 1658w\" sizes=\"(max-width: 263px) 100vw, 263px\" /></figure></div>\n</div></div>\n</div>\n\n\n\n<div class=\"wp-block-column is-vertically-aligned-center is-layout-flow wp-block-column-is-layout-flow\" style=\"padding-top:1em;padding-right:1em;padding-bottom:1em;padding-left:1em\">\n<div class=\"wp-block-columns is-layout-flex wp-container-19 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\" style=\"flex-basis:320px\">\n<p class=\"has-small-font-size\" style=\"line-height:1.6\"><strong>Airplane</strong></p>\n\n\n\n<p class=\"has-small-font-size\" style=\"line-height:1.6\">Copper wire, wood base. I created this piece in late 2008. For this work, I aimed to convey both the industrial heaviness of an airplane, but also the cloudlike floating quality you feel when you’re in one.</p>\n</div>\n</div>\n</div>\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:38:\"Image on solid color with description.\";s:19:\"wpop_viewport_width\";i:1200;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:0:\"\";s:25:\"wpop_contains_block_types\";s:61:\"core/column,core/columns,core/cover,core/image,core/paragraph\";}s:14:\"category_slugs\";a:3:{i:0;s:8:\"featured\";i:1;s:6:\"images\";i:2;s:4:\"text\";}s:13:\"keyword_slugs\";a:1:{i:0;s:8:\"featured\";}s:15:\"pattern_content\";s:1826:\"<!-- wp:columns {\"align\":\"full\"} -->\n<div class=\"wp-block-columns alignfull\"><!-- wp:column {\"width\":\"50%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:50%\"><!-- wp:cover {\"customOverlayColor\":\"#f6f6f6\",\"minHeight\":600} -->\n<div class=\"wp-block-cover has-background-dim\" style=\"background-color:#f6f6f6;min-height:600px\"><div class=\"wp-block-cover__inner-container\"><!-- wp:image {\"align\":\"center\",\"id\":571,\"sizeSlug\":\"medium\",\"linkDestination\":\"none\"} -->\n<div class=\"wp-block-image\"><figure class=\"aligncenter size-medium\"><img src=\"https://s.w.org/patterns/files/2021/06/wire-sculpture-263x300.jpg\" alt=\"\" class=\"wp-image-571\" /></figure></div>\n<!-- /wp:image --></div></div>\n<!-- /wp:cover --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"verticalAlignment\":\"center\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"1em\",\"right\":\"1em\",\"bottom\":\"1em\",\"left\":\"1em\"}}}} -->\n<div class=\"wp-block-column is-vertically-aligned-center\" style=\"padding-top:1em;padding-right:1em;padding-bottom:1em;padding-left:1em\"><!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column {\"width\":\"320px\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:320px\"><!-- wp:paragraph {\"style\":{\"typography\":{\"lineHeight\":\"1.6\"}},\"fontSize\":\"small\"} -->\n<p class=\"has-small-font-size\" style=\"line-height:1.6\"><strong>Airplane</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"style\":{\"typography\":{\"lineHeight\":\"1.6\"}},\"fontSize\":\"small\"} -->\n<p class=\"has-small-font-size\" style=\"line-height:1.6\">Copper wire, wood base. I created this piece in late 2008. For this work, I aimed to convey both the industrial heaviness of an airplane, but also the cloudlike floating quality you feel when you’re in one.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\";}i:6;O:8:\"stdClass\":7:{s:2:\"id\";i:526;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:31:\"Offset images with descriptions\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:2907:\"\n<div class=\"wp-block-columns alignwide are-vertically-aligned-top is-layout-flex wp-container-31 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-vertically-aligned-top is-layout-flow wp-block-column-is-layout-flow\">\n<div class=\"wp-block-group wp-container-content-24 is-vertical is-content-justification-left is-nowrap is-layout-flex wp-container-25 wp-block-group-is-layout-flex\" style=\"margin-top:0;margin-bottom:0\">\n<figure class=\"wp-block-image size-large wp-container-content-22\"><img decoding=\"async\" loading=\"lazy\" width=\"793\" height=\"1024\" src=\"https://s.w.org/patterns/files/2021/06/Iris-793x1024.jpg\" alt=\"Beautiful photomechanical prints of White Irises (1887-1897) by Ogawa Kazumasa. Original from The Rijksmuseum. \" class=\"wp-image-525\" srcset=\"https://s.w.org/patterns/files/2021/06/Iris-793x1024.jpg 793w, https://s.w.org/patterns/files/2021/06/Iris-232x300.jpg 232w, https://s.w.org/patterns/files/2021/06/Iris-768x992.jpg 768w, https://s.w.org/patterns/files/2021/06/Iris-1189x1536.jpg 1189w, https://s.w.org/patterns/files/2021/06/Iris-1586x2048.jpg 1586w, https://s.w.org/patterns/files/2021/06/Iris.jpg 1920w\" sizes=\"(max-width: 793px) 100vw, 793px\" /></figure>\n\n\n\n<div class=\"wp-block-group is-vertical is-nowrap is-layout-flex wp-container-23 wp-block-group-is-layout-flex\">\n<p class=\"has-medium-font-size\"><strong>White Irises</strong></p>\n\n\n\n<p class=\"has-small-font-size\">Ogawa Kazumasa</p>\n</div>\n</div>\n</div>\n\n\n\n<div class=\"wp-block-column is-vertically-aligned-top is-layout-flow wp-block-column-is-layout-flow\">\n<div class=\"wp-block-group wp-container-content-28 is-vertical is-layout-flex wp-container-29 wp-block-group-is-layout-flex\" style=\"margin-top:0;margin-bottom:0\">\n<div class=\"wp-block-group is-vertical is-nowrap is-layout-flex wp-container-27 wp-block-group-is-layout-flex\">\n<div style=\"height:80px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<p class=\"has-medium-font-size\"><strong>Cherry Blossom</strong></p>\n\n\n\n<p class=\"has-small-font-size\">Ogawa Kazumasa</p>\n</div>\n\n\n\n<figure class=\"wp-block-image size-large\" style=\"font-size:14px\"><img decoding=\"async\" loading=\"lazy\" width=\"707\" height=\"1024\" src=\"https://s.w.org/patterns/files/2021/06/Cherry-Blossom-707x1024.jpg\" alt=\"Beautiful photomechanical prints of Cherry Blossom (1887-1897) by Ogawa Kazumasa. Original from The Rijksmuseum. \" class=\"wp-image-524\" srcset=\"https://s.w.org/patterns/files/2021/06/Cherry-Blossom-707x1024.jpg 707w, https://s.w.org/patterns/files/2021/06/Cherry-Blossom-207x300.jpg 207w, https://s.w.org/patterns/files/2021/06/Cherry-Blossom-768x1112.jpg 768w, https://s.w.org/patterns/files/2021/06/Cherry-Blossom-1061x1536.jpg 1061w, https://s.w.org/patterns/files/2021/06/Cherry-Blossom-1414x2048.jpg 1414w, https://s.w.org/patterns/files/2021/06/Cherry-Blossom-scaled.jpg 1768w\" sizes=\"(max-width: 707px) 100vw, 707px\" /></figure>\n</div>\n</div>\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:58:\"Two offset columns with images and titles within each one.\";s:19:\"wpop_viewport_width\";i:1200;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:0:\"\";s:25:\"wpop_contains_block_types\";s:73:\"core/column,core/columns,core/group,core/image,core/paragraph,core/spacer\";}s:14:\"category_slugs\";a:3:{i:0;s:8:\"featured\";i:1;s:7:\"gallery\";i:2;s:6:\"images\";}s:13:\"keyword_slugs\";a:1:{i:0;s:8:\"featured\";}s:15:\"pattern_content\";s:2930:\"<!-- wp:columns {\"verticalAlignment\":\"top\",\"align\":\"wide\",\"style\":{\"spacing\":{\"blockGap\":{\"top\":\"var:preset|spacing|40\",\"left\":\"var:preset|spacing|40\"}}}} -->\n<div class=\"wp-block-columns alignwide are-vertically-aligned-top\"><!-- wp:column {\"verticalAlignment\":\"top\"} -->\n<div class=\"wp-block-column is-vertically-aligned-top\"><!-- wp:group {\"style\":{\"layout\":{\"selfStretch\":\"fixed\",\"flexSize\":\"480px\"},\"spacing\":{\"margin\":{\"top\":\"0\",\"bottom\":\"0\"}}},\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\",\"flexWrap\":\"nowrap\",\"justifyContent\":\"left\"}} -->\n<div class=\"wp-block-group\" style=\"margin-top:0;margin-bottom:0\"><!-- wp:image {\"id\":525,\"sizeSlug\":\"large\",\"linkDestination\":\"none\",\"style\":{\"layout\":{\"selfStretch\":\"fixed\",\"flexSize\":\"50%\"}}} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://s.w.org/patterns/files/2021/06/Iris-793x1024.jpg\" alt=\"Beautiful photomechanical prints of White Irises (1887-1897) by Ogawa Kazumasa. Original from The Rijksmuseum. \" class=\"wp-image-525\" /></figure>\n<!-- /wp:image -->\n\n<!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"0\"}},\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\",\"flexWrap\":\"nowrap\"}} -->\n<div class=\"wp-block-group\"><!-- wp:paragraph {\"fontSize\":\"medium\"} -->\n<p class=\"has-medium-font-size\"><strong>White Irises</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"fontSize\":\"small\"} -->\n<p class=\"has-small-font-size\">Ogawa Kazumasa</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group --></div>\n<!-- /wp:group --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"verticalAlignment\":\"top\"} -->\n<div class=\"wp-block-column is-vertically-aligned-top\"><!-- wp:group {\"style\":{\"layout\":{\"selfStretch\":\"fixed\",\"flexSize\":\"480px\"},\"spacing\":{\"margin\":{\"top\":\"0\",\"bottom\":\"0\"}}},\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\"}} -->\n<div class=\"wp-block-group\" style=\"margin-top:0;margin-bottom:0\"><!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"0\"}},\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\",\"flexWrap\":\"nowrap\"}} -->\n<div class=\"wp-block-group\"><!-- wp:spacer {\"height\":\"80px\"} -->\n<div style=\"height:80px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:paragraph {\"fontSize\":\"medium\"} -->\n<p class=\"has-medium-font-size\"><strong>Cherry Blossom</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"fontSize\":\"small\"} -->\n<p class=\"has-small-font-size\">Ogawa Kazumasa</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group -->\n\n<!-- wp:image {\"id\":524,\"sizeSlug\":\"large\",\"linkDestination\":\"none\",\"style\":{\"typography\":{\"fontSize\":\"14px\"}}} -->\n<figure class=\"wp-block-image size-large\" style=\"font-size:14px\"><img src=\"https://s.w.org/patterns/files/2021/06/Cherry-Blossom-707x1024.jpg\" alt=\"Beautiful photomechanical prints of Cherry Blossom (1887-1897) by Ogawa Kazumasa. Original from The Rijksmuseum. \" class=\"wp-image-524\" /></figure>\n<!-- /wp:image --></div>\n<!-- /wp:group --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\";}i:7;O:8:\"stdClass\":7:{s:2:\"id\";i:521;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:45:\"Image with description below and to the right\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:1665:\"\n<div class=\"wp-block-columns is-layout-flex wp-container-36 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\" style=\"flex-basis:10%\"></div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" loading=\"lazy\" width=\"1024\" height=\"1024\" src=\"https://s.w.org/patterns/files/2021/06/image-from-rawpixel-id-539759-jpeg-1-1024x1024.jpg\" alt=\"Vintage Cupid Illustration\" class=\"wp-image-522\" srcset=\"https://s.w.org/patterns/files/2021/06/image-from-rawpixel-id-539759-jpeg-1-1024x1024.jpg 1024w, https://s.w.org/patterns/files/2021/06/image-from-rawpixel-id-539759-jpeg-1-300x300.jpg 300w, https://s.w.org/patterns/files/2021/06/image-from-rawpixel-id-539759-jpeg-1-150x150.jpg 150w, https://s.w.org/patterns/files/2021/06/image-from-rawpixel-id-539759-jpeg-1-768x768.jpg 768w, https://s.w.org/patterns/files/2021/06/image-from-rawpixel-id-539759-jpeg-1.jpg 1510w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" /></figure>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\"></div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\" style=\"flex-basis:10%\"></div>\n</div>\n\n\n\n<div class=\"wp-block-columns is-layout-flex wp-container-39 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\"></div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<p style=\"font-size:14px\"><strong>Cupid in Flight</strong><br>48” x 48” Giclee print on archival paper.</p>\n</div>\n</div>\n\n\n\n<p></p>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:46:\"Image with description below and to the right.\";s:19:\"wpop_viewport_width\";i:1200;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:0:\"\";s:25:\"wpop_contains_block_types\";s:50:\"core/column,core/columns,core/image,core/paragraph\";}s:14:\"category_slugs\";a:2:{i:0;s:8:\"featured\";i:1;s:6:\"images\";}s:13:\"keyword_slugs\";a:1:{i:0;s:8:\"featured\";}s:15:\"pattern_content\";s:1241:\"<!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column {\"width\":\"10%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:10%\"></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"id\":522,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://s.w.org/patterns/files/2021/06/image-from-rawpixel-id-539759-jpeg-1-1024x1024.jpg\" alt=\"Vintage Cupid Illustration\" class=\"wp-image-522\" /></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"width\":\"10%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:10%\"></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"style\":{\"typography\":{\"fontSize\":\"14px\"}}} -->\n<p style=\"font-size:14px\"><strong>Cupid in Flight</strong><br>48” x 48” Giclee print on archival paper.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\";}i:8;O:8:\"stdClass\":7:{s:2:\"id\";i:502;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:13:\"Event details\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:1684:\"\n<figure class=\"wp-block-image alignwide size-full\"><img decoding=\"async\" loading=\"lazy\" width=\"2560\" height=\"1227\" src=\"https://s.w.org/patterns/files/2021/06/Group-17-scaled.jpg\" alt=\"Image of a woman being carried through the air by swans.\" class=\"wp-image-501\" srcset=\"https://s.w.org/patterns/files/2021/06/Group-17-scaled.jpg 2560w, https://s.w.org/patterns/files/2021/06/Group-17-300x144.jpg 300w, https://s.w.org/patterns/files/2021/06/Group-17-1024x491.jpg 1024w, https://s.w.org/patterns/files/2021/06/Group-17-768x368.jpg 768w, https://s.w.org/patterns/files/2021/06/Group-17-1536x736.jpg 1536w, https://s.w.org/patterns/files/2021/06/Group-17-2048x981.jpg 2048w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" /></figure>\n\n\n\n<div class=\"wp-block-columns alignwide are-vertically-aligned-center is-layout-flex wp-container-44 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-vertically-aligned-center is-layout-flow wp-block-column-is-layout-flow\">\n<p style=\"line-height:2\"><strong>Location:</strong><br>82 Main St. Brooklyn, NY</p>\n</div>\n\n\n\n<div class=\"wp-block-column is-vertically-aligned-center is-layout-flow wp-block-column-is-layout-flow\">\n<p style=\"line-height:2\"><strong>Date:</strong><br>October 24, 2021</p>\n</div>\n\n\n\n<div class=\"wp-block-column is-vertically-aligned-center is-layout-flow wp-block-column-is-layout-flow\">\n<div class=\"wp-block-buttons is-layout-flex wp-block-buttons-is-layout-flex\">\n<div class=\"wp-block-button has-custom-width wp-block-button__width-100\"><a class=\"wp-block-button__link has-text-color has-background wp-element-button\" style=\"color:#efefef;background-color:#262626\">Purchase Tickets</a></div>\n</div>\n</div>\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:14:\"Event details.\";s:19:\"wpop_viewport_width\";i:1200;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:0:\"\";s:25:\"wpop_contains_block_types\";s:75:\"core/button,core/buttons,core/column,core/columns,core/image,core/paragraph\";}s:14:\"category_slugs\";a:2:{i:0;s:14:\"call-to-action\";i:1;s:8:\"featured\";}s:13:\"keyword_slugs\";a:1:{i:0;s:8:\"featured\";}s:15:\"pattern_content\";s:1642:\"<!-- wp:image {\"align\":\"wide\",\"id\":501,\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image alignwide size-full\"><img src=\"https://s.w.org/patterns/files/2021/06/Group-17-scaled.jpg\" alt=\"Image of a woman being carried through the air by swans.\" class=\"wp-image-501\" /></figure>\n<!-- /wp:image -->\n\n<!-- wp:columns {\"verticalAlignment\":\"center\",\"align\":\"wide\"} -->\n<div class=\"wp-block-columns alignwide are-vertically-aligned-center\"><!-- wp:column {\"verticalAlignment\":\"center\"} -->\n<div class=\"wp-block-column is-vertically-aligned-center\"><!-- wp:paragraph {\"style\":{\"typography\":{\"lineHeight\":\"2\"}}} -->\n<p style=\"line-height:2\"><strong>Location:</strong><br>82 Main St. Brooklyn, NY</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"verticalAlignment\":\"center\"} -->\n<div class=\"wp-block-column is-vertically-aligned-center\"><!-- wp:paragraph {\"style\":{\"typography\":{\"lineHeight\":\"2\"}}} -->\n<p style=\"line-height:2\"><strong>Date:</strong><br>October 24, 2021</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"verticalAlignment\":\"center\"} -->\n<div class=\"wp-block-column is-vertically-aligned-center\"><!-- wp:buttons -->\n<div class=\"wp-block-buttons\"><!-- wp:button {\"width\":100,\"style\":{\"color\":{\"background\":\"#262626\",\"text\":\"#efefef\"}}} -->\n<div class=\"wp-block-button has-custom-width wp-block-button__width-100\"><a class=\"wp-block-button__link has-text-color has-background wp-element-button\" style=\"color:#efefef;background-color:#262626\">Purchase Tickets</a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\";}i:9;O:8:\"stdClass\":7:{s:2:\"id\";i:200;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:21:\"Three columns of text\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:1077:\"\n<div class=\"wp-block-columns alignfull has-text-color has-background is-layout-flex wp-container-48 wp-block-columns-is-layout-flex\" style=\"background-color:#ffffff;color:#000000\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<h3 class=\"wp-block-heading\" style=\"font-size:24px;line-height:1.3\"><strong><a href=\"http://wordpress.org\">Virtual Tour ↗</a></strong></h3>\n\n\n\n<p>Get a virtual tour of the museum. Ideal for schools and events.</p>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<h3 class=\"wp-block-heading\" style=\"font-size:24px;line-height:1.3\"><strong><a href=\"https://wordpress.org\">Current Shows ↗</a></strong></h3>\n\n\n\n<p>Stay updated and see our current exhibitions here.</p>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<h3 class=\"wp-block-heading\" style=\"font-size:24px;line-height:1.3\"><strong><a href=\"https://wordpress.org\">Useful Info ↗</a></strong></h3>\n\n\n\n<p>Get to know our opening times, ticket prices and discounts.</p>\n</div>\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:22:\"Three columns of text.\";s:19:\"wpop_viewport_width\";i:1200;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:0:\"\";s:25:\"wpop_contains_block_types\";s:52:\"core/column,core/columns,core/heading,core/paragraph\";}s:14:\"category_slugs\";a:3:{i:0;s:7:\"columns\";i:1;s:8:\"featured\";i:2;s:4:\"text\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:1496:\"<!-- wp:columns {\"align\":\"full\",\"style\":{\"color\":{\"text\":\"#000000\",\"background\":\"#ffffff\"}}} -->\n<div class=\"wp-block-columns alignfull has-text-color has-background\" style=\"background-color:#ffffff;color:#000000\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:heading {\"level\":3,\"style\":{\"typography\":{\"fontSize\":\"24px\",\"lineHeight\":\"1.3\"}}} -->\n<h3 style=\"font-size:24px;line-height:1.3\"><strong><a href=\"http://wordpress.org\">Virtual Tour ↗</a></strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Get a virtual tour of the museum. Ideal for schools and events.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:heading {\"level\":3,\"style\":{\"typography\":{\"fontSize\":\"24px\",\"lineHeight\":\"1.3\"}}} -->\n<h3 style=\"font-size:24px;line-height:1.3\"><strong><a href=\"https://wordpress.org\">Current Shows ↗</a></strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Stay updated and see our current exhibitions here.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:heading {\"level\":3,\"style\":{\"typography\":{\"fontSize\":\"24px\",\"lineHeight\":\"1.3\"}}} -->\n<h3 style=\"font-size:24px;line-height:1.3\"><strong><a href=\"https://wordpress.org\">Useful Info ↗</a></strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Get to know our opening times, ticket prices and discounts.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\";}i:10;O:8:\"stdClass\":7:{s:2:\"id\";i:199;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:34:\"Three columns with images and text\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:3492:\"\n<div class=\"wp-block-group alignfull has-background is-layout-flow wp-block-group-is-layout-flow\" style=\"background-color:#f5eac1;padding-top:6vw;padding-right:6vw;padding-bottom:6vw;padding-left:6vw\">\n<div class=\"wp-block-group is-vertical is-nowrap is-layout-flex wp-container-49 wp-block-group-is-layout-flex\" style=\"padding-right:0;padding-left:0\">\n<h6 class=\"wp-block-heading has-text-color\" id=\"ecosystem\" style=\"color:#000000;font-size:16px\">ECOSYSTEM</h6>\n\n\n\n<p class=\"has-text-color\" style=\"color:#000000;font-size:6vw;font-style:normal;font-weight:700;letter-spacing:0px;line-height:0.9;text-decoration:none;text-transform:none\">Positive growth.</p>\n</div>\n\n\n\n<div style=\"height:1vw\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<div class=\"wp-block-group alignwide is-vertical is-nowrap is-layout-flex wp-container-57 wp-block-group-is-layout-flex\" style=\"padding-top:0;padding-right:0;padding-bottom:0;padding-left:0\">\n<div class=\"wp-block-columns alignwide is-layout-flex wp-container-53 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\" style=\"flex-basis:33.38%\">\n<p class=\"has-text-color\" style=\"color:#000000;font-size:17px\"><em>Nature</em>, in the common sense, refers to essences unchanged by man; space, the air, the river, the leaf.&nbsp;<em>Art</em>&nbsp;is applied to the mixture of his will with the same things, as in a house, a canal, a statue, a picture. </p>\n\n\n\n<p class=\"has-text-color\" style=\"color:#000000;font-size:17px\">But his operations taken together are so insignificant, a little chipping, baking, patching, and washing, that in an impression so grand as that of the world on the human mind, they do not vary the result.</p>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\" style=\"flex-basis:33%\">\n<div style=\"height:2vw\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" src=\"https://s.w.org/images/core/5.8/outside-01.jpg\" alt=\"The sun setting through a dense forest.\" /></figure>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\" style=\"flex-basis:33.62%\">\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" src=\"https://s.w.org/images/core/5.8/outside-02.jpg\" alt=\"Wind turbines standing on a grassy plain, against a blue sky.\" /></figure>\n</div>\n</div>\n\n\n\n<div class=\"wp-block-columns alignwide is-layout-flex wp-container-56 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\" style=\"flex-basis:69%\">\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" src=\"https://s.w.org/images/core/5.8/outside-03.jpg\" alt=\"The sun shining over a ridge leading down into the shore. In the distance, a car drives down a road.\" /></figure>\n</div>\n\n\n\n<div class=\"wp-block-column is-vertically-aligned-center is-layout-flow wp-block-column-is-layout-flow\" style=\"flex-basis:33%\">\n<div style=\"height:2vw\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<p class=\"has-text-color\" style=\"color:#000000;font-size:17px\">Undoubtedly we have no questions to ask which are unanswerable. We must trust the perfection of the creation so far, as to believe that whatever curiosity the order of things has awakened in our minds, the order of things can satisfy. Every man&#8217;s condition is a solution in hieroglyphic to those inquiries he would put.</p>\n</div>\n</div>\n</div>\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:77:\"Three columns with images and text, with vertical spacing for an offset look.\";s:19:\"wpop_viewport_width\";i:1200;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:0:\"\";s:25:\"wpop_contains_block_types\";s:86:\"core/column,core/columns,core/group,core/heading,core/image,core/paragraph,core/spacer\";}s:14:\"category_slugs\";a:5:{i:0;s:7:\"columns\";i:1;s:8:\"featured\";i:2;s:7:\"gallery\";i:3;s:6:\"images\";i:4;s:4:\"text\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:5124:\"<!-- wp:group {\"align\":\"full\",\"style\":{\"color\":{\"background\":\"#f5eac1\"},\"spacing\":{\"padding\":{\"top\":\"6vw\",\"bottom\":\"6vw\",\"left\":\"6vw\",\"right\":\"6vw\"}}},\"layout\":{\"type\":\"default\"}} -->\n<div class=\"wp-block-group alignfull has-background\" style=\"background-color:#f5eac1;padding-top:6vw;padding-right:6vw;padding-bottom:6vw;padding-left:6vw\"><!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"16px\",\"padding\":{\"right\":\"0\",\"left\":\"0\"}}},\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\",\"flexWrap\":\"nowrap\"}} -->\n<div class=\"wp-block-group\" style=\"padding-right:0;padding-left:0\"><!-- wp:heading {\"level\":6,\"style\":{\"color\":{\"text\":\"#000000\"},\"typography\":{\"fontSize\":\"16px\"}},\"anchor\":\"ecosystem\"} -->\n<h6 class=\"wp-block-heading has-text-color\" id=\"ecosystem\" style=\"color:#000000;font-size:16px\">ECOSYSTEM</h6>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"style\":{\"typography\":{\"lineHeight\":\"0.9\",\"fontSize\":\"6vw\",\"fontStyle\":\"normal\",\"fontWeight\":\"700\",\"textTransform\":\"none\",\"textDecoration\":\"none\",\"letterSpacing\":\"0px\"},\"color\":{\"text\":\"#000000\"}}} -->\n<p class=\"has-text-color\" style=\"color:#000000;font-size:6vw;font-style:normal;font-weight:700;letter-spacing:0px;line-height:0.9;text-decoration:none;text-transform:none\">Positive growth.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group -->\n\n<!-- wp:spacer {\"height\":\"1vw\"} -->\n<div style=\"height:1vw\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:group {\"align\":\"wide\",\"style\":{\"spacing\":{\"blockGap\":\"3vw\",\"padding\":{\"top\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"right\":\"0\"}}},\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\",\"flexWrap\":\"nowrap\"}} -->\n<div class=\"wp-block-group alignwide\" style=\"padding-top:0;padding-right:0;padding-bottom:0;padding-left:0\"><!-- wp:columns {\"align\":\"wide\",\"style\":{\"spacing\":{\"blockGap\":{\"top\":\"3vw\",\"left\":\"3vw\"}}}} -->\n<div class=\"wp-block-columns alignwide\"><!-- wp:column {\"width\":\"33.38%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:33.38%\"><!-- wp:paragraph {\"style\":{\"color\":{\"text\":\"#000000\"},\"typography\":{\"fontSize\":\"17px\"}}} -->\n<p class=\"has-text-color\" style=\"color:#000000;font-size:17px\"><em>Nature</em>, in the common sense, refers to essences unchanged by man; space, the air, the river, the leaf.&nbsp;<em>Art</em>&nbsp;is applied to the mixture of his will with the same things, as in a house, a canal, a statue, a picture. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"style\":{\"color\":{\"text\":\"#000000\"},\"typography\":{\"fontSize\":\"17px\"}}} -->\n<p class=\"has-text-color\" style=\"color:#000000;font-size:17px\">But his operations taken together are so insignificant, a little chipping, baking, patching, and washing, that in an impression so grand as that of the world on the human mind, they do not vary the result.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"width\":\"33%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:33%\"><!-- wp:spacer {\"height\":\"2vw\"} -->\n<div style=\"height:2vw\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:image {\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://s.w.org/images/core/5.8/outside-01.jpg\" alt=\"The sun setting through a dense forest.\" /></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"width\":\"33.62%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:33.62%\"><!-- wp:image {\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://s.w.org/images/core/5.8/outside-02.jpg\" alt=\"Wind turbines standing on a grassy plain, against a blue sky.\" /></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:columns {\"align\":\"wide\",\"style\":{\"spacing\":{\"blockGap\":{\"left\":\"3vw\"}}}} -->\n<div class=\"wp-block-columns alignwide\"><!-- wp:column {\"width\":\"69%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:69%\"><!-- wp:image {\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://s.w.org/images/core/5.8/outside-03.jpg\" alt=\"The sun shining over a ridge leading down into the shore. In the distance, a car drives down a road.\" /></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"verticalAlignment\":\"center\",\"width\":\"33%\"} -->\n<div class=\"wp-block-column is-vertically-aligned-center\" style=\"flex-basis:33%\"><!-- wp:spacer {\"height\":\"2vw\"} -->\n<div style=\"height:2vw\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:paragraph {\"style\":{\"color\":{\"text\":\"#000000\"},\"typography\":{\"fontSize\":\"17px\"}}} -->\n<p class=\"has-text-color\" style=\"color:#000000;font-size:17px\">Undoubtedly we have no questions to ask which are unanswerable. We must trust the perfection of the creation so far, as to believe that whatever curiosity the order of things has awakened in our minds, the order of things can satisfy. Every man\'s condition is a solution in hieroglyphic to those inquiries he would put.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:group --></div>\n<!-- /wp:group -->\";}i:11;O:8:\"stdClass\":7:{s:2:\"id\";i:192;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:37:\"Media and text with image on the left\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:554:\"\n<div class=\"wp-block-media-text alignfull is-stacked-on-mobile is-vertically-aligned-center\"><figure class=\"wp-block-media-text__media\"><img decoding=\"async\" src=\"https://s.w.org/images/core/5.8/architecture-04.jpg\" alt=\"Close-up, abstract view of architecture.\" /></figure><div class=\"wp-block-media-text__content\">\n<h3 class=\"wp-block-heading has-text-align-center has-text-color\" style=\"color:#000000\"><strong>Open Spaces</strong></h3>\n\n\n\n<p class=\"has-text-align-center has-extra-small-font-size\"><a href=\"#\">See case study ↗</a></p>\n</div></div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:66:\"Media and text block with image to the left and text to the right.\";s:19:\"wpop_viewport_width\";i:1200;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:0:\"\";s:25:\"wpop_contains_block_types\";s:43:\"core/heading,core/media-text,core/paragraph\";}s:14:\"category_slugs\";a:2:{i:0;s:6:\"banner\";i:1;s:8:\"featured\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:844:\"<!-- wp:media-text {\"align\":\"full\",\"mediaType\":\"image\",\"verticalAlignment\":\"center\"} -->\n<div class=\"wp-block-media-text alignfull is-stacked-on-mobile is-vertically-aligned-center\"><figure class=\"wp-block-media-text__media\"><img src=\"https://s.w.org/images/core/5.8/architecture-04.jpg\" alt=\"Close-up, abstract view of architecture.\" /></figure><div class=\"wp-block-media-text__content\"><!-- wp:heading {\"textAlign\":\"center\",\"level\":3,\"style\":{\"color\":{\"text\":\"#000000\"}}} -->\n<h3 class=\"wp-block-heading has-text-align-center has-text-color\" style=\"color:#000000\"><strong>Open Spaces</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"extra-small\"} -->\n<p class=\"has-text-align-center has-extra-small-font-size\"><a href=\"#\">See case study ↗</a></p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:media-text -->\";}i:12;O:8:\"stdClass\":7:{s:2:\"id\";i:185;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:35:\"Large header with left-aligned text\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:1320:\"\n<div class=\"wp-block-cover alignfull\" style=\"min-height:800px\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-60 has-background-dim\"></span><img decoding=\"async\" class=\"wp-block-cover__image-background\" alt=\"\" src=\"https://s.w.org/images/core/5.8/forest.jpg\" data-object-fit=\"cover\" /><div class=\"wp-block-cover__inner-container is-layout-flow wp-block-cover-is-layout-flow\">\n<h2 class=\"wp-block-heading alignwide has-text-color\" style=\"color:#ffe074;font-size:64px\">Forest.</h2>\n\n\n\n<div class=\"wp-block-columns alignwide is-layout-flex wp-container-61 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\" style=\"flex-basis:55%\">\n<div style=\"height:330px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<p class=\"has-text-color\" style=\"color:#ffe074;font-size:12px;line-height:1.3\"><em>Even a child knows how valuable the forest is. The fresh, breathtaking smell of trees. Echoing birds flying above that dense magnitude. A stable climate, a sustainable diverse life and a source of culture. Yet, forests and other ecosystems hang in the balance, threatened to become croplands, pasture, and plantations.</em></p>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\"></div>\n</div>\n</div></div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:29:\"Cover image with quote on top\";s:19:\"wpop_viewport_width\";i:1200;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:0:\"\";s:25:\"wpop_contains_block_types\";s:75:\"core/column,core/columns,core/cover,core/heading,core/paragraph,core/spacer\";}s:14:\"category_slugs\";a:2:{i:0;s:6:\"banner\";i:1;s:8:\"featured\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:1698:\"<!-- wp:cover {\"url\":\"https://s.w.org/images/core/5.8/forest.jpg\",\"dimRatio\":60,\"minHeight\":800,\"align\":\"full\"} -->\n<div class=\"wp-block-cover alignfull\" style=\"min-height:800px\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-60 has-background-dim\"></span><img class=\"wp-block-cover__image-background\" alt=\"\" src=\"https://s.w.org/images/core/5.8/forest.jpg\" data-object-fit=\"cover\" /><div class=\"wp-block-cover__inner-container\"><!-- wp:heading {\"align\":\"wide\",\"style\":{\"color\":{\"text\":\"#ffe074\"},\"typography\":{\"fontSize\":\"64px\"}}} -->\n<h2 class=\"wp-block-heading alignwide has-text-color\" style=\"color:#ffe074;font-size:64px\">Forest.</h2>\n<!-- /wp:heading -->\n\n<!-- wp:columns {\"align\":\"wide\"} -->\n<div class=\"wp-block-columns alignwide\"><!-- wp:column {\"width\":\"55%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:55%\"><!-- wp:spacer {\"height\":\"330px\"} -->\n<div style=\"height:330px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:paragraph {\"style\":{\"color\":{\"text\":\"#ffe074\"},\"typography\":{\"lineHeight\":\"1.3\",\"fontSize\":\"12px\"}}} -->\n<p class=\"has-text-color\" style=\"color:#ffe074;font-size:12px;line-height:1.3\"><em>Even a child knows how valuable the forest is. The fresh, breathtaking smell of trees. Echoing birds flying above that dense magnitude. A stable climate, a sustainable diverse life and a source of culture. Yet, forests and other ecosystems hang in the balance, threatened to become croplands, pasture, and plantations.</em></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div></div>\n<!-- /wp:cover -->\";}i:13;O:8:\"stdClass\":7:{s:2:\"id\";i:184;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:7:\"Heading\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:526:\"\n<h2 class=\"alignwide wp-block-heading\" id=\"we-re-a-studio-in-berlin-with-an-international-practice-in-architecture-urban-planning-and-interior-design-we-believe-in-sharing-knowledge-and-promoting-dialogue-to-increase-the-creative-potential-of-collaboration\" style=\"font-size:48px;line-height:1.1\">We&#8217;re a studio in Berlin with an international practice in architecture, urban planning and interior design. We believe in sharing knowledge and promoting dialogue to increase the creative potential of collaboration.</h2>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:17:\"large text, title\";s:16:\"wpop_description\";s:12:\"Heading text\";s:19:\"wpop_viewport_width\";i:1200;s:16:\"wpop_block_types\";a:1:{i:0;s:12:\"core/heading\";}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:0:\"\";s:25:\"wpop_contains_block_types\";s:12:\"core/heading\";}s:14:\"category_slugs\";a:2:{i:0;s:8:\"featured\";i:1;s:4:\"text\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:621:\"<!-- wp:heading {\"align\":\"wide\",\"style\":{\"typography\":{\"fontSize\":\"48px\",\"lineHeight\":\"1.1\"}}} -->\n<h2 class=\"alignwide\" id=\"we-re-a-studio-in-berlin-with-an-international-practice-in-architecture-urban-planning-and-interior-design-we-believe-in-sharing-knowledge-and-promoting-dialogue-to-increase-the-creative-potential-of-collaboration\" style=\"font-size:48px;line-height:1.1\">We\'re a studio in Berlin with an international practice in architecture, urban planning and interior design. We believe in sharing knowledge and promoting dialogue to increase the creative potential of collaboration.</h2>\n<!-- /wp:heading -->\";}}','no'),(267,'_transient_timeout_elementor_remote_templates_data_3.15.3','1694021035','no'),(268,'_transient_elementor_remote_templates_data_3.15.3','a:823:{i:0;a:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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:7:\"subtype\";s:15:\"product archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:561;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:706;a:18:{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:7:\"subtype\";s:15:\"product archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:562;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:707;a:18:{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:7:\"subtype\";s:15:\"product archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:563;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:708;a:18:{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: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:709;a:18:{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: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:710;a:18:{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: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:711;a:18:{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: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:712;a:18:{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: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:713;a:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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:7:\"subtype\";s:14:\"single product\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:606;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:751;a:18:{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:7:\"subtype\";s:14:\"single product\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:607;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:752;a:18:{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:7:\"subtype\";s:14:\"single product\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:608;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:753;a:18:{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:7:\"subtype\";s:14:\"single product\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:609;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:754;a:18:{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: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:755;a:18:{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: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:756;a:18:{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: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:757;a:18:{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: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:758;a:18:{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: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:759;a:18:{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: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:760;a:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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'),(271,'nav_menu_options','a:2:{i:0;b:0;s:8:\"auto_add\";a:0:{}}','yes'),(272,'elementskit_options','a:1:{s:17:\"megamenu_settings\";a:1:{s:15:\"menu_location_4\";a:1:{s:10:\"is_enabled\";i:0;}}}','yes'),(273,'_site_transient_timeout_available_translations','1693992772','no'),(274,'_site_transient_available_translations','a:131:{s:2:\"af\";a:8:{s:8:\"language\";s:2:\"af\";s:7:\"version\";s:8:\"5.8-beta\";s:7:\"updated\";s:19:\"2021-05-13 15:59:22\";s:12:\"english_name\";s:9:\"Afrikaans\";s:11:\"native_name\";s:9:\"Afrikaans\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.8-beta/af.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"af\";i:2;s:3:\"afr\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"Gaan voort\";}}s:2:\"am\";a:8:{s:8:\"language\";s:2:\"am\";s:7:\"version\";s:5:\"6.0.5\";s:7:\"updated\";s:19:\"2022-09-29 20:43:49\";s:12:\"english_name\";s:7:\"Amharic\";s:11:\"native_name\";s:12:\"አማርኛ\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.0.5/am.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"am\";i:2;s:3:\"amh\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"ቀጥል\";}}s:3:\"arg\";a:8:{s:8:\"language\";s:3:\"arg\";s:7:\"version\";s:8:\"6.2-beta\";s:7:\"updated\";s:19:\"2022-09-22 16:46:56\";s:12:\"english_name\";s:9:\"Aragonese\";s:11:\"native_name\";s:9:\"Aragonés\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/6.2-beta/arg.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"an\";i:2;s:3:\"arg\";i:3;s:3:\"arg\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continar\";}}s:2:\"ar\";a:8:{s:8:\"language\";s:2:\"ar\";s:7:\"version\";s:5:\"6.3.1\";s:7:\"updated\";s:19:\"2023-06-18 08:25:23\";s:12:\"english_name\";s:6:\"Arabic\";s:11:\"native_name\";s:14:\"العربية\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.3.1/ar.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ar\";i:2;s:3:\"ara\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"متابعة\";}}s:3:\"ary\";a:8:{s:8:\"language\";s:3:\"ary\";s:7:\"version\";s:6:\"4.8.22\";s:7:\"updated\";s:19:\"2017-01-26 15:42:35\";s:12:\"english_name\";s:15:\"Moroccan Arabic\";s:11:\"native_name\";s:31:\"العربية المغربية\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/translation/core/4.8.22/ary.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ar\";i:3;s:3:\"ary\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:16:\"المتابعة\";}}s:2:\"as\";a:8:{s:8:\"language\";s:2:\"as\";s:7:\"version\";s:5:\"6.3.1\";s:7:\"updated\";s:19:\"2023-08-28 08:07:35\";s:12:\"english_name\";s:8:\"Assamese\";s:11:\"native_name\";s:21:\"অসমীয়া\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.3.1/as.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"as\";i:2;s:3:\"asm\";i:3;s:3:\"asm\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:3:\"azb\";a:8:{s:8:\"language\";s:3:\"azb\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-09-12 20:34:31\";s:12:\"english_name\";s:17:\"South Azerbaijani\";s:11:\"native_name\";s:29:\"گؤنئی آذربایجان\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7.2/azb.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"az\";i:3;s:3:\"azb\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:2:\"az\";a:8:{s:8:\"language\";s:2:\"az\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-11-06 00:09:27\";s:12:\"english_name\";s:11:\"Azerbaijani\";s:11:\"native_name\";s:16:\"Azərbaycan dili\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.2/az.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"az\";i:2;s:3:\"aze\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:5:\"Davam\";}}s:3:\"bel\";a:8:{s:8:\"language\";s:3:\"bel\";s:7:\"version\";s:6:\"4.9.23\";s:7:\"updated\";s:19:\"2019-10-29 07:54:22\";s:12:\"english_name\";s:10:\"Belarusian\";s:11:\"native_name\";s:29:\"Беларуская мова\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/translation/core/4.9.23/bel.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"be\";i:2;s:3:\"bel\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:20:\"Працягнуць\";}}s:5:\"bg_BG\";a:8:{s:8:\"language\";s:5:\"bg_BG\";s:7:\"version\";s:5:\"6.3.1\";s:7:\"updated\";s:19:\"2023-06-23 11:21:55\";s:12:\"english_name\";s:9:\"Bulgarian\";s:11:\"native_name\";s:18:\"Български\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.3.1/bg_BG.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"bg\";i:2;s:3:\"bul\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"Напред\";}}s:5:\"bn_BD\";a:8:{s:8:\"language\";s:5:\"bn_BD\";s:7:\"version\";s:5:\"6.3.1\";s:7:\"updated\";s:19:\"2023-09-01 08:45:12\";s:12:\"english_name\";s:20:\"Bengali (Bangladesh)\";s:11:\"native_name\";s:15:\"বাংলা\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.3.1/bn_BD.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"bn\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:28:\"চালিয়ে যান\";}}s:2:\"bo\";a:8:{s:8:\"language\";s:2:\"bo\";s:7:\"version\";s:8:\"5.8-beta\";s:7:\"updated\";s:19:\"2020-10-30 03:24:38\";s:12:\"english_name\";s:7:\"Tibetan\";s:11:\"native_name\";s:21:\"བོད་ཡིག\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.8-beta/bo.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"bo\";i:2;s:3:\"tib\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:33:\"མུ་མཐུད་དུ།\";}}s:5:\"bs_BA\";a:8:{s:8:\"language\";s:5:\"bs_BA\";s:7:\"version\";s:5:\"6.2.2\";s:7:\"updated\";s:19:\"2023-02-22 20:45:53\";s:12:\"english_name\";s:7:\"Bosnian\";s:11:\"native_name\";s:8:\"Bosanski\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.2.2/bs_BA.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"bs\";i:2;s:3:\"bos\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:7:\"Nastavi\";}}s:2:\"ca\";a:8:{s:8:\"language\";s:2:\"ca\";s:7:\"version\";s:5:\"6.3.1\";s:7:\"updated\";s:19:\"2023-08-30 09:23:37\";s:12:\"english_name\";s:7:\"Catalan\";s:11:\"native_name\";s:7:\"Català\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.3.1/ca.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ca\";i:2;s:3:\"cat\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continua\";}}s:3:\"ceb\";a:8:{s:8:\"language\";s:3:\"ceb\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-03-02 17:25:51\";s:12:\"english_name\";s:7:\"Cebuano\";s:11:\"native_name\";s:7:\"Cebuano\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7.2/ceb.zip\";s:3:\"iso\";a:2:{i:2;s:3:\"ceb\";i:3;s:3:\"ceb\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:7:\"Padayun\";}}s:5:\"cs_CZ\";a:8:{s:8:\"language\";s:5:\"cs_CZ\";s:7:\"version\";s:5:\"6.3.1\";s:7:\"updated\";s:19:\"2023-08-30 08:20:14\";s:12:\"english_name\";s:5:\"Czech\";s:11:\"native_name\";s:9:\"Čeština\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.3.1/cs_CZ.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"cs\";i:2;s:3:\"ces\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:11:\"Pokračovat\";}}s:2:\"cy\";a:8:{s:8:\"language\";s:2:\"cy\";s:7:\"version\";s:5:\"6.3.1\";s:7:\"updated\";s:19:\"2023-08-31 09:54:31\";s:12:\"english_name\";s:5:\"Welsh\";s:11:\"native_name\";s:7:\"Cymraeg\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.3.1/cy.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"cy\";i:2;s:3:\"cym\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Parhau\";}}s:5:\"da_DK\";a:8:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:5:\"6.3.1\";s:7:\"updated\";s:19:\"2023-08-19 15:27:26\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.3.1/da_DK.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"da\";i:2;s:3:\"dan\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Fortsæt\";}}s:14:\"de_CH_informal\";a:8:{s:8:\"language\";s:14:\"de_CH_informal\";s:7:\"version\";s:5:\"6.3.1\";s:7:\"updated\";s:19:\"2023-08-08 09:52:35\";s:12:\"english_name\";s:30:\"German (Switzerland, Informal)\";s:11:\"native_name\";s:21:\"Deutsch (Schweiz, Du)\";s:7:\"package\";s:73:\"https://downloads.wordpress.org/translation/core/6.3.1/de_CH_informal.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"de\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Weiter\";}}s:5:\"de_AT\";a:8:{s:8:\"language\";s:5:\"de_AT\";s:7:\"version\";s:5:\"6.3.1\";s:7:\"updated\";s:19:\"2023-08-18 08:19:14\";s:12:\"english_name\";s:16:\"German (Austria)\";s:11:\"native_name\";s:21:\"Deutsch (Österreich)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.3.1/de_AT.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"de\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Weiter\";}}s:12:\"de_DE_formal\";a:8:{s:8:\"language\";s:12:\"de_DE_formal\";s:7:\"version\";s:5:\"6.3.1\";s:7:\"updated\";s:19:\"2023-08-29 18:32:34\";s:12:\"english_name\";s:15:\"German (Formal)\";s:11:\"native_name\";s:13:\"Deutsch (Sie)\";s:7:\"package\";s:71:\"https://downloads.wordpress.org/translation/core/6.3.1/de_DE_formal.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"de\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Weiter\";}}s:5:\"de_CH\";a:8:{s:8:\"language\";s:5:\"de_CH\";s:7:\"version\";s:5:\"6.3.1\";s:7:\"updated\";s:19:\"2023-08-08 09:49:50\";s:12:\"english_name\";s:20:\"German (Switzerland)\";s:11:\"native_name\";s:17:\"Deutsch (Schweiz)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.3.1/de_CH.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"de\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Weiter\";}}s:5:\"de_DE\";a:8:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:5:\"6.3.1\";s:7:\"updated\";s:19:\"2023-08-29 18:29:34\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.3.1/de_DE.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"de\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Weiter\";}}s:3:\"dsb\";a:8:{s:8:\"language\";s:3:\"dsb\";s:7:\"version\";s:5:\"6.2.2\";s:7:\"updated\";s:19:\"2022-07-16 12:13:09\";s:12:\"english_name\";s:13:\"Lower Sorbian\";s:11:\"native_name\";s:16:\"Dolnoserbšćina\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.2.2/dsb.zip\";s:3:\"iso\";a:2:{i:2;s:3:\"dsb\";i:3;s:3:\"dsb\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:5:\"Dalej\";}}s:3:\"dzo\";a:8:{s:8:\"language\";s:3:\"dzo\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-06-29 08:59:03\";s:12:\"english_name\";s:8:\"Dzongkha\";s:11:\"native_name\";s:18:\"རྫོང་ཁ\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7.2/dzo.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"dz\";i:2;s:3:\"dzo\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:2:\"el\";a:8:{s:8:\"language\";s:2:\"el\";s:7:\"version\";s:5:\"6.3.1\";s:7:\"updated\";s:19:\"2023-08-30 12:41:04\";s:12:\"english_name\";s:5:\"Greek\";s:11:\"native_name\";s:16:\"Ελληνικά\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.3.1/el.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"el\";i:2;s:3:\"ell\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:16:\"Συνέχεια\";}}s:5:\"en_AU\";a:8:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:5:\"6.3.1\";s:7:\"updated\";s:19:\"2023-08-03 07:13:00\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.3.1/en_AU.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"en\";i:2;s:3:\"eng\";i:3;s:3:\"eng\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:5:\"en_ZA\";a:8:{s:8:\"language\";s:5:\"en_ZA\";s:7:\"version\";s:5:\"6.3.1\";s:7:\"updated\";s:19:\"2023-08-28 15:58:51\";s:12:\"english_name\";s:22:\"English (South Africa)\";s:11:\"native_name\";s:22:\"English (South Africa)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.3.1/en_ZA.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"en\";i:2;s:3:\"eng\";i:3;s:3:\"eng\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:5:\"en_GB\";a:8:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:5:\"6.3.1\";s:7:\"updated\";s:19:\"2023-08-08 16:08:07\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.3.1/en_GB.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"en\";i:2;s:3:\"eng\";i:3;s:3:\"eng\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:5:\"en_CA\";a:8:{s:8:\"language\";s:5:\"en_CA\";s:7:\"version\";s:5:\"6.3.1\";s:7:\"updated\";s:19:\"2023-08-03 07:25:21\";s:12:\"english_name\";s:16:\"English (Canada)\";s:11:\"native_name\";s:16:\"English (Canada)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.3.1/en_CA.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"en\";i:2;s:3:\"eng\";i:3;s:3:\"eng\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:5:\"en_NZ\";a:8:{s:8:\"language\";s:5:\"en_NZ\";s:7:\"version\";s:5:\"6.3.1\";s:7:\"updated\";s:19:\"2023-08-28 15:57:23\";s:12:\"english_name\";s:21:\"English (New Zealand)\";s:11:\"native_name\";s:21:\"English (New Zealand)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.3.1/en_NZ.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"en\";i:2;s:3:\"eng\";i:3;s:3:\"eng\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:2:\"eo\";a:8:{s:8:\"language\";s:2:\"eo\";s:7:\"version\";s:5:\"6.3.1\";s:7:\"updated\";s:19:\"2023-05-17 04:31:21\";s:12:\"english_name\";s:9:\"Esperanto\";s:11:\"native_name\";s:9:\"Esperanto\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.3.1/eo.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"eo\";i:2;s:3:\"epo\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Daŭrigi\";}}s:5:\"es_VE\";a:8:{s:8:\"language\";s:5:\"es_VE\";s:7:\"version\";s:5:\"6.3.1\";s:7:\"updated\";s:19:\"2023-08-04 16:53:05\";s:12:\"english_name\";s:19:\"Spanish (Venezuela)\";s:11:\"native_name\";s:21:\"Español de Venezuela\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.3.1/es_VE.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_ES\";a:8:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:5:\"6.3.1\";s:7:\"updated\";s:19:\"2023-08-31 14:12:31\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.3.1/es_ES.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_MX\";a:8:{s:8:\"language\";s:5:\"es_MX\";s:7:\"version\";s:5:\"6.3.1\";s:7:\"updated\";s:19:\"2023-09-04 13:54:34\";s:12:\"english_name\";s:16:\"Spanish (Mexico)\";s:11:\"native_name\";s:19:\"Español de México\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.3.1/es_MX.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_AR\";a:8:{s:8:\"language\";s:5:\"es_AR\";s:7:\"version\";s:5:\"6.3.1\";s:7:\"updated\";s:19:\"2023-08-31 02:13:04\";s:12:\"english_name\";s:19:\"Spanish (Argentina)\";s:11:\"native_name\";s:21:\"Español de Argentina\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.3.1/es_AR.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_EC\";a:8:{s:8:\"language\";s:5:\"es_EC\";s:7:\"version\";s:5:\"6.2.2\";s:7:\"updated\";s:19:\"2023-04-21 13:32:10\";s:12:\"english_name\";s:17:\"Spanish (Ecuador)\";s:11:\"native_name\";s:19:\"Español de Ecuador\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.2.2/es_EC.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_CO\";a:8:{s:8:\"language\";s:5:\"es_CO\";s:7:\"version\";s:5:\"6.2.2\";s:7:\"updated\";s:19:\"2023-03-14 22:16:37\";s:12:\"english_name\";s:18:\"Spanish (Colombia)\";s:11:\"native_name\";s:20:\"Español de Colombia\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.2.2/es_CO.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_DO\";a:8:{s:8:\"language\";s:5:\"es_DO\";s:7:\"version\";s:5:\"5.8.7\";s:7:\"updated\";s:19:\"2021-10-08 14:32:50\";s:12:\"english_name\";s:28:\"Spanish (Dominican Republic)\";s:11:\"native_name\";s:33:\"Español de República Dominicana\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.8.7/es_DO.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_PE\";a:8:{s:8:\"language\";s:5:\"es_PE\";s:7:\"version\";s:5:\"5.8.7\";s:7:\"updated\";s:19:\"2021-10-04 20:53:18\";s:12:\"english_name\";s:14:\"Spanish (Peru)\";s:11:\"native_name\";s:17:\"Español de Perú\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.8.7/es_PE.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_CL\";a:8:{s:8:\"language\";s:5:\"es_CL\";s:7:\"version\";s:8:\"5.8-beta\";s:7:\"updated\";s:19:\"2021-06-14 16:02:22\";s:12:\"english_name\";s:15:\"Spanish (Chile)\";s:11:\"native_name\";s:17:\"Español de Chile\";s:7:\"package\";s:67:\"https://downloads.wordpress.org/translation/core/5.8-beta/es_CL.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_UY\";a:8:{s:8:\"language\";s:5:\"es_UY\";s:7:\"version\";s:8:\"5.8-beta\";s:7:\"updated\";s:19:\"2021-03-31 18:33:26\";s:12:\"english_name\";s:17:\"Spanish (Uruguay)\";s:11:\"native_name\";s:19:\"Español de Uruguay\";s:7:\"package\";s:67:\"https://downloads.wordpress.org/translation/core/5.8-beta/es_UY.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_PR\";a:8:{s:8:\"language\";s:5:\"es_PR\";s:7:\"version\";s:6:\"5.4.13\";s:7:\"updated\";s:19:\"2020-04-29 15:36:59\";s:12:\"english_name\";s:21:\"Spanish (Puerto Rico)\";s:11:\"native_name\";s:23:\"Español de Puerto Rico\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/5.4.13/es_PR.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_GT\";a:8:{s:8:\"language\";s:5:\"es_GT\";s:7:\"version\";s:6:\"5.2.18\";s:7:\"updated\";s:19:\"2019-03-02 06:35:01\";s:12:\"english_name\";s:19:\"Spanish (Guatemala)\";s:11:\"native_name\";s:21:\"Español de Guatemala\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/5.2.18/es_GT.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_CR\";a:8:{s:8:\"language\";s:5:\"es_CR\";s:7:\"version\";s:5:\"6.3.1\";s:7:\"updated\";s:19:\"2023-08-26 01:50:26\";s:12:\"english_name\";s:20:\"Spanish (Costa Rica)\";s:11:\"native_name\";s:22:\"Español de Costa Rica\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.3.1/es_CR.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:2:\"et\";a:8:{s:8:\"language\";s:2:\"et\";s:7:\"version\";s:8:\"5.8-beta\";s:7:\"updated\";s:19:\"2020-08-12 08:38:59\";s:12:\"english_name\";s:8:\"Estonian\";s:11:\"native_name\";s:5:\"Eesti\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.8-beta/et.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"et\";i:2;s:3:\"est\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Jätka\";}}s:2:\"eu\";a:8:{s:8:\"language\";s:2:\"eu\";s:7:\"version\";s:5:\"6.3.1\";s:7:\"updated\";s:19:\"2023-08-26 22:44:00\";s:12:\"english_name\";s:6:\"Basque\";s:11:\"native_name\";s:7:\"Euskara\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.3.1/eu.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"eu\";i:2;s:3:\"eus\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Jarraitu\";}}s:5:\"fa_IR\";a:8:{s:8:\"language\";s:5:\"fa_IR\";s:7:\"version\";s:5:\"6.3.1\";s:7:\"updated\";s:19:\"2023-08-29 13:15:12\";s:12:\"english_name\";s:7:\"Persian\";s:11:\"native_name\";s:10:\"فارسی\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.3.1/fa_IR.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"fa\";i:2;s:3:\"fas\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"ادامه\";}}s:5:\"fa_AF\";a:8:{s:8:\"language\";s:5:\"fa_AF\";s:7:\"version\";s:5:\"6.3.1\";s:7:\"updated\";s:19:\"2023-08-25 15:24:22\";s:12:\"english_name\";s:21:\"Persian (Afghanistan)\";s:11:\"native_name\";s:31:\"(فارسی (افغانستان\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.3.1/fa_AF.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"fa\";i:2;s:3:\"fas\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"ادامه\";}}s:2:\"fi\";a:8:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:5:\"6.3.1\";s:7:\"updated\";s:19:\"2023-08-29 15:42:01\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.3.1/fi.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"fi\";i:2;s:3:\"fin\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:5:\"Jatka\";}}s:5:\"fr_CA\";a:8:{s:8:\"language\";s:5:\"fr_CA\";s:7:\"version\";s:5:\"6.3.1\";s:7:\"updated\";s:19:\"2023-08-10 17:08:26\";s:12:\"english_name\";s:15:\"French (Canada)\";s:11:\"native_name\";s:19:\"Français du Canada\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.3.1/fr_CA.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"fr\";i:2;s:3:\"fra\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuer\";}}s:5:\"fr_FR\";a:8:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:5:\"6.3.1\";s:7:\"updated\";s:19:\"2023-09-04 09:22:09\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.3.1/fr_FR.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"fr\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuer\";}}s:5:\"fr_BE\";a:8:{s:8:\"language\";s:5:\"fr_BE\";s:7:\"version\";s:8:\"5.8-beta\";s:7:\"updated\";s:19:\"2021-02-22 13:54:46\";s:12:\"english_name\";s:16:\"French (Belgium)\";s:11:\"native_name\";s:21:\"Français de Belgique\";s:7:\"package\";s:67:\"https://downloads.wordpress.org/translation/core/5.8-beta/fr_BE.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"fr\";i:2;s:3:\"fra\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuer\";}}s:3:\"fur\";a:8:{s:8:\"language\";s:3:\"fur\";s:7:\"version\";s:6:\"4.8.22\";s:7:\"updated\";s:19:\"2023-04-30 13:56:46\";s:12:\"english_name\";s:8:\"Friulian\";s:11:\"native_name\";s:8:\"Friulian\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/translation/core/4.8.22/fur.zip\";s:3:\"iso\";a:2:{i:2;s:3:\"fur\";i:3;s:3:\"fur\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:2:\"fy\";a:8:{s:8:\"language\";s:2:\"fy\";s:7:\"version\";s:5:\"6.2.2\";s:7:\"updated\";s:19:\"2022-12-25 12:53:23\";s:12:\"english_name\";s:7:\"Frisian\";s:11:\"native_name\";s:5:\"Frysk\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.2.2/fy.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"fy\";i:2;s:3:\"fry\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Trochgean\";}}s:2:\"gd\";a:8:{s:8:\"language\";s:2:\"gd\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-08-23 17:41:37\";s:12:\"english_name\";s:15:\"Scottish Gaelic\";s:11:\"native_name\";s:9:\"Gàidhlig\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.2/gd.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"gd\";i:2;s:3:\"gla\";i:3;s:3:\"gla\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:15:\"Lean air adhart\";}}s:5:\"gl_ES\";a:8:{s:8:\"language\";s:5:\"gl_ES\";s:7:\"version\";s:5:\"6.3.1\";s:7:\"updated\";s:19:\"2023-08-30 21:10:41\";s:12:\"english_name\";s:8:\"Galician\";s:11:\"native_name\";s:6:\"Galego\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.3.1/gl_ES.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"gl\";i:2;s:3:\"glg\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:2:\"gu\";a:8:{s:8:\"language\";s:2:\"gu\";s:7:\"version\";s:5:\"6.3.1\";s:7:\"updated\";s:19:\"2023-08-09 07:20:47\";s:12:\"english_name\";s:8:\"Gujarati\";s:11:\"native_name\";s:21:\"ગુજરાતી\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.3.1/gu.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"gu\";i:2;s:3:\"guj\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:25:\"ચાલુ રાખો\";}}s:3:\"haz\";a:8:{s:8:\"language\";s:3:\"haz\";s:7:\"version\";s:6:\"4.4.30\";s:7:\"updated\";s:19:\"2015-12-05 00:59:09\";s:12:\"english_name\";s:8:\"Hazaragi\";s:11:\"native_name\";s:15:\"هزاره گی\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/translation/core/4.4.30/haz.zip\";s:3:\"iso\";a:1:{i:3;s:3:\"haz\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"ادامه\";}}s:5:\"he_IL\";a:8:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:5:\"6.2.2\";s:7:\"updated\";s:19:\"2023-05-28 22:06:16\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.2.2/he_IL.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"he\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"המשך\";}}s:5:\"hi_IN\";a:8:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:5:\"6.3.1\";s:7:\"updated\";s:19:\"2023-08-28 09:07:29\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.3.1/hi_IN.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"hi\";i:2;s:3:\"hin\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:25:\"जारी रखें\";}}s:2:\"hr\";a:8:{s:8:\"language\";s:2:\"hr\";s:7:\"version\";s:5:\"6.3.1\";s:7:\"updated\";s:19:\"2023-09-05 16:40:26\";s:12:\"english_name\";s:8:\"Croatian\";s:11:\"native_name\";s:8:\"Hrvatski\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.3.1/hr.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"hr\";i:2;s:3:\"hrv\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:7:\"Nastavi\";}}s:3:\"hsb\";a:8:{s:8:\"language\";s:3:\"hsb\";s:7:\"version\";s:5:\"6.2.2\";s:7:\"updated\";s:19:\"2023-02-22 17:37:32\";s:12:\"english_name\";s:13:\"Upper Sorbian\";s:11:\"native_name\";s:17:\"Hornjoserbšćina\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.2.2/hsb.zip\";s:3:\"iso\";a:2:{i:2;s:3:\"hsb\";i:3;s:3:\"hsb\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:4:\"Dale\";}}s:5:\"hu_HU\";a:8:{s:8:\"language\";s:5:\"hu_HU\";s:7:\"version\";s:5:\"6.3.1\";s:7:\"updated\";s:19:\"2023-09-05 11:00:10\";s:12:\"english_name\";s:9:\"Hungarian\";s:11:\"native_name\";s:6:\"Magyar\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.3.1/hu_HU.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"hu\";i:2;s:3:\"hun\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"Folytatás\";}}s:2:\"hy\";a:8:{s:8:\"language\";s:2:\"hy\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-12-03 16:21:10\";s:12:\"english_name\";s:8:\"Armenian\";s:11:\"native_name\";s:14:\"Հայերեն\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.2/hy.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"hy\";i:2;s:3:\"hye\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:20:\"Շարունակել\";}}s:5:\"id_ID\";a:8:{s:8:\"language\";s:5:\"id_ID\";s:7:\"version\";s:5:\"6.3.1\";s:7:\"updated\";s:19:\"2023-08-18 14:34:17\";s:12:\"english_name\";s:10:\"Indonesian\";s:11:\"native_name\";s:16:\"Bahasa Indonesia\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.3.1/id_ID.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"id\";i:2;s:3:\"ind\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Lanjutkan\";}}s:5:\"is_IS\";a:8:{s:8:\"language\";s:5:\"is_IS\";s:7:\"version\";s:6:\"4.9.23\";s:7:\"updated\";s:19:\"2018-12-11 10:40:02\";s:12:\"english_name\";s:9:\"Icelandic\";s:11:\"native_name\";s:9:\"Íslenska\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/4.9.23/is_IS.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"is\";i:2;s:3:\"isl\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Áfram\";}}s:5:\"it_IT\";a:8:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:5:\"6.3.1\";s:7:\"updated\";s:19:\"2023-08-24 17:16:15\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.3.1/it_IT.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"it\";i:2;s:3:\"ita\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continua\";}}s:2:\"ja\";a:8:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:5:\"6.3.1\";s:7:\"updated\";s:19:\"2023-09-04 04:40:32\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.3.1/ja.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"ja\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"次へ\";}}s:5:\"jv_ID\";a:8:{s:8:\"language\";s:5:\"jv_ID\";s:7:\"version\";s:6:\"4.9.23\";s:7:\"updated\";s:19:\"2019-02-16 23:58:56\";s:12:\"english_name\";s:8:\"Javanese\";s:11:\"native_name\";s:9:\"Basa Jawa\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/4.9.23/jv_ID.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"jv\";i:2;s:3:\"jav\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Nerusaké\";}}s:5:\"ka_GE\";a:8:{s:8:\"language\";s:5:\"ka_GE\";s:7:\"version\";s:5:\"6.0.5\";s:7:\"updated\";s:19:\"2023-05-19 07:40:56\";s:12:\"english_name\";s:8:\"Georgian\";s:11:\"native_name\";s:21:\"ქართული\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.0.5/ka_GE.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ka\";i:2;s:3:\"kat\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:30:\"გაგრძელება\";}}s:3:\"kab\";a:8:{s:8:\"language\";s:3:\"kab\";s:7:\"version\";s:5:\"6.2.2\";s:7:\"updated\";s:19:\"2023-07-05 11:40:39\";s:12:\"english_name\";s:6:\"Kabyle\";s:11:\"native_name\";s:9:\"Taqbaylit\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.2.2/kab.zip\";s:3:\"iso\";a:2:{i:2;s:3:\"kab\";i:3;s:3:\"kab\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Kemmel\";}}s:2:\"kk\";a:8:{s:8:\"language\";s:2:\"kk\";s:7:\"version\";s:6:\"4.9.23\";s:7:\"updated\";s:19:\"2018-07-10 11:35:44\";s:12:\"english_name\";s:6:\"Kazakh\";s:11:\"native_name\";s:19:\"Қазақ тілі\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.9.23/kk.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"kk\";i:2;s:3:\"kaz\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:20:\"Жалғастыру\";}}s:2:\"km\";a:8:{s:8:\"language\";s:2:\"km\";s:7:\"version\";s:6:\"5.2.18\";s:7:\"updated\";s:19:\"2019-06-10 16:18:28\";s:12:\"english_name\";s:5:\"Khmer\";s:11:\"native_name\";s:27:\"ភាសាខ្មែរ\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/5.2.18/km.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"km\";i:2;s:3:\"khm\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"បន្ត\";}}s:2:\"kn\";a:8:{s:8:\"language\";s:2:\"kn\";s:7:\"version\";s:5:\"6.1.3\";s:7:\"updated\";s:19:\"2022-10-20 17:15:28\";s:12:\"english_name\";s:7:\"Kannada\";s:11:\"native_name\";s:15:\"ಕನ್ನಡ\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.1.3/kn.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"kn\";i:2;s:3:\"kan\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:30:\"ಮುಂದುವರಿಸು\";}}s:5:\"ko_KR\";a:8:{s:8:\"language\";s:5:\"ko_KR\";s:7:\"version\";s:5:\"6.3.1\";s:7:\"updated\";s:19:\"2023-08-04 06:07:20\";s:12:\"english_name\";s:6:\"Korean\";s:11:\"native_name\";s:9:\"한국어\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.3.1/ko_KR.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ko\";i:2;s:3:\"kor\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"계속\";}}s:3:\"ckb\";a:8:{s:8:\"language\";s:3:\"ckb\";s:7:\"version\";s:5:\"6.3.1\";s:7:\"updated\";s:19:\"2023-09-02 15:00:25\";s:12:\"english_name\";s:16:\"Kurdish (Sorani)\";s:11:\"native_name\";s:13:\"كوردی‎\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.3.1/ckb.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ku\";i:3;s:3:\"ckb\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:30:\"به‌رده‌وام به‌\";}}s:3:\"kir\";a:8:{s:8:\"language\";s:3:\"kir\";s:7:\"version\";s:5:\"6.3.1\";s:7:\"updated\";s:19:\"2023-08-18 17:02:03\";s:12:\"english_name\";s:6:\"Kyrgyz\";s:11:\"native_name\";s:16:\"Кыргызча\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.3.1/kir.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"ky\";i:2;s:3:\"kir\";i:3;s:3:\"kir\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:14:\"Улантуу\";}}s:2:\"lo\";a:8:{s:8:\"language\";s:2:\"lo\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-11-12 09:59:23\";s:12:\"english_name\";s:3:\"Lao\";s:11:\"native_name\";s:21:\"ພາສາລາວ\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.2/lo.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"lo\";i:2;s:3:\"lao\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:18:\"ຕໍ່​ໄປ\";}}s:5:\"lt_LT\";a:8:{s:8:\"language\";s:5:\"lt_LT\";s:7:\"version\";s:5:\"6.1.3\";s:7:\"updated\";s:19:\"2022-11-24 03:51:58\";s:12:\"english_name\";s:10:\"Lithuanian\";s:11:\"native_name\";s:15:\"Lietuvių kalba\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.1.3/lt_LT.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"lt\";i:2;s:3:\"lit\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Tęsti\";}}s:2:\"lv\";a:8:{s:8:\"language\";s:2:\"lv\";s:7:\"version\";s:5:\"6.3.1\";s:7:\"updated\";s:19:\"2023-09-01 07:05:22\";s:12:\"english_name\";s:7:\"Latvian\";s:11:\"native_name\";s:16:\"Latviešu valoda\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.3.1/lv.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"lv\";i:2;s:3:\"lav\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Turpināt\";}}s:5:\"mk_MK\";a:8:{s:8:\"language\";s:5:\"mk_MK\";s:7:\"version\";s:5:\"6.0.5\";s:7:\"updated\";s:19:\"2022-10-01 09:23:52\";s:12:\"english_name\";s:10:\"Macedonian\";s:11:\"native_name\";s:31:\"Македонски јазик\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.0.5/mk_MK.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"mk\";i:2;s:3:\"mkd\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:16:\"Продолжи\";}}s:5:\"ml_IN\";a:8:{s:8:\"language\";s:5:\"ml_IN\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-27 03:43:32\";s:12:\"english_name\";s:9:\"Malayalam\";s:11:\"native_name\";s:18:\"മലയാളം\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/ml_IN.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ml\";i:2;s:3:\"mal\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:18:\"തുടരുക\";}}s:2:\"mn\";a:8:{s:8:\"language\";s:2:\"mn\";s:7:\"version\";s:5:\"6.3.1\";s:7:\"updated\";s:19:\"2023-08-03 01:58:55\";s:12:\"english_name\";s:9:\"Mongolian\";s:11:\"native_name\";s:12:\"Монгол\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.3.1/mn.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"mn\";i:2;s:3:\"mon\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:2:\"mr\";a:8:{s:8:\"language\";s:2:\"mr\";s:7:\"version\";s:6:\"4.9.23\";s:7:\"updated\";s:19:\"2019-11-22 15:32:08\";s:12:\"english_name\";s:7:\"Marathi\";s:11:\"native_name\";s:15:\"मराठी\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.9.23/mr.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"mr\";i:2;s:3:\"mar\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:25:\"सुरु ठेवा\";}}s:5:\"ms_MY\";a:8:{s:8:\"language\";s:5:\"ms_MY\";s:7:\"version\";s:6:\"5.5.12\";s:7:\"updated\";s:19:\"2022-03-11 13:52:22\";s:12:\"english_name\";s:5:\"Malay\";s:11:\"native_name\";s:13:\"Bahasa Melayu\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/5.5.12/ms_MY.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ms\";i:2;s:3:\"msa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Teruskan\";}}s:5:\"my_MM\";a:8:{s:8:\"language\";s:5:\"my_MM\";s:7:\"version\";s:6:\"4.2.35\";s:7:\"updated\";s:19:\"2017-12-26 11:57:10\";s:12:\"english_name\";s:17:\"Myanmar (Burmese)\";s:11:\"native_name\";s:15:\"ဗမာစာ\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/4.2.35/my_MM.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"my\";i:2;s:3:\"mya\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:54:\"ဆက်လက်လုပ်ဆောင်ပါ။\";}}s:5:\"nb_NO\";a:8:{s:8:\"language\";s:5:\"nb_NO\";s:7:\"version\";s:5:\"6.3.1\";s:7:\"updated\";s:19:\"2023-08-19 21:47:18\";s:12:\"english_name\";s:19:\"Norwegian (Bokmål)\";s:11:\"native_name\";s:13:\"Norsk bokmål\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.3.1/nb_NO.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"nb\";i:2;s:3:\"nob\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Fortsett\";}}s:5:\"ne_NP\";a:8:{s:8:\"language\";s:5:\"ne_NP\";s:7:\"version\";s:5:\"6.3.1\";s:7:\"updated\";s:19:\"2023-08-25 08:55:15\";s:12:\"english_name\";s:6:\"Nepali\";s:11:\"native_name\";s:18:\"नेपाली\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.3.1/ne_NP.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ne\";i:2;s:3:\"nep\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:43:\"जारी राख्नुहोस्\";}}s:12:\"nl_NL_formal\";a:8:{s:8:\"language\";s:12:\"nl_NL_formal\";s:7:\"version\";s:5:\"6.3.1\";s:7:\"updated\";s:19:\"2023-08-29 11:56:04\";s:12:\"english_name\";s:14:\"Dutch (Formal)\";s:11:\"native_name\";s:20:\"Nederlands (Formeel)\";s:7:\"package\";s:71:\"https://downloads.wordpress.org/translation/core/6.3.1/nl_NL_formal.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"nl\";i:2;s:3:\"nld\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Doorgaan\";}}s:5:\"nl_BE\";a:8:{s:8:\"language\";s:5:\"nl_BE\";s:7:\"version\";s:5:\"6.3.1\";s:7:\"updated\";s:19:\"2023-08-30 11:01:53\";s:12:\"english_name\";s:15:\"Dutch (Belgium)\";s:11:\"native_name\";s:20:\"Nederlands (België)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.3.1/nl_BE.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"nl\";i:2;s:3:\"nld\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Doorgaan\";}}s:5:\"nl_NL\";a:8:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:5:\"6.3.1\";s:7:\"updated\";s:19:\"2023-08-31 11:52:08\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.3.1/nl_NL.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"nl\";i:2;s:3:\"nld\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Doorgaan\";}}s:5:\"nn_NO\";a:8:{s:8:\"language\";s:5:\"nn_NO\";s:7:\"version\";s:8:\"5.8-beta\";s:7:\"updated\";s:19:\"2021-03-18 10:59:16\";s:12:\"english_name\";s:19:\"Norwegian (Nynorsk)\";s:11:\"native_name\";s:13:\"Norsk nynorsk\";s:7:\"package\";s:67:\"https://downloads.wordpress.org/translation/core/5.8-beta/nn_NO.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"nn\";i:2;s:3:\"nno\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Hald fram\";}}s:3:\"oci\";a:8:{s:8:\"language\";s:3:\"oci\";s:7:\"version\";s:6:\"4.8.22\";s:7:\"updated\";s:19:\"2017-08-25 10:03:08\";s:12:\"english_name\";s:7:\"Occitan\";s:11:\"native_name\";s:7:\"Occitan\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/translation/core/4.8.22/oci.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"oc\";i:2;s:3:\"oci\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Contunhar\";}}s:5:\"pa_IN\";a:8:{s:8:\"language\";s:5:\"pa_IN\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-16 05:19:43\";s:12:\"english_name\";s:15:\"Panjabi (India)\";s:11:\"native_name\";s:18:\"ਪੰਜਾਬੀ\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/pa_IN.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"pa\";i:2;s:3:\"pan\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:25:\"ਜਾਰੀ ਰੱਖੋ\";}}s:5:\"pl_PL\";a:8:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:5:\"6.3.1\";s:7:\"updated\";s:19:\"2023-08-02 09:00:40\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.3.1/pl_PL.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"pl\";i:2;s:3:\"pol\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Kontynuuj\";}}s:2:\"ps\";a:8:{s:8:\"language\";s:2:\"ps\";s:7:\"version\";s:6:\"4.3.31\";s:7:\"updated\";s:19:\"2015-12-02 21:41:29\";s:12:\"english_name\";s:6:\"Pashto\";s:11:\"native_name\";s:8:\"پښتو\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.3.31/ps.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ps\";i:2;s:3:\"pus\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:19:\"دوام ورکړه\";}}s:5:\"pt_AO\";a:8:{s:8:\"language\";s:5:\"pt_AO\";s:7:\"version\";s:5:\"6.3.1\";s:7:\"updated\";s:19:\"2023-08-21 12:17:05\";s:12:\"english_name\";s:19:\"Portuguese (Angola)\";s:11:\"native_name\";s:20:\"Português de Angola\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.3.1/pt_AO.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"pt\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"pt_BR\";a:8:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:5:\"6.3.1\";s:7:\"updated\";s:19:\"2023-08-29 11:22:05\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.3.1/pt_BR.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"pt\";i:2;s:3:\"por\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:10:\"pt_PT_ao90\";a:8:{s:8:\"language\";s:10:\"pt_PT_ao90\";s:7:\"version\";s:5:\"6.3.1\";s:7:\"updated\";s:19:\"2023-09-01 09:20:11\";s:12:\"english_name\";s:27:\"Portuguese (Portugal, AO90)\";s:11:\"native_name\";s:17:\"Português (AO90)\";s:7:\"package\";s:69:\"https://downloads.wordpress.org/translation/core/6.3.1/pt_PT_ao90.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"pt\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"pt_PT\";a:8:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:5:\"6.3.1\";s:7:\"updated\";s:19:\"2023-09-01 09:19:52\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.3.1/pt_PT.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"pt\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:3:\"rhg\";a:8:{s:8:\"language\";s:3:\"rhg\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-03-16 13:03:18\";s:12:\"english_name\";s:8:\"Rohingya\";s:11:\"native_name\";s:8:\"Ruáinga\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7.2/rhg.zip\";s:3:\"iso\";a:1:{i:3;s:3:\"rhg\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:5:\"ro_RO\";a:8:{s:8:\"language\";s:5:\"ro_RO\";s:7:\"version\";s:5:\"6.3.1\";s:7:\"updated\";s:19:\"2023-09-01 03:55:12\";s:12:\"english_name\";s:8:\"Romanian\";s:11:\"native_name\";s:8:\"Română\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.3.1/ro_RO.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ro\";i:2;s:3:\"ron\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuă\";}}s:5:\"ru_RU\";a:8:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:5:\"6.3.1\";s:7:\"updated\";s:19:\"2023-08-29 11:43:02\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.3.1/ru_RU.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ru\";i:2;s:3:\"rus\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:20:\"Продолжить\";}}s:3:\"sah\";a:8:{s:8:\"language\";s:3:\"sah\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-21 02:06:41\";s:12:\"english_name\";s:5:\"Sakha\";s:11:\"native_name\";s:14:\"Сахалыы\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7.2/sah.zip\";s:3:\"iso\";a:2:{i:2;s:3:\"sah\";i:3;s:3:\"sah\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"Салҕаа\";}}s:3:\"snd\";a:8:{s:8:\"language\";s:3:\"snd\";s:7:\"version\";s:6:\"5.4.13\";s:7:\"updated\";s:19:\"2020-07-07 01:53:37\";s:12:\"english_name\";s:6:\"Sindhi\";s:11:\"native_name\";s:8:\"سنڌي\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/translation/core/5.4.13/snd.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"sd\";i:2;s:3:\"snd\";i:3;s:3:\"snd\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:15:\"اڳتي هلو\";}}s:5:\"si_LK\";a:8:{s:8:\"language\";s:5:\"si_LK\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-11-12 06:00:52\";s:12:\"english_name\";s:7:\"Sinhala\";s:11:\"native_name\";s:15:\"සිංහල\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/si_LK.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"si\";i:2;s:3:\"sin\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:44:\"දිගටම කරගෙන යන්න\";}}s:5:\"sk_SK\";a:8:{s:8:\"language\";s:5:\"sk_SK\";s:7:\"version\";s:5:\"6.3.1\";s:7:\"updated\";s:19:\"2023-09-05 10:25:53\";s:12:\"english_name\";s:6:\"Slovak\";s:11:\"native_name\";s:11:\"Slovenčina\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.3.1/sk_SK.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"sk\";i:2;s:3:\"slk\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"Pokračovať\";}}s:3:\"skr\";a:8:{s:8:\"language\";s:3:\"skr\";s:7:\"version\";s:5:\"6.3.1\";s:7:\"updated\";s:19:\"2023-08-13 11:41:50\";s:12:\"english_name\";s:7:\"Saraiki\";s:11:\"native_name\";s:14:\"سرائیکی\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.3.1/skr.zip\";s:3:\"iso\";a:1:{i:3;s:3:\"skr\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:17:\"جاری رکھو\";}}s:5:\"sl_SI\";a:8:{s:8:\"language\";s:5:\"sl_SI\";s:7:\"version\";s:5:\"6.3.1\";s:7:\"updated\";s:19:\"2023-08-30 12:28:12\";s:12:\"english_name\";s:9:\"Slovenian\";s:11:\"native_name\";s:13:\"Slovenščina\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.3.1/sl_SI.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"sl\";i:2;s:3:\"slv\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Nadaljuj\";}}s:2:\"sq\";a:8:{s:8:\"language\";s:2:\"sq\";s:7:\"version\";s:5:\"6.3.1\";s:7:\"updated\";s:19:\"2023-08-19 10:40:17\";s:12:\"english_name\";s:8:\"Albanian\";s:11:\"native_name\";s:5:\"Shqip\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.3.1/sq.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"sq\";i:2;s:3:\"sqi\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Vazhdo\";}}s:5:\"sr_RS\";a:8:{s:8:\"language\";s:5:\"sr_RS\";s:7:\"version\";s:5:\"5.8.7\";s:7:\"updated\";s:19:\"2021-08-01 21:21:06\";s:12:\"english_name\";s:7:\"Serbian\";s:11:\"native_name\";s:23:\"Српски језик\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.8.7/sr_RS.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"sr\";i:2;s:3:\"srp\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:14:\"Настави\";}}s:5:\"sv_SE\";a:8:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:5:\"6.3.1\";s:7:\"updated\";s:19:\"2023-08-29 11:44:44\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.3.1/sv_SE.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"sv\";i:2;s:3:\"swe\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Fortsätt\";}}s:2:\"sw\";a:8:{s:8:\"language\";s:2:\"sw\";s:7:\"version\";s:6:\"5.3.15\";s:7:\"updated\";s:19:\"2019-10-13 15:35:35\";s:12:\"english_name\";s:7:\"Swahili\";s:11:\"native_name\";s:9:\"Kiswahili\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/5.3.15/sw.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"sw\";i:2;s:3:\"swa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:7:\"Endelea\";}}s:3:\"szl\";a:8:{s:8:\"language\";s:3:\"szl\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-09-24 19:58:14\";s:12:\"english_name\";s:8:\"Silesian\";s:11:\"native_name\";s:17:\"Ślōnskŏ gŏdka\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7.2/szl.zip\";s:3:\"iso\";a:1:{i:3;s:3:\"szl\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:13:\"Kōntynuować\";}}s:5:\"ta_IN\";a:8:{s:8:\"language\";s:5:\"ta_IN\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-27 03:22:47\";s:12:\"english_name\";s:5:\"Tamil\";s:11:\"native_name\";s:15:\"தமிழ்\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/ta_IN.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ta\";i:2;s:3:\"tam\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:24:\"தொடரவும்\";}}s:5:\"ta_LK\";a:8:{s:8:\"language\";s:5:\"ta_LK\";s:7:\"version\";s:6:\"4.2.35\";s:7:\"updated\";s:19:\"2015-12-03 01:07:44\";s:12:\"english_name\";s:17:\"Tamil (Sri Lanka)\";s:11:\"native_name\";s:15:\"தமிழ்\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/4.2.35/ta_LK.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ta\";i:2;s:3:\"tam\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:18:\"தொடர்க\";}}s:2:\"te\";a:8:{s:8:\"language\";s:2:\"te\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-26 15:47:39\";s:12:\"english_name\";s:6:\"Telugu\";s:11:\"native_name\";s:18:\"తెలుగు\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.2/te.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"te\";i:2;s:3:\"tel\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:30:\"కొనసాగించు\";}}s:2:\"th\";a:8:{s:8:\"language\";s:2:\"th\";s:7:\"version\";s:5:\"5.8.7\";s:7:\"updated\";s:19:\"2022-06-08 04:30:30\";s:12:\"english_name\";s:4:\"Thai\";s:11:\"native_name\";s:9:\"ไทย\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/5.8.7/th.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"th\";i:2;s:3:\"tha\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:15:\"ต่อไป\";}}s:2:\"tl\";a:8:{s:8:\"language\";s:2:\"tl\";s:7:\"version\";s:6:\"4.8.22\";s:7:\"updated\";s:19:\"2017-09-30 09:04:29\";s:12:\"english_name\";s:7:\"Tagalog\";s:11:\"native_name\";s:7:\"Tagalog\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.8.22/tl.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"tl\";i:2;s:3:\"tgl\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"Magpatuloy\";}}s:5:\"tr_TR\";a:8:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:5:\"6.3.1\";s:7:\"updated\";s:19:\"2023-08-29 22:20:22\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.3.1/tr_TR.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"tr\";i:2;s:3:\"tur\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:5:\"Devam\";}}s:5:\"tt_RU\";a:8:{s:8:\"language\";s:5:\"tt_RU\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-11-20 20:20:50\";s:12:\"english_name\";s:5:\"Tatar\";s:11:\"native_name\";s:19:\"Татар теле\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/tt_RU.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"tt\";i:2;s:3:\"tat\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:17:\"дәвам итү\";}}s:3:\"tah\";a:8:{s:8:\"language\";s:3:\"tah\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-03-06 18:39:39\";s:12:\"english_name\";s:8:\"Tahitian\";s:11:\"native_name\";s:10:\"Reo Tahiti\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7.2/tah.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"ty\";i:2;s:3:\"tah\";i:3;s:3:\"tah\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:5:\"ug_CN\";a:8:{s:8:\"language\";s:5:\"ug_CN\";s:7:\"version\";s:6:\"4.9.23\";s:7:\"updated\";s:19:\"2021-07-03 18:41:33\";s:12:\"english_name\";s:6:\"Uighur\";s:11:\"native_name\";s:16:\"ئۇيغۇرچە\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/4.9.23/ug_CN.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ug\";i:2;s:3:\"uig\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:26:\"داۋاملاشتۇرۇش\";}}s:2:\"uk\";a:8:{s:8:\"language\";s:2:\"uk\";s:7:\"version\";s:5:\"6.1.3\";s:7:\"updated\";s:19:\"2023-03-04 10:46:30\";s:12:\"english_name\";s:9:\"Ukrainian\";s:11:\"native_name\";s:20:\"Українська\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.1.3/uk.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"uk\";i:2;s:3:\"ukr\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:20:\"Продовжити\";}}s:2:\"ur\";a:8:{s:8:\"language\";s:2:\"ur\";s:7:\"version\";s:6:\"5.4.13\";s:7:\"updated\";s:19:\"2020-04-09 11:17:33\";s:12:\"english_name\";s:4:\"Urdu\";s:11:\"native_name\";s:8:\"اردو\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/5.4.13/ur.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ur\";i:2;s:3:\"urd\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:19:\"جاری رکھیں\";}}s:5:\"uz_UZ\";a:8:{s:8:\"language\";s:5:\"uz_UZ\";s:7:\"version\";s:8:\"5.8-beta\";s:7:\"updated\";s:19:\"2021-02-28 12:02:22\";s:12:\"english_name\";s:5:\"Uzbek\";s:11:\"native_name\";s:11:\"O‘zbekcha\";s:7:\"package\";s:67:\"https://downloads.wordpress.org/translation/core/5.8-beta/uz_UZ.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"uz\";i:2;s:3:\"uzb\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:11:\"Davom etish\";}}s:2:\"vi\";a:8:{s:8:\"language\";s:2:\"vi\";s:7:\"version\";s:5:\"6.2.2\";s:7:\"updated\";s:19:\"2023-07-15 15:30:50\";s:12:\"english_name\";s:10:\"Vietnamese\";s:11:\"native_name\";s:14:\"Tiếng Việt\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.2.2/vi.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"vi\";i:2;s:3:\"vie\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"Tiếp tục\";}}s:5:\"zh_TW\";a:8:{s:8:\"language\";s:5:\"zh_TW\";s:7:\"version\";s:5:\"6.3.1\";s:7:\"updated\";s:19:\"2023-08-29 16:27:09\";s:12:\"english_name\";s:16:\"Chinese (Taiwan)\";s:11:\"native_name\";s:12:\"繁體中文\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.3.1/zh_TW.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"zh\";i:2;s:3:\"zho\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"繼續\";}}s:5:\"zh_HK\";a:8:{s:8:\"language\";s:5:\"zh_HK\";s:7:\"version\";s:5:\"6.2.2\";s:7:\"updated\";s:19:\"2022-07-15 15:25:03\";s:12:\"english_name\";s:19:\"Chinese (Hong Kong)\";s:11:\"native_name\";s:12:\"香港中文\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.2.2/zh_HK.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"zh\";i:2;s:3:\"zho\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"繼續\";}}s:5:\"zh_CN\";a:8:{s:8:\"language\";s:5:\"zh_CN\";s:7:\"version\";s:5:\"6.3.1\";s:7:\"updated\";s:19:\"2023-08-17 14:06:22\";s:12:\"english_name\";s:15:\"Chinese (China)\";s:11:\"native_name\";s:12:\"简体中文\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.3.1/zh_CN.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"zh\";i:2;s:3:\"zho\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"继续\";}}}','no'),(277,'elementskit-lite__stories_last_check','1694061775','yes');
INSERT INTO `wp_options` VALUES (278,'elementskit-lite__stories_data','O:8:\"stdClass\":10:{s:8:\"10010588\";O:8:\"stdClass\":9:{s:2:\"id\";i:10010588;s:5:\"title\";s:48:\"WooCommerce Inventory Management: How to Nail it\";s:11:\"description\";s:0:\"\";s:7:\"plugins\";a:4:{i:0;s:16:\"elementskit-lite\";i:1;s:7:\"metform\";i:2;s:10:\"shopengine\";i:3;s:9:\"wp-social\";}s:4:\"type\";s:4:\"news\";s:8:\"priority\";s:6:\"normal\";s:5:\"start\";b:0;s:3:\"end\";b:0;s:4:\"data\";O:8:\"stdClass\":6:{s:4:\"type\";s:4:\"news\";s:10:\"story_link\";s:51:\"https://wpmet.com/woocommerce-inventory-management/\";s:11:\"story_image\";s:0:\"\";s:9:\"blacklist\";s:0:\"\";s:9:\"whitelist\";s:0:\"\";s:9:\"style_css\";s:0:\"\";}}s:8:\"10010587\";O:8:\"stdClass\":9:{s:2:\"id\";i:10010587;s:5:\"title\";s:69:\"How to Create Live Sales Notification for WooCommerce in Simple Steps\";s:11:\"description\";s:0:\"\";s:7:\"plugins\";a:4:{i:0;s:16:\"elementskit-lite\";i:1;s:7:\"metform\";i:2;s:10:\"shopengine\";i:3;s:9:\"wp-social\";}s:4:\"type\";s:4:\"news\";s:8:\"priority\";s:6:\"normal\";s:5:\"start\";b:0;s:3:\"end\";b:0;s:4:\"data\";O:8:\"stdClass\":6:{s:4:\"type\";s:4:\"news\";s:10:\"story_link\";s:58:\"https://wpmet.com/live-sales-notification-for-woocommerce/\";s:11:\"story_image\";s:0:\"\";s:9:\"blacklist\";s:0:\"\";s:9:\"whitelist\";s:0:\"\";s:9:\"style_css\";s:0:\"\";}}s:8:\"10010586\";O:8:\"stdClass\":9:{s:2:\"id\";i:10010586;s:5:\"title\";s:53:\"How to Limit Form Entries in WordPress (3 Easy Steps)\";s:11:\"description\";s:0:\"\";s:7:\"plugins\";a:4:{i:0;s:16:\"elementskit-lite\";i:1;s:7:\"metform\";i:2;s:10:\"shopengine\";i:3;s:9:\"wp-social\";}s:4:\"type\";s:4:\"news\";s:8:\"priority\";s:6:\"normal\";s:5:\"start\";b:0;s:3:\"end\";b:0;s:4:\"data\";O:8:\"stdClass\":6:{s:4:\"type\";s:4:\"news\";s:10:\"story_link\";s:50:\"https://wpmet.com/limit-form-entries-in-wordpress/\";s:11:\"story_image\";s:0:\"\";s:9:\"blacklist\";s:0:\"\";s:9:\"whitelist\";s:0:\"\";s:9:\"style_css\";s:0:\"\";}}s:8:\"10010585\";O:8:\"stdClass\":9:{s:2:\"id\";i:10010585;s:5:\"title\";s:67:\"How To Write Persuasive Product Descriptions With Ai (Step-by-Step)\";s:11:\"description\";s:0:\"\";s:7:\"plugins\";a:1:{i:0;s:8:\"getgenie\";}s:4:\"type\";s:4:\"news\";s:8:\"priority\";s:6:\"normal\";s:5:\"start\";b:0;s:3:\"end\";b:0;s:4:\"data\";O:8:\"stdClass\":6:{s:4:\"type\";s:4:\"news\";s:10:\"story_link\";s:60:\"https://getgenie.ai/persuasive-product-descriptions-with-ai/\";s:11:\"story_image\";s:0:\"\";s:9:\"blacklist\";s:0:\"\";s:9:\"whitelist\";s:0:\"\";s:9:\"style_css\";s:0:\"\";}}s:8:\"10010584\";O:8:\"stdClass\":9:{s:2:\"id\";i:10010584;s:5:\"title\";s:60:\"Mastering the Art of Ai Content Generation for Landing Pages\";s:11:\"description\";s:0:\"\";s:7:\"plugins\";a:1:{i:0;s:8:\"getgenie\";}s:4:\"type\";s:4:\"news\";s:8:\"priority\";s:6:\"normal\";s:5:\"start\";b:0;s:3:\"end\";b:0;s:4:\"data\";O:8:\"stdClass\":6:{s:4:\"type\";s:4:\"news\";s:10:\"story_link\";s:60:\"https://getgenie.ai/ai-content-generation-for-landing-pages/\";s:11:\"story_image\";s:0:\"\";s:9:\"blacklist\";s:0:\"\";s:9:\"whitelist\";s:0:\"\";s:9:\"style_css\";s:0:\"\";}}s:8:\"10010583\";O:8:\"stdClass\":9:{s:2:\"id\";i:10010583;s:5:\"title\";s:35:\"Personalization in Content Creation\";s:11:\"description\";s:0:\"\";s:7:\"plugins\";a:1:{i:0;s:8:\"getgenie\";}s:4:\"type\";s:4:\"news\";s:8:\"priority\";s:6:\"normal\";s:5:\"start\";b:0;s:3:\"end\";b:0;s:4:\"data\";O:8:\"stdClass\":6:{s:4:\"type\";s:4:\"news\";s:10:\"story_link\";s:56:\"https://getgenie.ai/personalization-in-content-creation/\";s:11:\"story_image\";s:0:\"\";s:9:\"blacklist\";s:0:\"\";s:9:\"whitelist\";s:0:\"\";s:9:\"style_css\";s:0:\"\";}}s:8:\"10010574\";O:8:\"stdClass\":9:{s:2:\"id\";i:10010574;s:5:\"title\";s:47:\"How to Add reCAPTCHA to Your Forms in WordPress\";s:11:\"description\";s:0:\"\";s:7:\"plugins\";a:4:{i:0;s:16:\"elementskit-lite\";i:1;s:7:\"metform\";i:2;s:10:\"shopengine\";i:3;s:9:\"wp-social\";}s:4:\"type\";s:4:\"news\";s:8:\"priority\";s:6:\"normal\";s:5:\"start\";b:0;s:3:\"end\";b:0;s:4:\"data\";O:8:\"stdClass\":6:{s:4:\"type\";s:4:\"news\";s:10:\"story_link\";s:66:\"https://wpmet.com/how-to-add-recaptcha-to-your-forms-in-wordpress/\";s:11:\"story_image\";s:0:\"\";s:9:\"blacklist\";s:0:\"\";s:9:\"whitelist\";s:0:\"\";s:9:\"style_css\";s:0:\"\";}}s:8:\"10010573\";O:8:\"stdClass\":9:{s:2:\"id\";i:10010573;s:5:\"title\";s:72:\"How to Create a Patient Data Collection Form in WordPress [3 Easy Steps]\";s:11:\"description\";s:0:\"\";s:7:\"plugins\";a:4:{i:0;s:16:\"elementskit-lite\";i:1;s:7:\"metform\";i:2;s:10:\"shopengine\";i:3;s:9:\"wp-social\";}s:4:\"type\";s:4:\"news\";s:8:\"priority\";s:6:\"normal\";s:5:\"start\";b:0;s:3:\"end\";b:0;s:4:\"data\";O:8:\"stdClass\":6:{s:4:\"type\";s:4:\"news\";s:10:\"story_link\";s:63:\"https://wpmet.com/how-to-create-a-patient-data-collection-form/\";s:11:\"story_image\";s:0:\"\";s:9:\"blacklist\";s:0:\"\";s:9:\"whitelist\";s:0:\"\";s:9:\"style_css\";s:0:\"\";}}s:8:\"10010572\";O:8:\"stdClass\":9:{s:2:\"id\";i:10010572;s:5:\"title\";s:48:\"Webflow vs WordPress: Which One Is The Best CMS?\";s:11:\"description\";s:0:\"\";s:7:\"plugins\";a:4:{i:0;s:16:\"elementskit-lite\";i:1;s:7:\"metform\";i:2;s:10:\"shopengine\";i:3;s:9:\"wp-social\";}s:4:\"type\";s:4:\"news\";s:8:\"priority\";s:6:\"normal\";s:5:\"start\";b:0;s:3:\"end\";b:0;s:4:\"data\";O:8:\"stdClass\":6:{s:4:\"type\";s:4:\"news\";s:10:\"story_link\";s:39:\"https://wpmet.com/webflow-vs-wordpress/\";s:11:\"story_image\";s:0:\"\";s:9:\"blacklist\";s:0:\"\";s:9:\"whitelist\";s:0:\"\";s:9:\"style_css\";s:0:\"\";}}s:8:\"10010571\";O:8:\"stdClass\":9:{s:2:\"id\";i:10010571;s:5:\"title\";s:55:\"How to Develop a Winning Content Strategy with AI Tools\";s:11:\"description\";s:0:\"\";s:7:\"plugins\";a:1:{i:0;s:8:\"getgenie\";}s:4:\"type\";s:4:\"news\";s:8:\"priority\";s:6:\"normal\";s:5:\"start\";b:0;s:3:\"end\";b:0;s:4:\"data\";O:8:\"stdClass\":6:{s:4:\"type\";s:4:\"news\";s:10:\"story_link\";s:55:\"https://getgenie.ai/develop-a-content-strategy-with-ai/\";s:11:\"story_image\";s:0:\"\";s:9:\"blacklist\";s:0:\"\";s:9:\"whitelist\";s:0:\"\";s:9:\"style_css\";s:0:\"\";}}}','yes'),(293,'_transient_timeout_elementor_remote_info_api_data_3.15.3','1694104978','no'),(294,'_transient_elementor_remote_info_api_data_3.15.3','a:4:{s:9:\"timestamp\";s:10:\"1694061635\";s:14:\"upgrade_notice\";a:3:{s:7:\"version\";s:5:\"2.0.0\";s:7:\"message\";s:0:\"\";s:11:\"update_link\";s:0:\"\";}s:11:\"pro_widgets\";a:75:{i:0;a:4:{s:4:\"name\";s:5:\"posts\";s:5:\"title\";s:5:\"Posts\";s:4:\"icon\";s:15:\"eicon-post-list\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:1;a:4:{s:4:\"name\";s:9:\"portfolio\";s:5:\"title\";s:9:\"Portfolio\";s:4:\"icon\";s:18:\"eicon-gallery-grid\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:2;a:4:{s:4:\"name\";s:9:\"mega-menu\";s:5:\"title\";s:4:\"Menu\";s:4:\"icon\";s:15:\"eicon-mega-menu\";s:10:\"categories\";s:33:\"[\"pro-elements\",\"theme-elements\"]\";}i:3;a:4:{s:4:\"name\";s:4:\"form\";s:5:\"title\";s:4:\"Form\";s:4:\"icon\";s:21:\"eicon-form-horizontal\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:4;a:4:{s:4:\"name\";s:9:\"loop-grid\";s:5:\"title\";s:9:\"Loop Grid\";s:4:\"icon\";s:18:\"eicon-loop-builder\";s:10:\"categories\";s:33:\"[\"pro-elements\",\"theme-elements\"]\";}i:5;a:4:{s:4:\"name\";s:13:\"loop-carousel\";s:5:\"title\";s:13:\"Loop Carousel\";s:4:\"icon\";s:19:\"eicon-carousel-loop\";s:10:\"categories\";s:33:\"[\"pro-elements\",\"theme-elements\"]\";}i:6;a:4:{s:4:\"name\";s:7:\"gallery\";s:5:\"title\";s:7:\"Gallery\";s:4:\"icon\";s:23:\"eicon-gallery-justified\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:7;a:4:{s:4:\"name\";s:17:\"animated-headline\";s:5:\"title\";s:17:\"Animated Headline\";s:4:\"icon\";s:23:\"eicon-animated-headline\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:8;a:4:{s:4:\"name\";s:10:\"price-list\";s:5:\"title\";s:10:\"Price List\";s:4:\"icon\";s:16:\"eicon-price-list\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:9;a:4:{s:4:\"name\";s:11:\"price-table\";s:5:\"title\";s:11:\"Price Table\";s:4:\"icon\";s:17:\"eicon-price-table\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:10;a:4:{s:4:\"name\";s:8:\"flip-box\";s:5:\"title\";s:8:\"Flip Box\";s:4:\"icon\";s:14:\"eicon-flip-box\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:11;a:4:{s:4:\"name\";s:14:\"call-to-action\";s:5:\"title\";s:14:\"Call to Action\";s:4:\"icon\";s:20:\"eicon-image-rollover\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:12;a:4:{s:4:\"name\";s:14:\"media-carousel\";s:5:\"title\";s:14:\"Media Carousel\";s:4:\"icon\";s:20:\"eicon-media-carousel\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:13;a:4:{s:4:\"name\";s:15:\"nested-carousel\";s:5:\"title\";s:8:\"Carousel\";s:4:\"icon\";s:21:\"eicon-nested-carousel\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:14;a:4:{s:4:\"name\";s:9:\"countdown\";s:5:\"title\";s:9:\"Countdown\";s:4:\"icon\";s:15:\"eicon-countdown\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:15;a:4:{s:4:\"name\";s:13:\"share-buttons\";s:5:\"title\";s:13:\"Share Buttons\";s:4:\"icon\";s:11:\"eicon-share\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:16;a:4:{s:4:\"name\";s:10:\"blockquote\";s:5:\"title\";s:10:\"Blockquote\";s:4:\"icon\";s:16:\"eicon-blockquote\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:17;a:4:{s:4:\"name\";s:6:\"lottie\";s:5:\"title\";s:6:\"Lottie\";s:4:\"icon\";s:12:\"eicon-lottie\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:18;a:4:{s:4:\"name\";s:7:\"hotspot\";s:5:\"title\";s:7:\"Hotspot\";s:4:\"icon\";s:19:\"eicon-image-hotspot\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:19;a:4:{s:4:\"name\";s:13:\"paypal-button\";s:5:\"title\";s:13:\"PayPal Button\";s:4:\"icon\";s:19:\"eicon-paypal-button\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:20;a:4:{s:4:\"name\";s:14:\"code-highlight\";s:5:\"title\";s:14:\"Code Highlight\";s:4:\"icon\";s:20:\"eicon-code-highlight\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:21;a:4:{s:4:\"name\";s:14:\"video-playlist\";s:5:\"title\";s:14:\"Video Playlist\";s:4:\"icon\";s:20:\"eicon-video-playlist\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:22;a:4:{s:4:\"name\";s:8:\"template\";s:5:\"title\";s:8:\"Template\";s:4:\"icon\";s:19:\"eicon-document-file\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:23;a:4:{s:4:\"name\";s:13:\"stripe-button\";s:5:\"title\";s:13:\"Stripe Button\";s:4:\"icon\";s:19:\"eicon-stripe-button\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:24;a:4:{s:4:\"name\";s:16:\"progress-tracker\";s:5:\"title\";s:16:\"Progress Tracker\";s:4:\"icon\";s:22:\"eicon-progress-tracker\";s:10:\"categories\";s:40:\"[\"pro-elements\",\"theme-elements-single\"]\";}i:25;a:4:{s:4:\"name\";s:8:\"nav-menu\";s:5:\"title\";s:8:\"Nav Menu\";s:4:\"icon\";s:14:\"eicon-nav-menu\";s:10:\"categories\";s:33:\"[\"pro-elements\",\"theme-elements\"]\";}i:26;a:4:{s:4:\"name\";s:17:\"table-of-contents\";s:5:\"title\";s:17:\"Table of Contents\";s:4:\"icon\";s:23:\"eicon-table-of-contents\";s:10:\"categories\";s:33:\"[\"pro-elements\",\"theme-elements\"]\";}i:27;a:4:{s:4:\"name\";s:5:\"login\";s:5:\"title\";s:5:\"Login\";s:4:\"icon\";s:15:\"eicon-lock-user\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:28;a:4:{s:4:\"name\";s:6:\"slides\";s:5:\"title\";s:6:\"Slides\";s:4:\"icon\";s:12:\"eicon-slides\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:29;a:4:{s:4:\"name\";s:20:\"testimonial-carousel\";s:5:\"title\";s:20:\"Testimonial Carousel\";s:4:\"icon\";s:26:\"eicon-testimonial-carousel\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:30;a:4:{s:4:\"name\";s:7:\"reviews\";s:5:\"title\";s:7:\"Reviews\";s:4:\"icon\";s:12:\"eicon-review\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:31;a:4:{s:4:\"name\";s:15:\"facebook-button\";s:5:\"title\";s:15:\"Facebook Button\";s:4:\"icon\";s:23:\"eicon-facebook-like-box\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:32;a:4:{s:4:\"name\";s:17:\"facebook-comments\";s:5:\"title\";s:17:\"Facebook Comments\";s:4:\"icon\";s:23:\"eicon-facebook-comments\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:33;a:4:{s:4:\"name\";s:14:\"facebook-embed\";s:5:\"title\";s:14:\"Facebook Embed\";s:4:\"icon\";s:14:\"eicon-fb-embed\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:34;a:4:{s:4:\"name\";s:13:\"facebook-page\";s:5:\"title\";s:13:\"Facebook Page\";s:4:\"icon\";s:13:\"eicon-fb-feed\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:35;a:4:{s:4:\"name\";s:15:\"theme-site-logo\";s:5:\"title\";s:9:\"Site Logo\";s:4:\"icon\";s:15:\"eicon-site-logo\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:36;a:4:{s:4:\"name\";s:16:\"theme-site-title\";s:5:\"title\";s:10:\"Site Title\";s:4:\"icon\";s:16:\"eicon-site-title\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:37;a:4:{s:4:\"name\";s:16:\"theme-page-title\";s:5:\"title\";s:10:\"Page Title\";s:4:\"icon\";s:19:\"eicon-archive-title\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:38;a:4:{s:4:\"name\";s:16:\"theme-post-title\";s:5:\"title\";s:10:\"Post Title\";s:4:\"icon\";s:16:\"eicon-post-title\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:39;a:4:{s:4:\"name\";s:18:\"theme-post-excerpt\";s:5:\"title\";s:12:\"Post Excerpt\";s:4:\"icon\";s:18:\"eicon-post-excerpt\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:40;a:4:{s:4:\"name\";s:25:\"theme-post-featured-image\";s:5:\"title\";s:14:\"Featured Image\";s:4:\"icon\";s:20:\"eicon-featured-image\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:41;a:4:{s:4:\"name\";s:19:\"theme-archive-title\";s:5:\"title\";s:13:\"Archive Title\";s:4:\"icon\";s:19:\"eicon-archive-title\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:42;a:4:{s:4:\"name\";s:13:\"archive-posts\";s:5:\"title\";s:13:\"Archive Posts\";s:4:\"icon\";s:19:\"eicon-archive-posts\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:43;a:4:{s:4:\"name\";s:11:\"search-form\";s:5:\"title\";s:11:\"Search Form\";s:4:\"icon\";s:17:\"eicon-site-search\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:44;a:4:{s:4:\"name\";s:10:\"author-box\";s:5:\"title\";s:10:\"Author Box\";s:4:\"icon\";s:12:\"eicon-person\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:45;a:4:{s:4:\"name\";s:13:\"post-comments\";s:5:\"title\";s:13:\"Post Comments\";s:4:\"icon\";s:14:\"eicon-comments\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:46;a:4:{s:4:\"name\";s:15:\"post-navigation\";s:5:\"title\";s:15:\"Post Navigation\";s:4:\"icon\";s:21:\"eicon-post-navigation\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:47;a:4:{s:4:\"name\";s:9:\"post-info\";s:5:\"title\";s:9:\"Post Info\";s:4:\"icon\";s:15:\"eicon-post-info\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:48;a:4:{s:4:\"name\";s:7:\"sitemap\";s:5:\"title\";s:7:\"Sitemap\";s:4:\"icon\";s:13:\"eicon-sitemap\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:49;a:4:{s:4:\"name\";s:11:\"breadcrumbs\";s:5:\"title\";s:11:\"Breadcrumbs\";s:4:\"icon\";s:11:\"eicon-yoast\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:50;a:4:{s:4:\"name\";s:21:\"woocommerce-menu-cart\";s:5:\"title\";s:9:\"Menu Cart\";s:4:\"icon\";s:10:\"eicon-cart\";s:10:\"categories\";s:41:\"[\"theme-elements\",\"woocommerce-elements\"]\";}i:51;a:4:{s:4:\"name\";s:19:\"wc-archive-products\";s:5:\"title\";s:16:\"Archive Products\";s:4:\"icon\";s:14:\"eicon-products\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:52;a:4:{s:4:\"name\";s:31:\"woocommerce-archive-description\";s:5:\"title\";s:19:\"Archive Description\";s:4:\"icon\";s:25:\"eicon-product-description\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:53;a:4:{s:4:\"name\";s:20:\"woocommerce-products\";s:5:\"title\";s:8:\"Products\";s:4:\"icon\";s:14:\"eicon-products\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:54;a:4:{s:4:\"name\";s:22:\"woocommerce-breadcrumb\";s:5:\"title\";s:23:\"WooCommerce Breadcrumbs\";s:4:\"icon\";s:25:\"eicon-product-breadcrumbs\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:55;a:4:{s:4:\"name\";s:14:\"wc-add-to-cart\";s:5:\"title\";s:18:\"Custom Add To Cart\";s:4:\"icon\";s:17:\"eicon-woocommerce\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:56;a:4:{s:4:\"name\";s:11:\"wc-elements\";s:5:\"title\";s:17:\"WooCommerce Pages\";s:4:\"icon\";s:19:\"eicon-product-pages\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:57;a:4:{s:4:\"name\";s:13:\"wc-categories\";s:5:\"title\";s:18:\"Product Categories\";s:4:\"icon\";s:24:\"eicon-product-categories\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:58;a:4:{s:4:\"name\";s:25:\"woocommerce-product-title\";s:5:\"title\";s:13:\"Product Title\";s:4:\"icon\";s:19:\"eicon-product-title\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:59;a:4:{s:4:\"name\";s:26:\"woocommerce-product-images\";s:5:\"title\";s:14:\"Product Images\";s:4:\"icon\";s:20:\"eicon-product-images\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:60;a:4:{s:4:\"name\";s:25:\"woocommerce-product-price\";s:5:\"title\";s:13:\"Product Price\";s:4:\"icon\";s:19:\"eicon-product-price\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:61;a:4:{s:4:\"name\";s:31:\"woocommerce-product-add-to-cart\";s:5:\"title\";s:11:\"Add To Cart\";s:4:\"icon\";s:25:\"eicon-product-add-to-cart\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:62;a:4:{s:4:\"name\";s:26:\"woocommerce-product-rating\";s:5:\"title\";s:14:\"Product Rating\";s:4:\"icon\";s:20:\"eicon-product-rating\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:63;a:4:{s:4:\"name\";s:25:\"woocommerce-product-stock\";s:5:\"title\";s:13:\"Product Stock\";s:4:\"icon\";s:19:\"eicon-product-stock\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:64;a:4:{s:4:\"name\";s:24:\"woocommerce-product-meta\";s:5:\"title\";s:12:\"Product Meta\";s:4:\"icon\";s:18:\"eicon-product-meta\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:65;a:4:{s:4:\"name\";s:37:\"woocommerce-product-short-description\";s:5:\"title\";s:17:\"Short Description\";s:4:\"icon\";s:25:\"eicon-product-description\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:66;a:4:{s:4:\"name\";s:29:\"woocommerce-product-data-tabs\";s:5:\"title\";s:17:\"Product Data Tabs\";s:4:\"icon\";s:18:\"eicon-product-tabs\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:67;a:4:{s:4:\"name\";s:42:\"woocommerce-product-additional-information\";s:5:\"title\";s:22:\"Additional Information\";s:4:\"icon\";s:19:\" eicon-product-info\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:68;a:4:{s:4:\"name\";s:27:\"woocommerce-product-related\";s:5:\"title\";s:15:\"Product Related\";s:4:\"icon\";s:21:\"eicon-product-related\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:69;a:4:{s:4:\"name\";s:26:\"woocommerce-product-upsell\";s:5:\"title\";s:7:\"Upsells\";s:4:\"icon\";s:20:\"eicon-product-upsell\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:70;a:4:{s:4:\"name\";s:25:\"woocommerce-checkout-page\";s:5:\"title\";s:8:\"Checkout\";s:4:\"icon\";s:14:\"eicon-checkout\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:71;a:4:{s:4:\"name\";s:16:\"woocommerce-cart\";s:5:\"title\";s:4:\"Cart\";s:4:\"icon\";s:14:\"eicon-woo-cart\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:72;a:4:{s:4:\"name\";s:22:\"woocommerce-my-account\";s:5:\"title\";s:10:\"My Account\";s:4:\"icon\";s:16:\"eicon-my-account\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:73;a:4:{s:4:\"name\";s:28:\"woocommerce-purchase-summary\";s:5:\"title\";s:16:\"Purchase Summary\";s:4:\"icon\";s:22:\"eicon-purchase-summary\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:74;a:4:{s:4:\"name\";s:19:\"woocommerce-notices\";s:5:\"title\";s:19:\"WooCommerce Notices\";s:4:\"icon\";s:25:\"eicon-woocommerce-notices\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}}s:17:\"canary_deployment\";a:2:{s:11:\"plugin_info\";a:11:{s:2:\"id\";s:23:\"w.org/plugins/elementor\";s:4:\"slug\";s:9:\"elementor\";s:6:\"plugin\";s:23:\"elementor/elementor.php\";s:11:\"new_version\";s:5:\"3.6.0\";s:7:\"package\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.6.0.zip\";s:3:\"url\";s:40:\"https://wordpress.org/plugins/elementor/\";s:5:\"icons\";a:3:{s:2:\"2x\";s:62:\"https://ps.w.org/elementor/assets/icon-256x256.png?rev=1427768\";s:2:\"1x\";s:54:\"https://ps.w.org/elementor/assets/icon.svg?rev=1426809\";s:3:\"svg\";s:54:\"https://ps.w.org/elementor/assets/icon.svg?rev=1426809\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:65:\"https://ps.w.org/elementor/assets/banner-1544x500.png?rev=1475479\";s:2:\"1x\";s:64:\"https://ps.w.org/elementor/assets/banner-772x250.png?rev=1475479\";}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:5:\"6.3.1\";s:12:\"requires_php\";s:3:\"5.6\";}s:10:\"conditions\";a:0:{}}}','no'),(295,'_site_transient_timeout_community-events-a87ff77ab4fbc6c486f86ac05efe0435','1694105012','no'),(296,'_site_transient_community-events-a87ff77ab4fbc6c486f86ac05efe0435','a:4:{s:9:\"sandboxed\";b:0;s:5:\"error\";N;s:8:\"location\";a:1:{s:2:\"ip\";s:12:\"172.71.198.0\";}s:6:\"events\";a:2:{i:0;a:10:{s:4:\"type\";s:6:\"meetup\";s:5:\"title\";s:71:\"WordPress Full Site Editing: Everything You Need to Know to get started\";s:3:\"url\";s:55:\"https://www.meetup.com/wordpressmumbai/events/295819965\";s:6:\"meetup\";s:23:\"Mumbai WordPress Meetup\";s:10:\"meetup_url\";s:39:\"https://www.meetup.com/wordpressmumbai/\";s:4:\"date\";s:19:\"2023-09-09 16:00:00\";s:8:\"end_date\";s:19:\"2023-09-09 18:00:00\";s:20:\"start_unix_timestamp\";i:1694255400;s:18:\"end_unix_timestamp\";i:1694262600;s:8:\"location\";a:4:{s:8:\"location\";s:13:\"Mumbai, India\";s:7:\"country\";s:2:\"in\";s:8:\"latitude\";d:19.152552;s:9:\"longitude\";d:72.855735999999993;}}i:1;a:10:{s:4:\"type\";s:8:\"wordcamp\";s:5:\"title\";s:20:\"WordCamp Mumbai 2023\";s:3:\"url\";s:33:\"https://mumbai.wordcamp.org/2023/\";s:6:\"meetup\";N;s:10:\"meetup_url\";N;s:4:\"date\";s:19:\"2023-10-28 00:00:00\";s:8:\"end_date\";s:19:\"2023-10-29 00:00:00\";s:20:\"start_unix_timestamp\";i:1698431400;s:18:\"end_unix_timestamp\";i:1698517800;s:8:\"location\";a:4:{s:8:\"location\";s:26:\"Mumbai, Maharashtra, India\";s:7:\"country\";s:2:\"IN\";s:8:\"latitude\";d:19.0507572;s:9:\"longitude\";d:72.829808700000001;}}}}','no'),(297,'_transient_timeout_feed_9bbd59226dc36b9b26cd43f15694c5c3','1694105013','no'),(298,'_transient_feed_9bbd59226dc36b9b26cd43f15694c5c3','a:4:{s:5:\"child\";a:1:{s:0:\"\";a:1:{s:3:\"rss\";a:1:{i:0;a:6:{s:4:\"data\";s:3:\"\n\n\n\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:7:\"version\";s:3:\"2.0\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:1:{s:7:\"channel\";a:1:{i:0;a:6:{s:4:\"data\";s:52:\"\n	\n	\n	\n	\n	\n	\n	\n	\n	\n\n \n	\n		\n		\n		\n		\n		\n		\n		\n		\n		\n	\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:8:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"WordPress News\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:26:\"https://wordpress.org/news\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:59:\"The latest news about WordPress and the WordPress community\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:13:\"lastBuildDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 04 Sep 2023 21:02:35 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"language\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"en-US\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:9:\"generator\";a:1:{i:0;a:5:{s:4:\"data\";s:40:\"https://wordpress.org/?v=6.4-alpha-56522\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:5:\"image\";a:1:{i:0;a:6:{s:4:\"data\";s:11:\"\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:5:{s:3:\"url\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://s.w.org/favicon.ico?2\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"WordPress News\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:26:\"https://wordpress.org/news\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:5:\"width\";a:1:{i:0;a:5:{s:4:\"data\";s:2:\"32\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:6:\"height\";a:1:{i:0;a:5:{s:4:\"data\";s:2:\"32\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}s:4:\"item\";a:10:{i:0;a:6:{s:4:\"data\";s:61:\"\n		\n		\n		\n		\n		\n				\n		\n		\n\n					\n										\n					\n		\n		\n\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:67:\"WP Briefing: Episode 61: Community, Summit, all at  Washington D.C.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:85:\"https://wordpress.org/news/2023/09/episode-61-community-summit-all-at-washington-d-c/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 04 Sep 2023 12:00:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:7:\"Podcast\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:11:\"wp-briefing\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"https://wordpress.org/news/?post_type=podcast&p=15911\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:168:\"Join WordPress Executive Director Josepha Haden Chomphosy as she discusses the latest from the Community Summit and her takeaways from the 2023 event in Washington, DC.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:9:\"enclosure\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:3:\"url\";s:62:\"https://wordpress.org/news/files/2023/09/WP-Briefing-061-1.mp3\";s:6:\"length\";s:1:\"0\";s:4:\"type\";s:0:\"\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Brett McSherry\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:17586:\"\n<p>Join WordPress Executive Director Josepha Haden Chomphosy as she discusses the latest from the Community Summit and her takeaways from the 2023 event in Washington, D.C.</p>\n\n\n\n<p><em><strong>Have a question you’d like answered? You can submit them to&nbsp;<a href=\"mailto:wpbriefing@wordpress.org\">wpbriefing@wordpress.org</a>, either written or as a voice recording.</strong></em></p>\n\n\n\n<h2 class=\"wp-block-heading\">Credits</h2>\n\n\n\n<p>Host: <a href=\"https://profiles.wordpress.org/chanthaboune/\">Josepha Haden Chomphosy</a><br>Editor: <a href=\"https://profiles.wordpress.org/dustinhartzler/\">Dustin Hartzler</a><br>Logo: <a href=\"https://profiles.wordpress.org/javiarce/\">Javier Arce</a><br>Production: <a href=\"https://profiles.wordpress.org/bjmcsherry/\">Brett McSherry</a><br>Song: Fearless First by Kevin MacLeod</p>\n\n\n\n<h2 class=\"wp-block-heading\">Show Notes</h2>\n\n\n\n<ul>\n<li>The 2023 <a href=\"https://communitysummit.wordcamp.org/2023/\">Community Summit</a> in Washington, DC</li>\n\n\n\n<li><a href=\"https://wordpress.org/news/2023/02/episode-49-everything-you-need-to-know-about-the-community-summit/\">WP Briefing Episode 49</a>: Everything You Need to Know About the Community Summit!</li>\n\n\n\n<li><a href=\"https://href.li/?https://make.wordpress.org/community/2023/05/08/the-next-generation-of-wordcamps/\">The Next Generation of WordCamps</a></li>\n\n\n\n<li><a href=\"https://href.li/?https://make.wordpress.org/community/2023/05/24/idea-generation-next-gen-wordcamps/\">Idea generation: Next Gen WordCamps!</a></li>\n\n\n\n<li><a href=\"https://pressnomics.com/\">PressNomics</a></li>\n\n\n\n<li><a href=\"https://loopconf.io/\">LoopConf</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/summit/\">WordPress Community Summit</a></li>\n\n\n\n<li><strong>A small list of big things</strong>\n<ul>\n<li><a rel=\"noreferrer noopener\" href=\"https://make.wordpress.org/community/2023/08/23/call-for-ideas-new-features-for-our-nexgen-wp-events-central-page/\" target=\"_blank\">Call for ideas: new features for our NexGen WP events central page</a>&nbsp;&#8211; Open call for ideas to find the most desirable features for a future homepage that would host a list of all NextGen WordPress events. </li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/08/24/introducing-twenty-twenty-four/\">Introducing Twenty Twenty-Four</a>&nbsp;&#8211; Announced at Contributor Day, this new theme will be part of the 6.4 release. </li>\n\n\n\n<li>With the release of 6.3 behind us,&nbsp;<a rel=\"noreferrer noopener\" href=\"https://make.wordpress.org/core/6-4/\" target=\"_blank\">we are working hard on bringing 6.4</a>&nbsp;to the community. You can get involved with the development of this important release. </li>\n\n\n\n<li>A successful WCUS is behind us, and if you missed the event, we have you covered. <a href=\"https://wordpress.org/news/2023/08/the-future-of-wordpress-whats-next-for-gutenberg/\">Here is a recap of the event</a>.</li>\n</ul>\n</li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\">Transcript</h2>\n\n\n\n<span id=\"more-15911\"></span>\n\n\n\n<p>[00:00:00] <strong>Josepha:</strong>&nbsp;Hello everyone, and welcome to the WordPress Briefing, the podcast where you can catch quick explanations of the ideas behind the WordPress open source project, some insight into the community that supports it, and get a small list of big things coming up in the next two weeks. I&#8217;m your host, Josepha Haden Chomphosy. Here we go.</p>\n\n\n\n<p>[00:00:28] (Intro Music)&nbsp;</p>\n\n\n\n<p>[00:00:39] <strong>Josepha:</strong>&nbsp;We are back and catching up from our midyear break. And in true WordPress fashion, we&#8217;re just going to start off running. The WordPress Community Summit happened a couple of weeks ago. I&#8217;ve been talking about it on this podcast for a few months now, but if you&#8217;ve missed it and you want a refresher, go ahead and give episode 49 a listen.</p>\n\n\n\n<p>At the Community Summit, there were 125 people, if I remember correctly. And we covered a wide array of topics that were brought to us directly from the community itself. While the event is small, it is specifically designed for gathering and sharing information. So, I&#8217;ve got some top-level trends that I noticed that I&#8217;m going to share with you all today, as well as just like a reminder of what happens after a Community Summit.</p>\n\n\n\n<p>[00:01:27] <strong>Josepha:</strong>&nbsp;So there are three, maybe four, big trends that I noticed. The first one that I noticed is that we have a lot of discussions right now about contributor acknowledgment. That also, for what it&#8217;s worth, came with an unresolved question around whether acknowledgment and recognition are the same. I don&#8217;t think they are the same.</p>\n\n\n\n<p>But it also was part of a conversation around whether we treat those two things the same. And if they are not the same, should we treat them differently? And et cetera, et cetera, et cetera. For folks who&#8217;ve been around for a bit, you know, that we spent a lot of time working on our contributor recognition a few years back and had really made quite a bit of difference in just reported feelings about how the community felt they were being recognized for their contributions.</p>\n\n\n\n<p>And so a lot of the conversations that we ended up having were around whether or not the project as a whole has changed the way that we provide that recognition or acknowledgment. Or, as an alternative, if the community that is supporting WordPress has changed how they would like to be recognized.</p>\n\n\n\n<p>[00:02:32] <strong>Josepha:</strong>&nbsp;There were also some questions about whether or not making sure that contributors can see their impact. Like they can say, I contributed 10 hours last month, and these are the two things that I got accomplished over there, and that everyone else can see those things too. So, how we can do that more easily while also not having so many metrics and making the metrics so prevalent that we start to close out the people who are truly just doing this for fun.</p>\n\n\n\n<p>Like many of the problems that we have at the Community Summit, this is a bunch of pretty much unsolved mysteries at the moment. But it did; it came up across probably five or six different sessions that I heard about, quite a few that I went to myself, and so contributor acknowledgment and recognition is on our minds again.</p>\n\n\n\n<p>A second thing that I noticed across multiple sessions, and this one honestly is not a surprise at all, is that there were a lot of questions about what the next big thing is after Gutenberg. I always love when people are asking big questions about what comes next because it means that we all still believe that there will be a next.</p>\n\n\n\n<p>[00:03:43] <strong>Josepha:</strong>&nbsp;And so I never hesitate when I hear these questions to give some ideas about what I think might be coming. But a lot of the discussions that we were having were around, we think this is coming, but now that we think this is coming, what should we do now to make sure that we are ready for it? One of the biggest assumptions that we all had is that for the CMS, for the software itself, probably our next big area after Gutenberg is going to be something about artificial intelligence.</p>\n\n\n\n<p>Matt pointed out in his presentation that he has told us twice to learn something deeply. One was in 2016 when he said, learn JavaScript Deeply. And then one was in 2022 when he said to learn AI deeply. And so we all kind of are guessing that that is our future area. And so that&#8217;s an area for everyone to spend some time in. Make sure you understand it. Make sure you know it a bit.&nbsp;</p>\n\n\n\n<p>The second thing that came up as like a future, where are we going here? It was kind of on the business-y side. It was on a lot of questions about enterprise and are we selling properly to enterprise. Can we sell, can we appeal to enterprise? Whose job is it to sell any of these things? Questions like that. So, lots of business questions again. This is not something that I have any concerns about. I&#8217;m very excited to see that people are talking about it. That&#8217;s been a topic of conversation since, I want to say, February of this year. And so it also wasn&#8217;t a surprise inclusion today. And, and I was excited to see, am excited to see what we get out of those conversations over time.&nbsp;</p>\n\n\n\n<p>[00:05:17] <strong>Josepha:</strong>&nbsp;As far as like questions around what&#8217;s next for the community, I&#8217;m going to address that separately because it was a huge question for everyone. So I&#8217;m going to discuss that as soon as we get finished with this chunk about like the big thing that, that is coming after Gutenberg.</p>\n\n\n\n<p>But, from an ecosystem perspective. Like a WordPress project operations perspective, this came up a couple of times. Never in as clear a word, a set of words as that, but the question about, like, what are we doing with our tools? Are we making sure that we are keeping the tools that our contributors use maintained and still in an excellent space with features that are useful and, necessary, and requested?</p>\n\n\n\n<p>And so that is a big question. I do have a lot of questions about that. Also, there are so many tools that I have wanted in order to make organizing the WordPress community better and easier, but also making contributing better and easier. And hopefully, here soon, we have an opportunity to get to some of those.</p>\n\n\n\n<p>[00:06:16] <strong>Josepha:</strong>&nbsp;So, the third big trend that I kept seeing at the Community Summit is actually about the community itself, specifically about events. So I was part of or listened to many, many, many conversations over the course of the week that were specifically focused on what we&#8217;re going to do with the future of our events. Like are meetups still sustainable? Are WordCamps still sustainable? And that&#8217;s from not only the idea of sustainability that we all tend to know from like an ecological standpoint but also, you know, checking in on the resources. So the kinds of questions that folks had were, is it time to continue having many small events, or is it time to move to a few giant events?</p>\n\n\n\n<p>Should we bring back midsized, WP-adjacent events like PressNomics or LoopConf? And if we are bringing those back, do we want to have them be part of a semi-official thing along with a clearly WordPress event and like do joint sales in there? Try to figure out how to get people from one to the other, so that it&#8217;s not just WordPress people that we&#8217;re talking to, but also business people and advanced developers, things like that.</p>\n\n\n\n<p>There was also a lot of discussion about whether or not we have gotten too big, should we double down on our grassroots efforts? Just go all the way back to, like, BarCamp style, WordPress in a forest kind of thing.&nbsp;</p>\n\n\n\n<p>[00:07:46] <strong>Josepha:</strong>&nbsp;And yeah, and among all of these conversations, there were questions about the resources that we need. Do we have what we need now? Do we have plans for how to maintain those resources in the future? Do we have enough time? Do we have enough money? Do we have an expertise? The people? So many questions, so many questions. And on the community side of things, we also had a lot of questions that are routine in open source. Like, do we have a pipeline for future maintainers, for future team reps, for future leaders in the project? All of the questions.&nbsp;</p>\n\n\n\n<p>So, those are the three slash four, depending on how you break it out, really big trends that I saw across the conversation at the Community Summit. And I don&#8217;t necessarily know the answers to all of these things. Like, I know what my gut tells me, I know what I believe the answer to be. From my own perspective, but as you&#8217;ve been told many times with many eyes, all bugs are shallow. And so here is what happens next with a Community Summit. So we&#8217;ve gathered all of these things together. We&#8217;ve had these conversations, and now all of the notes from every conversation that we had will be put on make.wordpress.org/summit.&nbsp;</p>\n\n\n\n<p>[00:09:10] <strong>Josepha:</strong>&nbsp;There, you can do any of the following three things, but at least do one before we get any further. I think it&#8217;s important to remind everyone that no decisions were made at the Community Summit. There are a few things that will come out of the Community Summit where the answer the way forward is really obvious. And so those probably will get done quickly thereafter because it&#8217;s just an obvious thing to do. It makes sense for everyone in the project. It makes sense for everyone who&#8217;s using WordPress. Whatever reason.&nbsp;</p>\n\n\n\n<p>So those things will probably move quickly, but mostly not even mostly there were no decisions made. And so if it looks like something is moving quickly there, it is because it makes sense after the fact. So there&#8217;s that. But the three things that you can do in order to take part in this information gathering and sharing that happened at the Community Summit.&nbsp;</p>\n\n\n\n<p>Number one, head over to make.wordpress.org/summit and just read the notes. There are a lot of them you can pick and choose based on the teams you contribute to or the topics that are specifically interesting. Or if you have been assigned to read one of these things, obviously, go ahead and read that. But find the notes read them. Take a look at the discussion as far as you can tell it happened and get a sense for what the essential question is.</p>\n\n\n\n<p>The second thing that you can do while you&#8217;re there is that you can join in that discussion right there in the comments if you would like to. You can, if you feel like your perspective is not quite accounted for in that, obviously leave some comments and let folks know. But also, if you feel like your perspective was accounted for, but there&#8217;s also a very specific question that was not necessarily answered or not even brought up, share those as well. That&#8217;s stuff that we would like to know as we are working through this.&nbsp;</p>\n\n\n\n<p>And then the third thing that you can do is you can take those conversations, and if there&#8217;s anything that looks like it&#8217;s particularly relevant to your local WordPress community, absolutely take those there and have those conversations with them.</p>\n\n\n\n<p>[00:11:23] <strong>Josepha:</strong>&nbsp;And once you&#8217;ve had those conversations, let us know what you thought also in those comments, or take it directly into your weekly teams&#8217; chat, either way. We want to hear what you think about the questions that were brought because you brought them to us. And so you should have an opportunity to tell us what you think.</p>\n\n\n\n<p>[00:11:39] (Music Interlude)&nbsp;</p>\n\n\n\n<p>[00:11:48] <strong>Josepha:</strong>&nbsp;That brings us now to our small list of big things. My friends, there&#8217;s nothing but big things left for the rest of the year. And so here we go. Number one, uh, I mentioned it quite a bit. There&#8217;s a conversation, an ongoing conversation about the future of events for our community. Right now, there is an open call for ideas, new features for our NextGen WordPress events, especially on the page that exists on WordCamp Central.</p>\n\n\n\n<p>So, we want to find the most useful and desirable features for a future homepage on central.wordcamp.org that would host a list of all of our upcoming WordPress events. And so we want your opinion there. Please let us know what would be especially useful to you as you are looking for WordPress events to attend.</p>\n\n\n\n<p>The second thing is that we introduced 2024, the default theme that is coming with WordPress 6.4, was announced. We have had, I think, 32 contributors to it at the time of this recording. And yeah, it&#8217;s beautiful. It&#8217;s got a lot of different implementation options, a lot of default patterns, and curated patterns so that you can get exactly what you want out of that theme. I think it&#8217;s going to make a great default theme, a great starter theme for our final release of the year.&nbsp;</p>\n\n\n\n<p>And then, speaking of 6.4, with the release of 6.3 behind us, we are working hard on bringing 6.4 to the community. You can get involved with the development of that. There is a core chat every Wednesday. It happens. I want to say at 21:00 UTC, but I don&#8217;t actually know off the top of my head. I just go when my calendar tells me to go, and I live in the central time zone. And so, my UTC conversion is not the best, but we will leave the actual information about that in the show notes so that you can see it. But you can also go over to make.wordpress.org, and then there&#8217;s a little card on that homepage that tells you exactly when those core meetings are, including the new contributor meeting, which happens every two weeks.&nbsp;</p>\n\n\n\n<p>And then the fourth thing is that there is a successful WordCamp US behind us. That is our final flagship event of the year, which is always exciting. If you missed it, for one, we missed you. And for two, we have you covered. We&#8217;ve got a recap of the event. There is a link to that in the show notes as well.&nbsp;</p>\n\n\n\n<p>[00:14:05] <strong>Josepha:</strong> And that, my friends, is your small list of big things. Thanks for tuning in today for the WordPress Briefing. I&#8217;m your host, Josepha Haden Chomphosy, and I&#8217;ll see you again in a couple of weeks.</p>\n\n\n\n<p>[00:14:15] (Music Outro)&nbsp;</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"15911\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:1;a:6:{s:4:\"data\";s:60:\"\n		\n		\n		\n		\n		\n				\n		\n		\n\n					\n										\n					\n		\n		\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"WordPress 6.3.1 Maintenance Release\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:71:\"https://wordpress.org/news/2023/08/wordpress-6-3-1-maintenance-release/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 29 Aug 2023 14:43:11 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:14:\"minor-releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=15886\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"WordPress 6.3.1 is available!\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:9:\"Jb Audras\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:5097:\"\n<h2 class=\"wp-block-heading\">WordPress 6.3.1 is now available!</h2>\n\n\n\n<p>This minor release features&nbsp;<a href=\"https://core.trac.wordpress.org/query?status=closed&amp;milestone=6.3.1&amp;group=status&amp;col=id&amp;col=summary&amp;col=owner&amp;col=type&amp;col=priority&amp;col=component&amp;col=version&amp;col=keywords&amp;order=priority\">4 bug fixes in Core</a>&nbsp;and&nbsp;<a href=\"https://github.com/orgs/WordPress/projects/103/\">6 bug fixes for the block editor</a>. You can review a summary of the maintenance updates in this release by reading the&nbsp;<a href=\"https://make.wordpress.org/core/2023/08/23/wordpress-6-3-1-rc1-is-now-available/\">Release Candidate announcement</a>.</p>\n\n\n\n<p>WordPress 6.3.1 is a short-cycle release. The next major release will be&nbsp;<a href=\"https://make.wordpress.org/core/6-4/\">version 6.4</a>&nbsp;planned for November 2023.</p>\n\n\n\n<p>If you have sites that support automatic background updates, the update process will begin automatically.</p>\n\n\n\n<p>You can&nbsp;<a href=\"https://wordpress.org/wordpress-6.3.1.zip\">download WordPress 6.3.1 from WordPress.org</a>, or visit your WordPress Dashboard, click “Updates”, and then click “Update Now”.</p>\n\n\n\n<p>For more information on this release, please&nbsp;<a href=\"https://wordpress.org/support/wordpress-version/version-6-3-1\">visit the HelpHub site</a>.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Thank you to these WordPress contributors</h2>\n\n\n\n<p>This release was led by&nbsp;<a href=\"https://profiles.wordpress.org/audrasjb\">Jb Audras</a> and <a href=\"https://profiles.wordpress.org/azaozz/\">Andrew Ozz</a>, with the help of <a href=\"https://profiles.wordpress.org/SergeyBiryukov\">Sergey Biryukov</a>&nbsp;on mission control, and <a href=\"https://profiles.wordpress.org/isabel_brison/\">Isabel Brison</a> who worked on Gutenberg backports.</p>\n\n\n\n<p>WordPress 6.3.1 would not have been possible without the contributions of the following people. Their asynchronous coordination to deliver maintenance fixes into a stable release is a testament to the power and capability of the WordPress community.</p>\n\n\n\n<p class=\"is-style-wporg-props-medium\" style=\"font-size:18px\"><a href=\'https://profiles.wordpress.org/antonvlasenko/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>antonvlasenko</a>, <a href=\'https://profiles.wordpress.org/audrasjb/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>audrasjb</a>, <a href=\'https://profiles.wordpress.org/austinginder/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>austinginder</a>, <a href=\'https://profiles.wordpress.org/azaozz/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>azaozz</a>, <a href=\'https://profiles.wordpress.org/dd32/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>dd32</a>, <a href=\'https://profiles.wordpress.org/dlh/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>dlh</a>, <a href=\'https://profiles.wordpress.org/frankit/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>frankit</a>, <a href=\'https://profiles.wordpress.org/get_dave/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>get_dave</a>, <a href=\'https://profiles.wordpress.org/hellofromtonya/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>hellofromTonya</a>, <a href=\'https://profiles.wordpress.org/khokansardar/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>khokansardar</a>, <a href=\'https://profiles.wordpress.org/mathsgrinds/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>mathsgrinds</a>, <a href=\'https://profiles.wordpress.org/mukesh27/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>mukesh27</a>, <a href=\'https://profiles.wordpress.org/peterwilsoncc/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>peterwilsoncc</a>, <a href=\'https://profiles.wordpress.org/presskopp/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>Presskopp</a>, <a href=\'https://profiles.wordpress.org/rajinsharwar/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>rajinsharwar</a>, <a href=\'https://profiles.wordpress.org/ravanh/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>RavanH</a>, <a href=\'https://profiles.wordpress.org/sergeybiryukov/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>sergeybiryukov</a>, and <a href=\'https://profiles.wordpress.org/tmatsuur/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>tmatsuur</a>.</p>\n\n\n\n<h2 class=\"wp-block-heading\">How to contribute</h2>\n\n\n\n<p>To get involved in WordPress core development, head over to Trac,&nbsp;<a href=\"https://core.trac.wordpress.org/report/6\">pick a ticket</a>, and join the conversation in the&nbsp;<a href=\"https://wordpress.slack.com/archives/C02RQBWTW\">#core</a> and <a href=\"https://wordpress.slack.com/archives/C055Y7FKS7N\">#6-4-release-leads</a> channels. Need help? Check out the&nbsp;<a href=\"https://make.wordpress.org/core/handbook/\">Core Contributor Handbook</a>.</p>\n\n\n\n<p class=\"has-text-align-right\"><em>Thanks to&nbsp;<a href=\'https://profiles.wordpress.org/jeffpaul/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>jeffpaul</a> for proofreading.</em></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"15886\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:2;a:6:{s:4:\"data\";s:63:\"\n		\n		\n		\n		\n		\n				\n		\n		\n		\n\n					\n										\n					\n		\n		\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:57:\"The Future of WordPress &amp; What’s Next for Gutenberg\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:84:\"https://wordpress.org/news/2023/08/the-future-of-wordpress-whats-next-for-gutenberg/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sun, 27 Aug 2023 04:50:28 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:3:{i:0;a:5:{s:4:\"data\";s:6:\"Events\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:7:\"General\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:8:\"WordCamp\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=15879\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:431:\"Nearly 2,000 attendees gathered for two days of keynotes, sessions, and community-building conversations at the Gaylord National Resort &#38; Convention Center in the largest attended WordCamp US ever. Saturday’s sessions concluded with back-to-back keynotes by WordPress co-founder Matt Mullenweg and Executive Director Josepha Haden Chomphosy.  What’s Next for WordPress Josepha launched her keynote by celebrating [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:17:\"Nicholas Garofalo\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:7482:\"\n<p>Nearly 2,000 attendees gathered for two days of keynotes, sessions, and community-building conversations at the Gaylord National Resort &amp; Convention Center in the largest attended WordCamp US ever. Saturday’s sessions concluded with back-to-back keynotes by WordPress co-founder <a href=\"https://profiles.wordpress.org/matt/\">Matt Mullenweg</a> and Executive Director <a href=\"https://profiles.wordpress.org/chanthaboune/\">Josepha Haden Chomphosy</a>. </p>\n\n\n\n<h2 class=\"wp-block-heading\">What’s Next for WordPress</h2>\n\n\n\n<figure class=\"wp-block-embed is-type-video is-provider-youtube wp-block-embed-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio\"><div class=\"wp-block-embed__wrapper\">\n<iframe class=\"youtube-player\" width=\"600\" height=\"338\" src=\"https://www.youtube.com/embed/3OaypzgzAlw?version=3&#038;rel=1&#038;showsearch=0&#038;showinfo=1&#038;iv_load_policy=1&#038;fs=1&#038;hl=en-US&#038;autohide=2&#038;wmode=transparent\" allowfullscreen=\"true\" style=\"border:0;\" sandbox=\"allow-scripts allow-same-origin allow-popups allow-presentation\"></iframe>\n</div></figure>\n\n\n\n<p>Josepha launched her keynote by celebrating 20 years of WordPress and reflecting on its journey from a blogging tool to the world&#8217;s most popular community-driven web platform. On WordPress as a platform for empowerment and change, Josepha shared, “The more people that know about WordPress, the more people can access the incredible opportunities that WordPress can provide.” And that sustaining the platform for future generations ensures these opportunities will persist. She added, “We exist for as long as people want to use our software.”</p>\n\n\n\n<p>The community is the key to sustaining WordPress, and Josepha touched on the importance of WordCamps, workshops, and events that create value, promote inclusivity,&nbsp; and spark inspiration. WordPress can be a catalyst for positive change in the life of a contributor, end user, or site builder.</p>\n\n\n\n<p>Concluding her keynote, Josepha asked the audience to think about the story they’d want to tell about themselves and their time in WordPress; and the story they would want WordPress to tell the world.</p>\n\n\n\n<h2 class=\"wp-block-heading\">What’s Next for Gutenberg</h2>\n\n\n\n<figure class=\"wp-block-embed is-type-video is-provider-youtube wp-block-embed-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio\"><div class=\"wp-block-embed__wrapper\">\n<iframe class=\"youtube-player\" width=\"600\" height=\"338\" src=\"https://www.youtube.com/embed/EavRd7PtA0Q?version=3&#038;rel=1&#038;showsearch=0&#038;showinfo=1&#038;iv_load_policy=1&#038;fs=1&#038;hl=en-US&#038;autohide=2&#038;wmode=transparent\" allowfullscreen=\"true\" style=\"border:0;\" sandbox=\"allow-scripts allow-same-origin allow-popups allow-presentation\"></iframe>\n</div></figure>\n\n\n\n<p>Matt began his keynote with a touch of nostalgia, referring to a comment on his personal blog in 2003 by WordPress Co-founder <a href=\"https://profiles.wordpress.org/mikelittle/\">Mike Little</a>, and then looked ahead to the most recent release, WordPress 6.3. As this year’s largest release, it includes new features such as the Command Palette, a quick way (⌘+k on Mac or Ctrl+k on Windows) to search your site and access common commands.</p>\n\n\n\n<figure class=\"wp-block-image size-large\"><a href=\"https://wordpress.org/download/releases/6-3/\"><img decoding=\"async\" fetchpriority=\"high\" width=\"1024\" height=\"535\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/08/6.3-Release-Edition-Featured-Image.png?resize=1024%2C535&#038;ssl=1\" alt=\"WordPress 6.3 Lionel\" class=\"wp-image-15795\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2023/08/6.3-Release-Edition-Featured-Image.png?resize=1024%2C535&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2023/08/6.3-Release-Edition-Featured-Image.png?resize=300%2C157&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2023/08/6.3-Release-Edition-Featured-Image.png?resize=768%2C401&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2023/08/6.3-Release-Edition-Featured-Image.png?resize=1536%2C802&amp;ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2023/08/6.3-Release-Edition-Featured-Image.png?resize=2048%2C1070&amp;ssl=1 2048w, https://i0.wp.com/wordpress.org/news/files/2023/08/6.3-Release-Edition-Featured-Image.png?w=3000&amp;ssl=1 3000w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" data-recalc-dims=\"1\" /></a></figure>\n\n\n\n<p>Matt continued, “WordPress never rests, so right around the corner is <a href=\"https://make.wordpress.org/core/6-4/\">WordPress 6.4</a> on Nov 7… with some cool new features.” He shared that 6.4, like 5.6, will be an underrepresented gender-led release. A new default theme, <a href=\"https://make.wordpress.org/core/2023/08/24/introducing-twenty-twenty-four/\">Twenty Twenty-Four</a>, is tailored for entrepreneurs and small businesses, photographers and artists, and writers and bloggers. Additionally, 6.4 will feature integrated font management and Image block options to expand single images for optimal viewing.</p>\n\n\n\n<p>Looking further into the future, Matt highlighted Phase 3 of the Gutenberg project, which will focus on workflows and collaboration, “moving WordPress from a single-player to a multi-player tool.” In that spirit of collaboration, a new <a href=\"https://wordpress.slack.com/archives/C05PY7QLR5F\">#LMS</a> working group will also bring WordPress learning management systems together to improve the web standards for courses and learning content.</p>\n\n\n\n<p>Beyond Phase 3, Matt shared thoughts about what it means to support WordPress many years from now. A new <a href=\"https://wordpress.com/100-year/\">100-Year Plan</a> from WordPress.com is an exploration into long-term planning for your online presence. He encouraged attendees to be inspired by the region&#8217;s history, reflecting on what it would mean to honor the past while anticipating and planning for the future.&nbsp;</p>\n\n\n\n<h2 class=\"wp-block-heading\">Q&amp;A</h2>\n\n\n\n<p>A Q&amp;A session followed the keynotes, with questions submitted by the in-person audience and live stream viewers.</p>\n\n\n\n<figure class=\"wp-block-embed is-type-video is-provider-youtube wp-block-embed-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio\"><div class=\"wp-block-embed__wrapper\">\n<iframe loading=\"lazy\" class=\"youtube-player\" width=\"600\" height=\"338\" src=\"https://www.youtube.com/embed/3Fa0Q-brSeI?version=3&#038;rel=1&#038;showsearch=0&#038;showinfo=1&#038;iv_load_policy=1&#038;fs=1&#038;hl=en-US&#038;autohide=2&#038;wmode=transparent\" allowfullscreen=\"true\" style=\"border:0;\" sandbox=\"allow-scripts allow-same-origin allow-popups allow-presentation\"></iframe>\n</div></figure>\n\n\n\n<p>Additional questions will be answered in a future post on <a href=\"https://make.wordpress.org/project/\">make.WordPress.org/project/</a>. Join the <a href=\"https://make.wordpress.org/\">global community making WordPress</a> and be part of our journey toward a brighter future!</p>\n\n\n\n<p><em>Thank you to </em><a href=\"https://profiles.wordpress.org/angelasjin/\"><em>@angelasjin</em></a><em>, </em><a href=\"https://profiles.wordpress.org/bjmcsherry/\"><em>@bmcsherry</em></a><em>, </em><a href=\"https://profiles.wordpress.org/cbringmann/\"><em>@cbringmann</em></a><em>, </em><a href=\"https://profiles.wordpress.org/dansoschin/\"><em>@dansoschin</em></a><em>, and </em><a href=\"https://profiles.wordpress.org/eidolonnight/\"><em>@eidolonnight</em></a><em> for collaborating on this post.</em></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"15879\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:3;a:6:{s:4:\"data\";s:64:\"\n		\n		\n		\n		\n		\n				\n		\n		\n		\n\n					\n										\n					\n		\n		\n\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:27:\"WP20 – A Heartfelt Thanks\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:59:\"https://wordpress.org/news/2023/08/wp20-a-heartfelt-thanks/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 17 Aug 2023 14:54:03 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:3:{i:0;a:5:{s:4:\"data\";s:6:\"Events\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:7:\"General\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:4:\"WP20\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=15471\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:484:\"Earlier this year, WordPressers around the globe united to celebrate 20 years of community and innovation. There were parties, blogs, videos, and social media posts aplenty. And, of course, the trending hashtag, “#WP20”.\n\nThroughout April and May, community members reflected on their journeys - what brought them to WordPress and its personal meaning. The stories, tweets, and videos were inspiring, nostalgic, and even humorous at times. There was swag, and the cakes were epic.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:9:\"enclosure\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:3:\"url\";s:68:\"https://wordpress.org/news/files/2023/08/wp20-celebrate-animated.mp4\";s:6:\"length\";s:7:\"2964981\";s:4:\"type\";s:9:\"video/mp4\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Dan Soschin\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:38216:\"\n<figure class=\"wp-block-video\"><video autoplay controls loop muted src=\"https://wordpress.org/news/files/2023/08/wp20-celebrate-animated.mp4\" playsinline></video></figure>\n\n\n\n<p>Earlier this year, WordPressers around the globe united to celebrate 20 years of community and innovation. There were parties, blogs, videos, and social media posts aplenty. And, of course, the trending hashtag, “#WP20”.</p>\n\n\n\n<p>Throughout April and May, community members reflected on their journeys &#8211; what brought them to WordPress and its personal meaning. The stories, tweets, and videos were inspiring, nostalgic, and even humorous at times. There was swag, and the cakes were epic.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Let’s take a look!</h2>\n\n\n\n<div class=\"wp-block-columns is-layout-flex wp-container-3 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<figure class=\"wp-block-embed is-type-rich is-provider-twitter wp-block-embed-twitter\"><div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"twitter-tweet\" data-width=\"500\" data-dnt=\"true\"><p lang=\"en\" dir=\"ltr\">On WordPress turning 20, and the Audrey Scholars program: <a href=\"https://t.co/Etwh8H6xh4\">https://t.co/Etwh8H6xh4</a></p>&mdash; Matt Mullenweg (@photomatt) <a href=\"https://twitter.com/photomatt/status/1662582800451776512?ref_src=twsrc%5Etfw\">May 27, 2023</a></blockquote><script async src=\"https://platform.twitter.com/widgets.js\" charset=\"utf-8\"></script>\n</div></figure>\n\n\n\n<figure class=\"wp-block-embed is-type-rich is-provider-twitter wp-block-embed-twitter\"><div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"twitter-tweet\" data-width=\"500\" data-dnt=\"true\"><p lang=\"en\" dir=\"ltr\">WordPress celebrates 20 years tomorrow. It&#39;s grown from a comment on a blog post to a web spanning phenomenon. Thanks to an outstanding community and the freedoms of Open Source. Happy Birthday, WordPress! <a href=\"https://twitter.com/hashtag/WP20?src=hash&amp;ref_src=twsrc%5Etfw\">#WP20</a> <a href=\"https://twitter.com/hashtag/WordPress?src=hash&amp;ref_src=twsrc%5Etfw\">#WordPress</a> <a href=\"https://t.co/fght4XMJXb\">pic.twitter.com/fght4XMJXb</a></p>&mdash; Mike Little (@mikelittlezed1) <a href=\"https://twitter.com/mikelittlezed1/status/1662013891856027649?ref_src=twsrc%5Etfw\">May 26, 2023</a></blockquote><script async src=\"https://platform.twitter.com/widgets.js\" charset=\"utf-8\"></script>\n</div></figure>\n\n\n\n<figure class=\"wp-block-embed is-type-rich is-provider-twitter wp-block-embed-twitter\"><div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"twitter-tweet\" data-width=\"500\" data-dnt=\"true\"><p lang=\"en\" dir=\"ltr\">Look at this cute <a href=\"https://twitter.com/hashtag/WP20?src=hash&amp;ref_src=twsrc%5Etfw\">#WP20</a> cake from <a href=\"https://twitter.com/RicksBakery?ref_src=twsrc%5Etfw\">@RicksBakery</a>! <a href=\"https://t.co/f88H3usR5R\">pic.twitter.com/f88H3usR5R</a></p>&mdash; Josepha Haden Chomphosy (@JosephaHaden) <a href=\"https://twitter.com/JosephaHaden/status/1662562362979676162?ref_src=twsrc%5Etfw\">May 27, 2023</a></blockquote><script async src=\"https://platform.twitter.com/widgets.js\" charset=\"utf-8\"></script>\n</div></figure>\n\n\n\n<figure class=\"wp-block-embed is-type-rich is-provider-twitter wp-block-embed-twitter\"><div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"twitter-tweet\" data-width=\"500\" data-dnt=\"true\"><p lang=\"es\" dir=\"ltr\">Tenemos regalitos para los que vengáis esta tarde a la Meetup.<a href=\"https://twitter.com/hashtag/WP20?src=hash&amp;ref_src=twsrc%5Etfw\">#WP20</a> <a href=\"https://t.co/PSPsbWluv7\">pic.twitter.com/PSPsbWluv7</a></p>&mdash; Meetup WordPress Torrelodones (@WPTorrelodones) <a href=\"https://twitter.com/WPTorrelodones/status/1671918091398258688?ref_src=twsrc%5Etfw\">June 22, 2023</a></blockquote><script async src=\"https://platform.twitter.com/widgets.js\" charset=\"utf-8\"></script>\n</div></figure>\n\n\n\n<figure class=\"wp-block-embed is-type-rich is-provider-twitter wp-block-embed-twitter\"><div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"twitter-tweet\" data-width=\"500\" data-dnt=\"true\"><p lang=\"en\" dir=\"ltr\">So <a href=\"https://twitter.com/WordPress?ref_src=twsrc%5Etfw\">@WordPress</a> is turning 20 years old today! <a href=\"https://twitter.com/hashtag/WP20?src=hash&amp;ref_src=twsrc%5Etfw\">#WP20</a> <br><br>Happy birthday to WordPress and its entire community! from me and <a href=\"https://twitter.com/MariekeRakt?ref_src=twsrc%5Etfw\">@MariekeRakt</a> <a href=\"https://t.co/9N9T0SnsdL\">pic.twitter.com/9N9T0SnsdL</a></p>&mdash; Joost de Valk (@jdevalk) <a href=\"https://twitter.com/jdevalk/status/1662398779360702465?ref_src=twsrc%5Etfw\">May 27, 2023</a></blockquote><script async src=\"https://platform.twitter.com/widgets.js\" charset=\"utf-8\"></script>\n</div></figure>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<figure class=\"wp-block-embed is-type-rich is-provider-twitter wp-block-embed-twitter\"><div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"twitter-tweet\" data-width=\"500\" data-dnt=\"true\"><p lang=\"en\" dir=\"ltr\">Happy 20th birthday, <a href=\"https://twitter.com/WordPress?ref_src=twsrc%5Etfw\">@WordPress</a>! Our Cebu meetup was a success! <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/2728.png\" alt=\"✨\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f382.png\" alt=\"?\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /><br><br>…and our community is growing. <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f4af.png\" alt=\"?\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> Thanks to <a href=\"https://twitter.com/hashtag/enspaceCebu?src=hash&amp;ref_src=twsrc%5Etfw\">#enspaceCebu</a> for hosting our party! <a href=\"https://twitter.com/hashtag/WP20?src=hash&amp;ref_src=twsrc%5Etfw\">#WP20</a> <a href=\"https://twitter.com/hashtag/WordPressCebu?src=hash&amp;ref_src=twsrc%5Etfw\">#WordPressCebu</a> <a href=\"https://twitter.com/hashtag/WPCebu?src=hash&amp;ref_src=twsrc%5Etfw\">#WPCebu</a> <a href=\"https://t.co/TUFoKjuoxq\">pic.twitter.com/TUFoKjuoxq</a></p>&mdash; Cebu WordPress Meetup (@WPCebu) <a href=\"https://twitter.com/WPCebu/status/1664957630241189888?ref_src=twsrc%5Etfw\">June 3, 2023</a></blockquote><script async src=\"https://platform.twitter.com/widgets.js\" charset=\"utf-8\"></script>\n</div></figure>\n\n\n\n<figure class=\"wp-block-embed is-type-rich is-provider-twitter wp-block-embed-twitter\"><div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"twitter-tweet\" data-width=\"500\" data-dnt=\"true\"><p lang=\"en\" dir=\"ltr\">I&#39;m sure you&#39;ve seen by now, but today is WordPress&#39; 20th birthday! Thank you to <a href=\"https://twitter.com/photomatt?ref_src=twsrc%5Etfw\">@photomatt</a> and <a href=\"https://twitter.com/mikelittlezed1?ref_src=twsrc%5Etfw\">@mikelittlezed1</a> for following through with a seemingly wild idea. I don&#39;t think anyone could have predicted we&#39;d end up where we are today. Happy birthday <a href=\"https://twitter.com/WordPress?ref_src=twsrc%5Etfw\">@WordPress</a>! <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f389.png\" alt=\"?\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f973.png\" alt=\"?\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> <a href=\"https://twitter.com/hashtag/WP20?src=hash&amp;ref_src=twsrc%5Etfw\">#WP20</a> <a href=\"https://t.co/tAZRlYThuS\">pic.twitter.com/tAZRlYThuS</a></p>&mdash; Jon Desrosiers (@desrosj) <a href=\"https://twitter.com/desrosj/status/1662616708064985088?ref_src=twsrc%5Etfw\">May 28, 2023</a></blockquote><script async src=\"https://platform.twitter.com/widgets.js\" charset=\"utf-8\"></script>\n</div></figure>\n\n\n\n<figure class=\"wp-block-embed is-type-rich is-provider-twitter wp-block-embed-twitter\"><div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"twitter-tweet\" data-width=\"500\" data-dnt=\"true\"><p lang=\"de\" dir=\"ltr\">Hier ist der Recap vom letzten Zürcher <a href=\"https://twitter.com/hashtag/WordPress?src=hash&amp;ref_src=twsrc%5Etfw\">#WordPress</a> <a href=\"https://twitter.com/hashtag/Meetup?src=hash&amp;ref_src=twsrc%5Etfw\">#Meetup</a> im <a href=\"https://twitter.com/westhive?ref_src=twsrc%5Etfw\">@westhive</a> inkl. Audioaufzeichnungen und Slides der Präsentationen, sowie ein paar visuellen Eindrücken des Abends. <a href=\"https://twitter.com/hashtag/BBQ?src=hash&amp;ref_src=twsrc%5Etfw\">#BBQ</a> <a href=\"https://twitter.com/hashtag/WP20?src=hash&amp;ref_src=twsrc%5Etfw\">#WP20</a> <a href=\"https://t.co/IycEcb4DQL\">https://t.co/IycEcb4DQL</a></p>&mdash; WordPress Zürich (@wpzurich) <a href=\"https://twitter.com/wpzurich/status/1674695261694701568?ref_src=twsrc%5Etfw\">June 30, 2023</a></blockquote><script async src=\"https://platform.twitter.com/widgets.js\" charset=\"utf-8\"></script>\n</div></figure>\n\n\n\n<figure class=\"wp-block-embed is-type-rich is-provider-twitter wp-block-embed-twitter\"><div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"twitter-tweet\" data-width=\"500\" data-dnt=\"true\"><p lang=\"qme\" dir=\"ltr\"><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f973.png\" alt=\"?\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f973.png\" alt=\"?\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f973.png\" alt=\"?\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /><a href=\"https://twitter.com/hashtag/WCEU?src=hash&amp;ref_src=twsrc%5Etfw\">#WCEU</a> <a href=\"https://twitter.com/hashtag/WCEU2023?src=hash&amp;ref_src=twsrc%5Etfw\">#WCEU2023</a> <a href=\"https://twitter.com/hashtag/WP20?src=hash&amp;ref_src=twsrc%5Etfw\">#WP20</a> <a href=\"https://t.co/Uodqd2OotM\">pic.twitter.com/Uodqd2OotM</a></p>&mdash; Osom Studio WordPress &amp; WooCommerce Agency (@OSOM_STUDIO) <a href=\"https://twitter.com/OSOM_STUDIO/status/1667524236406145024?ref_src=twsrc%5Etfw\">June 10, 2023</a></blockquote><script async src=\"https://platform.twitter.com/widgets.js\" charset=\"utf-8\"></script>\n</div></figure>\n\n\n\n<figure class=\"wp-block-embed is-type-rich is-provider-twitter wp-block-embed-twitter\"><div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"twitter-tweet\" data-width=\"500\" data-dnt=\"true\"><p lang=\"en\" dir=\"ltr\">Celebrating <a href=\"https://twitter.com/hashtag/WP20?src=hash&amp;ref_src=twsrc%5Etfw\">#WP20</a> at <a href=\"https://twitter.com/hashtag/WCEU?src=hash&amp;ref_src=twsrc%5Etfw\">#WCEU</a> with <a href=\"https://twitter.com/photomatt?ref_src=twsrc%5Etfw\">@photomatt</a> <a href=\"https://twitter.com/JosephaHaden?ref_src=twsrc%5Etfw\">@JosephaHaden</a> <a href=\"https://twitter.com/matias_ventura?ref_src=twsrc%5Etfw\">@matias_ventura</a> <a href=\"https://t.co/9LM9HnEfYn\">pic.twitter.com/9LM9HnEfYn</a></p>&mdash; Felix Arntz (@felixarntz) <a href=\"https://twitter.com/felixarntz/status/1667536517705736193?ref_src=twsrc%5Etfw\">June 10, 2023</a></blockquote><script async src=\"https://platform.twitter.com/widgets.js\" charset=\"utf-8\"></script>\n</div></figure>\n</div>\n</div>\n\n\n\n<p>Want to see more tweets? <a href=\"https://wp20.wordpress.net/live/\">Check out the tweet wall here.</a></p>\n\n\n\n<h2 class=\"wp-block-heading\">Bits &amp; Bytes</h2>\n\n\n\n<ul>\n<li><a href=\"https://wp20.wordpress.net\">Official website for WP20</a></li>\n\n\n\n<li>The #WP20 hashtag was used at least 18,000 times between March 1 and June 8, 2023 on social peaking on May 27 with at least 2,700+ metions</li>\n\n\n\n<li>165+ meetups took place to celebrate WP20</li>\n\n\n\n<li>At least 4,661 people attended a meetup across six continents</li>\n\n\n\n<li>100+ kits of swag were shipped to meetup organizers</li>\n</ul>\n\n\n\n<p>Want more social media for WordPress? Check out the official accounts here:</p>\n\n\n\n<ul>\n<li><a href=\"https://twitter.com/WordPress\">Twitter</a></li>\n\n\n\n<li><a href=\"https://www.instagram.com/wordpress/\">Instagram</a></li>\n\n\n\n<li><a href=\"https://www.facebook.com/WordPress/\">Facebook</a></li>\n\n\n\n<li><a href=\"https://www.linkedin.com/company/wordpress\">LinkedIn</a></li>\n\n\n\n<li><a href=\"https://www.youtube.com/wordpress\">YouTube</a></li>\n\n\n\n<li><a href=\"https://www.pinterest.com/WordPress/\">Pinterest</a></li>\n\n\n\n<li><a href=\"https://www.tumblr.com/wordpress\">Tumblr</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\">Snapshots from WP20 Celebrations</h2>\n\n\n\n<figure class=\"wp-block-gallery has-nested-images columns-default is-cropped wp-block-gallery-4 is-layout-flex wp-block-gallery-is-layout-flex\">\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" loading=\"lazy\" width=\"1024\" height=\"768\" data-id=\"15527\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/07/Fz4aD6_XwAICdz-.jpeg?resize=1024%2C768&#038;ssl=1\" alt=\"\" class=\"wp-image-15527\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2023/07/Fz4aD6_XwAICdz-.jpeg?resize=1024%2C768&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2023/07/Fz4aD6_XwAICdz-.jpeg?resize=300%2C225&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2023/07/Fz4aD6_XwAICdz-.jpeg?resize=768%2C576&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2023/07/Fz4aD6_XwAICdz-.jpeg?w=1200&amp;ssl=1 1200w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" loading=\"lazy\" width=\"769\" height=\"1024\" data-id=\"15518\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/07/fxhuvvbacaagn6c.webp?resize=769%2C1024&#038;ssl=1\" alt=\"\" class=\"wp-image-15518\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2023/07/fxhuvvbacaagn6c.webp?resize=769%2C1024&amp;ssl=1 769w, https://i0.wp.com/wordpress.org/news/files/2023/07/fxhuvvbacaagn6c.webp?resize=225%2C300&amp;ssl=1 225w, https://i0.wp.com/wordpress.org/news/files/2023/07/fxhuvvbacaagn6c.webp?resize=768%2C1023&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2023/07/fxhuvvbacaagn6c.webp?resize=1154%2C1536&amp;ssl=1 1154w, https://i0.wp.com/wordpress.org/news/files/2023/07/fxhuvvbacaagn6c.webp?w=1538&amp;ssl=1 1538w\" sizes=\"(max-width: 769px) 100vw, 769px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" loading=\"lazy\" width=\"768\" height=\"1024\" data-id=\"15523\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/07/fxhspnlaqainz1f.webp?resize=768%2C1024&#038;ssl=1\" alt=\"\" class=\"wp-image-15523\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2023/07/fxhspnlaqainz1f.webp?resize=768%2C1024&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2023/07/fxhspnlaqainz1f.webp?resize=225%2C300&amp;ssl=1 225w, https://i0.wp.com/wordpress.org/news/files/2023/07/fxhspnlaqainz1f.webp?resize=1152%2C1536&amp;ssl=1 1152w, https://i0.wp.com/wordpress.org/news/files/2023/07/fxhspnlaqainz1f.webp?w=1536&amp;ssl=1 1536w\" sizes=\"(max-width: 768px) 100vw, 768px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" loading=\"lazy\" width=\"1024\" height=\"768\" data-id=\"15516\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/07/fxjpa3oamaaetri.webp?resize=1024%2C768&#038;ssl=1\" alt=\"\" class=\"wp-image-15516\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2023/07/fxjpa3oamaaetri.webp?w=1024&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2023/07/fxjpa3oamaaetri.webp?resize=300%2C225&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2023/07/fxjpa3oamaaetri.webp?resize=768%2C576&amp;ssl=1 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" loading=\"lazy\" width=\"828\" height=\"1024\" data-id=\"15517\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/07/fxjparaaqaa1iji.webp?resize=828%2C1024&#038;ssl=1\" alt=\"\" class=\"wp-image-15517\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2023/07/fxjparaaqaa1iji.webp?w=828&amp;ssl=1 828w, https://i0.wp.com/wordpress.org/news/files/2023/07/fxjparaaqaa1iji.webp?resize=243%2C300&amp;ssl=1 243w, https://i0.wp.com/wordpress.org/news/files/2023/07/fxjparaaqaa1iji.webp?resize=768%2C950&amp;ssl=1 768w\" sizes=\"(max-width: 828px) 100vw, 828px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" loading=\"lazy\" width=\"1024\" height=\"768\" data-id=\"15522\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/07/fxj2btqaaaakewo.webp?resize=1024%2C768&#038;ssl=1\" alt=\"\" class=\"wp-image-15522\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2023/07/fxj2btqaaaakewo.webp?resize=1024%2C768&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2023/07/fxj2btqaaaakewo.webp?resize=300%2C225&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2023/07/fxj2btqaaaakewo.webp?resize=768%2C576&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2023/07/fxj2btqaaaakewo.webp?resize=1536%2C1152&amp;ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2023/07/fxj2btqaaaakewo.webp?w=2048&amp;ssl=1 2048w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" loading=\"lazy\" width=\"768\" height=\"1024\" data-id=\"15524\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/07/fxkqdpmxwaa9zvr.webp?resize=768%2C1024&#038;ssl=1\" alt=\"\" class=\"wp-image-15524\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2023/07/fxkqdpmxwaa9zvr-scaled.webp?resize=768%2C1024&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2023/07/fxkqdpmxwaa9zvr-scaled.webp?resize=225%2C300&amp;ssl=1 225w, https://i0.wp.com/wordpress.org/news/files/2023/07/fxkqdpmxwaa9zvr-scaled.webp?resize=1152%2C1536&amp;ssl=1 1152w, https://i0.wp.com/wordpress.org/news/files/2023/07/fxkqdpmxwaa9zvr-scaled.webp?resize=1536%2C2048&amp;ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2023/07/fxkqdpmxwaa9zvr-scaled.webp?w=1920&amp;ssl=1 1920w\" sizes=\"(max-width: 768px) 100vw, 768px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" loading=\"lazy\" width=\"1024\" height=\"768\" data-id=\"15519\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/07/fxkanzxwyami0ja.webp?resize=1024%2C768&#038;ssl=1\" alt=\"\" class=\"wp-image-15519\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2023/07/fxkanzxwyami0ja.webp?resize=1024%2C768&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2023/07/fxkanzxwyami0ja.webp?resize=300%2C225&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2023/07/fxkanzxwyami0ja.webp?resize=768%2C576&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2023/07/fxkanzxwyami0ja.webp?w=1280&amp;ssl=1 1280w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" loading=\"lazy\" width=\"1024\" height=\"941\" data-id=\"15525\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/07/fxkanzxwcaativc.webp?resize=1024%2C941&#038;ssl=1\" alt=\"\" class=\"wp-image-15525\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2023/07/fxkanzxwcaativc.webp?resize=1024%2C941&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2023/07/fxkanzxwcaativc.webp?resize=300%2C276&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2023/07/fxkanzxwcaativc.webp?resize=768%2C706&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2023/07/fxkanzxwcaativc.webp?resize=1536%2C1411&amp;ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2023/07/fxkanzxwcaativc.webp?w=2047&amp;ssl=1 2047w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" loading=\"lazy\" width=\"1024\" height=\"768\" data-id=\"15520\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/07/fxoi01sxgamyqi7.webp?resize=1024%2C768&#038;ssl=1\" alt=\"\" class=\"wp-image-15520\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2023/07/fxoi01sxgamyqi7.webp?resize=1024%2C768&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2023/07/fxoi01sxgamyqi7.webp?resize=300%2C225&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2023/07/fxoi01sxgamyqi7.webp?resize=768%2C576&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2023/07/fxoi01sxgamyqi7.webp?w=1280&amp;ssl=1 1280w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" loading=\"lazy\" width=\"1024\" height=\"851\" data-id=\"15521\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/07/fxoukosaeaaa-sk.webp?resize=1024%2C851&#038;ssl=1\" alt=\"\" class=\"wp-image-15521\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2023/07/fxoukosaeaaa-sk.webp?resize=1024%2C851&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2023/07/fxoukosaeaaa-sk.webp?resize=300%2C249&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2023/07/fxoukosaeaaa-sk.webp?resize=768%2C638&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2023/07/fxoukosaeaaa-sk.webp?resize=1536%2C1276&amp;ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2023/07/fxoukosaeaaa-sk.webp?w=2048&amp;ssl=1 2048w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" loading=\"lazy\" width=\"1024\" height=\"769\" data-id=\"15526\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/07/fxm7nexxsaa5vec.webp?resize=1024%2C769&#038;ssl=1\" alt=\"\" class=\"wp-image-15526\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2023/07/fxm7nexxsaa5vec-scaled.webp?resize=1024%2C769&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2023/07/fxm7nexxsaa5vec-scaled.webp?resize=300%2C225&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2023/07/fxm7nexxsaa5vec-scaled.webp?resize=768%2C577&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2023/07/fxm7nexxsaa5vec-scaled.webp?resize=1536%2C1154&amp;ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2023/07/fxm7nexxsaa5vec-scaled.webp?resize=2048%2C1538&amp;ssl=1 2048w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" data-recalc-dims=\"1\" /></figure>\n</figure>\n\n\n\n<h2 class=\"wp-block-heading\">Props</h2>\n\n\n\n<p>WP20 celebrations, swag, websites, social media, graphics, and so much more could not have happened without the wonderful contributions of so many. Beyond the organizers of the 165+ events, there were many people working behind the scenes to ensure WordPress got the recognition it deserved. Thank you to everyone who worked behind the scenes to organize the meetups, create swag, and to spread the word. Some of these hardworking folks include: <a href=\"https://profiles.wordpress.org/nomadskateboarding/\">Mark Andrew</a>, <a href=\"https://profiles.wordpress.org/joen/\">Joen Asmussen</a>, <a href=\"https://profiles.wordpress.org/tinobarreiro/\">Tino Barreiro</a>, <a href=\"https://profiles.wordpress.org/cbringmann/\">Chloe Bringmann</a>, <a href=\"https://profiles.wordpress.org/chanthaboune/\">Josepha Haden Chomphosy</a>, <a href=\"https://profiles.wordpress.org/mysweetcate/\">Cate DeRosia</a>, <a href=\"https://profiles.wordpress.org/triforcepower/\">Em DeRosia</a>, <a href=\"https://profiles.wordpress.org/beafialho/\">Beatriz Fialho</a>, <a href=\"https://profiles.wordpress.org/eidolonnight/\">Nicholas Garofalo</a>, <a href=\"https://profiles.wordpress.org/ngreennc/\">Nyasha Green</a>, <a href=\"https://profiles.wordpress.org/nickhamze/\">Nick Hamze</a>, <a href=\"https://profiles.wordpress.org/meaganhanes/\">Meagan Hanes</a>, <a href=\"https://profiles.wordpress.org/kellychoffman/\">Kelly Hoffman</a>, <a href=\"https://profiles.wordpress.org/pablohoneyhoney/\">Pablo Honey</a>, <a href=\"https://profiles.wordpress.org/santanainniss/\">Santana Inniss</a>, <a href=\"https://profiles.wordpress.org/markoserb/\">Marko Ivanovic</a>, <a href=\"https://profiles.wordpress.org/angelasjin/\">Angela Jin</a>, Winston Koone, Megan Marcel, <a href=\"https://profiles.wordpress.org/ninianepress/\">Jenni McKinnon</a>, <a href=\"https://profiles.wordpress.org/bjmcsherry/\">Brett McSherry</a>, <a href=\"https://profiles.wordpress.org/jpantani/\">Jonathan Pantani</a>, <a href=\"https://profiles.wordpress.org/sereedmedia/\">Se Reed</a>, <a href=\"https://profiles.wordpress.org/laurlittle/\">Lauren Stein</a>, <a href=\"https://profiles.wordpress.org/fcoveram/\">Francisco Vera</a>, Andrew Wikel, and <a href=\"https://profiles.wordpress.org/adamwood/\">Adam Wood</a>.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Some More Fun</h2>\n\n\n\n<p>A WordPress event is not complete without a Wapuu, and not only was there one, but there was a whole campaign to color it in! Thanks to <a href=\"https://profiles.wordpress.org/triforcepower/\">Em DeRosia</a> for creating the commemorative Wapuu!</p>\n\n\n\n<figure class=\"wp-block-gallery has-nested-images columns-default is-cropped wp-block-gallery-6 is-layout-flex wp-block-gallery-is-layout-flex\">\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" loading=\"lazy\" width=\"737\" height=\"1024\" data-id=\"15532\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/07/Fs33fvqWcAAKRbx.png?resize=737%2C1024&#038;ssl=1\" alt=\"\" class=\"wp-image-15532\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2023/07/Fs33fvqWcAAKRbx.png?resize=737%2C1024&amp;ssl=1 737w, https://i0.wp.com/wordpress.org/news/files/2023/07/Fs33fvqWcAAKRbx.png?resize=216%2C300&amp;ssl=1 216w, https://i0.wp.com/wordpress.org/news/files/2023/07/Fs33fvqWcAAKRbx.png?resize=768%2C1067&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2023/07/Fs33fvqWcAAKRbx.png?w=864&amp;ssl=1 864w\" sizes=\"(max-width: 737px) 100vw, 737px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" loading=\"lazy\" width=\"737\" height=\"1024\" data-id=\"15528\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/07/FrU8oOFaQAEZLPY.jpeg?resize=737%2C1024&#038;ssl=1\" alt=\"\" class=\"wp-image-15528\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2023/07/FrU8oOFaQAEZLPY.jpeg?resize=737%2C1024&amp;ssl=1 737w, https://i0.wp.com/wordpress.org/news/files/2023/07/FrU8oOFaQAEZLPY.jpeg?resize=216%2C300&amp;ssl=1 216w, https://i0.wp.com/wordpress.org/news/files/2023/07/FrU8oOFaQAEZLPY.jpeg?resize=768%2C1067&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2023/07/FrU8oOFaQAEZLPY.jpeg?w=864&amp;ssl=1 864w\" sizes=\"(max-width: 737px) 100vw, 737px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" loading=\"lazy\" width=\"722\" height=\"956\" data-id=\"15531\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/07/Ft8DCn9WcA08xYZ.jpeg?resize=722%2C956&#038;ssl=1\" alt=\"\" class=\"wp-image-15531\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2023/07/Ft8DCn9WcA08xYZ.jpeg?w=722&amp;ssl=1 722w, https://i0.wp.com/wordpress.org/news/files/2023/07/Ft8DCn9WcA08xYZ.jpeg?resize=227%2C300&amp;ssl=1 227w\" sizes=\"(max-width: 722px) 100vw, 722px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" loading=\"lazy\" width=\"832\" height=\"1024\" data-id=\"15534\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/07/FtyXUDZXgAA1G1K.jpeg?resize=832%2C1024&#038;ssl=1\" alt=\"\" class=\"wp-image-15534\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2023/07/FtyXUDZXgAA1G1K.jpeg?resize=832%2C1024&amp;ssl=1 832w, https://i0.wp.com/wordpress.org/news/files/2023/07/FtyXUDZXgAA1G1K.jpeg?resize=244%2C300&amp;ssl=1 244w, https://i0.wp.com/wordpress.org/news/files/2023/07/FtyXUDZXgAA1G1K.jpeg?resize=768%2C945&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2023/07/FtyXUDZXgAA1G1K.jpeg?w=975&amp;ssl=1 975w\" sizes=\"(max-width: 832px) 100vw, 832px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" loading=\"lazy\" width=\"819\" height=\"1024\" data-id=\"15533\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/07/FuvXFqHWAAY7Yob.jpeg?resize=819%2C1024&#038;ssl=1\" alt=\"\" class=\"wp-image-15533\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2023/07/FuvXFqHWAAY7Yob.jpeg?resize=819%2C1024&amp;ssl=1 819w, https://i0.wp.com/wordpress.org/news/files/2023/07/FuvXFqHWAAY7Yob.jpeg?resize=240%2C300&amp;ssl=1 240w, https://i0.wp.com/wordpress.org/news/files/2023/07/FuvXFqHWAAY7Yob.jpeg?resize=768%2C960&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2023/07/FuvXFqHWAAY7Yob.jpeg?w=960&amp;ssl=1 960w\" sizes=\"(max-width: 819px) 100vw, 819px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" loading=\"lazy\" width=\"1024\" height=\"829\" data-id=\"15530\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/07/FxHdOAdXwAE_4w9.jpeg?resize=1024%2C829&#038;ssl=1\" alt=\"\" class=\"wp-image-15530\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2023/07/FxHdOAdXwAE_4w9.jpeg?resize=1024%2C829&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2023/07/FxHdOAdXwAE_4w9.jpeg?resize=300%2C243&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2023/07/FxHdOAdXwAE_4w9.jpeg?resize=768%2C622&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2023/07/FxHdOAdXwAE_4w9.jpeg?w=1121&amp;ssl=1 1121w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" loading=\"lazy\" width=\"1024\" height=\"712\" data-id=\"15535\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/07/FtsDGoiaUAA91ug.jpeg?resize=1024%2C712&#038;ssl=1\" alt=\"\" class=\"wp-image-15535\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2023/07/FtsDGoiaUAA91ug.jpeg?resize=1024%2C712&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2023/07/FtsDGoiaUAA91ug.jpeg?resize=300%2C209&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2023/07/FtsDGoiaUAA91ug.jpeg?resize=768%2C534&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2023/07/FtsDGoiaUAA91ug.jpeg?w=1200&amp;ssl=1 1200w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" loading=\"lazy\" width=\"709\" height=\"1024\" data-id=\"15536\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/07/FtxoedaacAYaIeq.jpeg?resize=709%2C1024&#038;ssl=1\" alt=\"\" class=\"wp-image-15536\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2023/07/FtxoedaacAYaIeq.jpeg?resize=709%2C1024&amp;ssl=1 709w, https://i0.wp.com/wordpress.org/news/files/2023/07/FtxoedaacAYaIeq.jpeg?resize=208%2C300&amp;ssl=1 208w, https://i0.wp.com/wordpress.org/news/files/2023/07/FtxoedaacAYaIeq.jpeg?resize=768%2C1109&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2023/07/FtxoedaacAYaIeq.jpeg?w=831&amp;ssl=1 831w\" sizes=\"(max-width: 709px) 100vw, 709px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" loading=\"lazy\" width=\"737\" height=\"1024\" data-id=\"15529\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/07/FxIvqkGWIAEPKt8.jpeg?resize=737%2C1024&#038;ssl=1\" alt=\"\" class=\"wp-image-15529\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2023/07/FxIvqkGWIAEPKt8.jpeg?resize=737%2C1024&amp;ssl=1 737w, https://i0.wp.com/wordpress.org/news/files/2023/07/FxIvqkGWIAEPKt8.jpeg?resize=216%2C300&amp;ssl=1 216w, https://i0.wp.com/wordpress.org/news/files/2023/07/FxIvqkGWIAEPKt8.jpeg?resize=768%2C1066&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2023/07/FxIvqkGWIAEPKt8.jpeg?w=970&amp;ssl=1 970w\" sizes=\"(max-width: 737px) 100vw, 737px\" data-recalc-dims=\"1\" /></figure>\n</figure>\n\n\n\n<p>The Marketing team ran an interactive campaign, <a href=\"https://make.wordpress.org/marketing/2023/05/02/20-days-to-celebrate-20-years-of-wordpress-from-blogs-to-blocks/\"><em>From Blogs to Blocks</em></a>, a series of prompts across 20 days for WordPress enthusiasts to celebrate all-things WordPress.</p>\n\n\n\n<p>Additional campaigns took place on social media and included prompting folks to share their favorite WordPress memory and most cherished WordPress swag item, to highlight the 21 contributing teams, and even to share a birthday greeting.</p>\n\n\n\n<figure class=\"wp-block-embed is-type-rich is-provider-twitter wp-block-embed-twitter\"><div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"twitter-tweet\" data-width=\"500\" data-dnt=\"true\"><p lang=\"en\" dir=\"ltr\">My fav <a href=\"https://twitter.com/hashtag/WordPress?src=hash&amp;ref_src=twsrc%5Etfw\">#WordPress</a> swag, which I use daily! This was the speaker swag from <a href=\"https://twitter.com/hashtag/WCBos?src=hash&amp;ref_src=twsrc%5Etfw\">#WCBos</a> 2019. <a href=\"https://twitter.com/melchoyce?ref_src=twsrc%5Etfw\">@melchoyce</a>, I think you designed this stunning logo? <a href=\"https://twitter.com/hashtag/WP20?src=hash&amp;ref_src=twsrc%5Etfw\">#WP20</a> <a href=\"https://t.co/1sEIEMGzM9\">https://t.co/1sEIEMGzM9</a> <a href=\"https://t.co/F0ufF9msqP\">pic.twitter.com/F0ufF9msqP</a></p>&mdash; Angela Jin (@AngelaSJin) <a href=\"https://twitter.com/AngelaSJin/status/1650832707683864578?ref_src=twsrc%5Etfw\">April 25, 2023</a></blockquote><script async src=\"https://platform.twitter.com/widgets.js\" charset=\"utf-8\"></script>\n</div></figure>\n\n\n\n<p>We had lots of digital goodies too! From 3D desktop wallpaper, to selfie-props for the celebrations, and more. <a href=\"https://wp20.wordpress.net/swag/\">You can download them here</a>.</p>\n\n\n\n<div class=\"wp-block-jetpack-tiled-gallery aligncenter is-style-rectangular\"><div class=\"tiled-gallery__gallery\"><div class=\"tiled-gallery__row\"><div class=\"tiled-gallery__col\" style=\"flex-basis:37.05595%\"><figure class=\"tiled-gallery__item\"><img decoding=\"async\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2023/08/wp20-selfie-glasses-1024x576.png?strip=info&#038;w=600&#038;ssl=1 600w,https://i0.wp.com/wordpress.org/news/files/2023/08/wp20-selfie-glasses-1024x576.png?strip=info&#038;w=900&#038;ssl=1 900w,https://i0.wp.com/wordpress.org/news/files/2023/08/wp20-selfie-glasses-1024x576.png?strip=info&#038;w=1200&#038;ssl=1 1200w,https://i0.wp.com/wordpress.org/news/files/2023/08/wp20-selfie-glasses-1024x576.png?strip=info&#038;w=1500&#038;ssl=1 1500w,https://i0.wp.com/wordpress.org/news/files/2023/08/wp20-selfie-glasses-1024x576.png?strip=info&#038;w=1600&#038;ssl=1 1600w\" alt=\"\" data-height=\"900\" data-id=\"15830\" data-link=\"https://wordpress.org/news/?attachment_id=15830\" data-url=\"https://wordpress.org/news/files/2023/08/wp20-selfie-glasses-1024x576.png\" data-width=\"1600\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/08/wp20-selfie-glasses-1024x576.png?ssl=1\" data-amp-layout=\"responsive\" /></figure><figure class=\"tiled-gallery__item\"><img decoding=\"async\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2023/08/wp20-celebrate-desktop.jpg?strip=info&#038;w=600&#038;ssl=1 600w,https://i0.wp.com/wordpress.org/news/files/2023/08/wp20-celebrate-desktop.jpg?strip=info&#038;w=825&#038;ssl=1 825w\" alt=\"\" data-height=\"600\" data-id=\"15829\" data-link=\"https://wordpress.org/news/?attachment_id=15829\" data-url=\"https://wordpress.org/news/files/2023/08/wp20-celebrate-desktop.jpg\" data-width=\"825\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/08/wp20-celebrate-desktop.jpg?ssl=1\" data-amp-layout=\"responsive\" /></figure></div><div class=\"tiled-gallery__col\" style=\"flex-basis:62.94405%\"><figure class=\"tiled-gallery__item\"><img decoding=\"async\" srcset=\"https://i1.wp.com/wordpress.org/news/files/2023/08/wp20-logo-blueberry3x-1024x783.png?strip=info&#038;w=600&#038;ssl=1 600w,https://i1.wp.com/wordpress.org/news/files/2023/08/wp20-logo-blueberry3x-1024x783.png?strip=info&#038;w=900&#038;ssl=1 900w,https://i1.wp.com/wordpress.org/news/files/2023/08/wp20-logo-blueberry3x-1024x783.png?strip=info&#038;w=1200&#038;ssl=1 1200w,https://i1.wp.com/wordpress.org/news/files/2023/08/wp20-logo-blueberry3x-1024x783.png?strip=info&#038;w=1490&#038;ssl=1 1490w\" alt=\"WP20\" data-height=\"1140\" data-id=\"15854\" data-link=\"https://wordpress.org/news/?attachment_id=15854\" data-url=\"https://wordpress.org/news/files/2023/08/wp20-logo-blueberry3x-1024x783.png\" data-width=\"1490\" src=\"https://i1.wp.com/wordpress.org/news/files/2023/08/wp20-logo-blueberry3x-1024x783.png?ssl=1\" data-amp-layout=\"responsive\" /></figure></div></div></div></div>\n\n\n\n<h2 class=\"wp-block-heading\">Got Swag? Need Swag?</h2>\n\n\n\n<p>It&#8217;s not too late to order your WP20 commemorative items. <a href=\"https://mercantile.wordpress.org/product-category/wp20/\">Find shirts, stickers, and more, while supplies last</a>!</p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>See you in five years for the 25th!</strong></h2>\n\n\n\n<p>Sign up here to stay in the &#8220;know&#8221;!</p>\n\n\n	<div class=\"wp-block-jetpack-subscriptions__supports-newline wp-block-jetpack-subscriptions\">\n		<div class=\"jetpack_subscription_widget\">\n			<div class=\"wp-block-jetpack-subscriptions__container\">\n				<form\n					action=\"#\"\n					method=\"post\"\n					accept-charset=\"utf-8\"\n					data-blog=\"14607090\"\n					data-post_access_level=\"everybody\"\n					id=\"subscribe-blog-1\"\n				>\n					<p id=\"subscribe-email\">\n						<label id=\"jetpack-subscribe-label\"\n							class=\"screen-reader-text\"\n							for=\"subscribe-field-1\">\n							Type your email…						</label>\n						<input type=\"email\" name=\"email\" required=\"required\"\n															class=\"no-border-radius  required\"\n																						style=\"font-size: 16px;padding: 15px 23px 15px 23px;border-radius: 0px;border-width: 1px;\"\n														value=\"\"\n							id=\"subscribe-field-1\"\n							placeholder=\"Type your email…\"\n						/>\n					</p>\n\n					<p id=\"subscribe-submit\"\n											>\n						<input type=\"hidden\" name=\"action\" value=\"subscribe\"/>\n						<input type=\"hidden\" name=\"blog_id\" value=\"14607090\"/>\n						<input type=\"hidden\" name=\"source\" value=\"https://wordpress.org/news/feed/\"/>\n						<input type=\"hidden\" name=\"sub-type\" value=\"subscribe-block\"/>\n						<input type=\"hidden\" name=\"redirect_fragment\" value=\"subscribe-blog-1\"/>\n												<button type=\"submit\"\n															class=\"wp-block-button__link no-border-radius\"\n																						style=\"font-size: 16px;padding: 15px 23px 15px 23px;margin: 0px; margin-left: 10px;border-radius: 0px;border-width: 1px;\"\n														name=\"jetpack_subscriptions_widget\"\n						>\n							Subscribe						</button>\n					</p>\n				</form>\n\n							</div>\n		</div>\n	</div>\n	\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"15471\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:4;a:6:{s:4:\"data\";s:66:\"\n		\n		\n		\n		\n		\n				\n		\n		\n		\n		\n\n					\n										\n					\n		\n		\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:26:\"WordPress 6.3 “Lionel”\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"https://wordpress.org/news/2023/08/lionel/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 08 Aug 2023 20:03:16 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:4:{i:0;a:5:{s:4:\"data\";s:7:\"General\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:3:\"6.3\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:3;a:5:{s:4:\"data\";s:8:\"releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=15718\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:196:\"WordPress 6.3 \"Lionel\" is here! Named after Lionel Hampton, the prolific jazz musician and bandleader, this release was made possible by over 650 contributors. Download WordPress 6.3 Lionel today.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Matias Ventura\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:71649:\"\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" loading=\"lazy\" width=\"1024\" height=\"683\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/08/6.3-Release-Edition-Main-Image.png?resize=1024%2C683&#038;ssl=1\" alt=\"\" class=\"wp-image-15794\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2023/08/6.3-Release-Edition-Main-Image.png?resize=1024%2C683&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2023/08/6.3-Release-Edition-Main-Image.png?resize=300%2C200&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2023/08/6.3-Release-Edition-Main-Image.png?resize=768%2C512&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2023/08/6.3-Release-Edition-Main-Image.png?resize=1536%2C1024&amp;ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2023/08/6.3-Release-Edition-Main-Image.png?resize=2048%2C1365&amp;ssl=1 2048w, https://i0.wp.com/wordpress.org/news/files/2023/08/6.3-Release-Edition-Main-Image.png?w=3000&amp;ssl=1 3000w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<p>Say hello to WordPress 6.3 “Lionel,” named after <a href=\"https://en.wikipedia.org/wiki/Lionel_Hampton\">Lionel Hampton</a>, the celebrated American jazz artist. A prolific jazz vibraphonist, pianist, and percussionist, Hampton gained notoriety working in harmony with greats from <a href=\"https://en.wikipedia.org/wiki/Charles_Mingus\">Charles Mingus</a> to <a href=\"https://en.wikipedia.org/wiki/Quincy_Jones\">Quincy Jones</a> and as bandleader of the eponymous Lionel Hampton Orchestra. His artistry and charitable work have been recognized with a Grammy, a star on the Hollywood Walk of Fame, and the National Medal of Arts.</p>\n\n\n\n<p>Be sure to turn up the volume of the <a href=\"https://www.youtube.com/channel/UCpfWWFslWSapwL_q16AboSg/featured\">musical stylings</a> of Lionel Hampton as you discover all “Lionel” has to offer.</p>\n\n\n\n<p>With “Lionel” you can create beautiful and compelling websites more efficiently than ever. Whether you want to build an entire site without coding or are a developer looking to customize every detail, WordPress 6.3 has something to pique your interest. As you unpack and explore this latest release, you will discover updated functions and navigation designed to help you work and create with less effort, design tools that give you more control over layout, and added functionality enriching the site-building experience.</p>\n\n\n\n<blockquote class=\"wp-block-quote has-large-font-size\">\n<p class=\"has-extra-large-font-size\">&#8220;Lionel&#8221; marks a major chapter in the evolution of WordPress as a tool for expression. It’s the culmination of years of work from hundreds of contributors, bringing a more powerful and cohesive editing experience for crafting websites with blocks. It continues the quest of making web publishing approachable for everyone—so it’s also just a new beginning!</p>\n<cite>Matías Ventura, WordPress 6.3 Release Lead</cite></blockquote>\n\n\n\n<div class=\"wp-block-buttons is-layout-flex wp-block-buttons-is-layout-flex\">\n<div class=\"wp-block-button\"><a class=\"wp-block-button__link wp-element-button\" href=\"https://wordpress.org/wordpress-6.3.zip\">Download WordPress 6.3 &#8220;Lionel&#8221; today</a></div>\n</div>\n\n\n\n<h2 class=\"wp-block-heading\">What’s inside</h2>\n\n\n\n<p>This momentous release opens new possibilities for the creative expression of designers, creators, and builders. Powerful tools and refined controls give users confidence and allow them to easily manage their sites.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Do everything in the Site Editor</h3>\n\n\n\n<p>WordPress 6.3 brings your content, templates, and patterns together in the Site Editor for the first time. Add pages, browse style variations, create synced patterns, and enjoy fine-tuned control over navigation menus. Spend less time switching across different site areas—so you can focus on what matters most. Creation to completion, all in one place.</p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" loading=\"lazy\" width=\"1024\" height=\"666\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/08/site-editor-2.png?resize=1024%2C666&#038;ssl=1\" alt=\"Image titled: &quot;Do everything in the Site Editor&quot;\" class=\"wp-image-15808\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2023/08/site-editor-2.png?resize=1024%2C666&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2023/08/site-editor-2.png?resize=300%2C195&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2023/08/site-editor-2.png?resize=768%2C499&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2023/08/site-editor-2.png?w=1360&amp;ssl=1 1360w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" data-recalc-dims=\"1\" /><figcaption class=\"wp-element-caption\"><em>Do everything in the Site Editor</em></figcaption></figure>\n\n\n\n<h3 class=\"wp-block-heading\">Preview Block themes</h3>\n\n\n\n<p>Experience block themes before you switch and preview the Site Editor, with options to customize directly before committing to a new theme.&nbsp;</p>\n\n\n\n<figure class=\"wp-block-image aligncenter size-large\"><img decoding=\"async\" loading=\"lazy\" width=\"1024\" height=\"666\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/08/previewing-themes.png?resize=1024%2C666&#038;ssl=1\" alt=\"Image about previewing block themes titled Previewing Themes depicting &quot;Previewing: Organizer&quot;\" class=\"wp-image-15769\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2023/08/previewing-themes.png?resize=1024%2C666&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2023/08/previewing-themes.png?resize=300%2C195&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2023/08/previewing-themes.png?resize=768%2C499&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2023/08/previewing-themes.png?w=1360&amp;ssl=1 1360w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" data-recalc-dims=\"1\" /><figcaption class=\"wp-element-caption\"><em>Preview a new block theme before you switch and commit</em></figcaption></figure>\n\n\n\n<h3 class=\"wp-block-heading\">Create and sync patterns</h3>\n\n\n\n<p>Arrange blocks and save them to the ‘My Patterns’ section for use throughout your site. You can even specify whether to sync your patterns (previously referred to as “Reusable blocks”) so that one change applies to all parts of your site. Or, utilize patterns as a starting point with the ability to customize each instance.</p>\n\n\n\n<figure class=\"wp-block-image aligncenter size-large\"><img decoding=\"async\" loading=\"lazy\" width=\"1024\" height=\"666\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/08/patterns.png?resize=1024%2C666&#038;ssl=1\" alt=\"Image showing the new My Patterns section in the CMS.\" class=\"wp-image-15768\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2023/08/patterns.png?resize=1024%2C666&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2023/08/patterns.png?resize=300%2C195&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2023/08/patterns.png?resize=768%2C499&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2023/08/patterns.png?w=1360&amp;ssl=1 1360w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" data-recalc-dims=\"1\" /><figcaption class=\"wp-element-caption\"><em>My patterns: All your patterns in one place</em></figcaption></figure>\n\n\n\n<h3 class=\"wp-block-heading\">Work faster with the Command Palette</h3>\n\n\n\n<p>Switch to a specific template or open your editor preferences with a new tool that helps you quickly access expanded functionality. With simple keyboard shortcuts (⌘+k on Mac or Ctrl+k on Windows), clicking the sidebar search icon in Site View, or clicking the Title Bar, get where you need to go and do what you need to do in seconds.</p>\n\n\n\n<figure class=\"wp-block-image aligncenter size-large\"><img decoding=\"async\" loading=\"lazy\" width=\"1024\" height=\"666\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/08/command-palette.png?resize=1024%2C666&#038;ssl=1\" alt=\"Image depicting the new Command Palette\" class=\"wp-image-15763\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2023/08/command-palette.png?resize=1024%2C666&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2023/08/command-palette.png?resize=300%2C195&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2023/08/command-palette.png?resize=768%2C499&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2023/08/command-palette.png?w=1360&amp;ssl=1 1360w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" data-recalc-dims=\"1\" /><figcaption class=\"wp-element-caption\"><em>Get to know the new Command Palette </em></figcaption></figure>\n\n\n\n<h3 class=\"wp-block-heading\">Sharpen your designs with new tools</h3>\n\n\n\n<p>New design controls bring more versatility for fine-tuning, starting with the ability to customize your captions from the Styles interface without coding. You can manage your duotone filters in Styles for supported blocks and pick from the options provided by your theme or disable them entirely. The Cover block gets added settings for text color, layout controls, and border options, making this powerful block even more handy.</p>\n\n\n\n<figure class=\"wp-block-image aligncenter size-large\"><img decoding=\"async\" loading=\"lazy\" width=\"1024\" height=\"666\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/08/design.png?resize=1024%2C666&#038;ssl=1\" alt=\"Image representing the new design tools in the Site Editor\" class=\"wp-image-15764\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2023/08/design.png?resize=1024%2C666&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2023/08/design.png?resize=300%2C195&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2023/08/design.png?resize=768%2C499&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2023/08/design.png?w=1360&amp;ssl=1 1360w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" data-recalc-dims=\"1\" /><figcaption class=\"wp-element-caption\"><em>New design tools</em></figcaption></figure>\n\n\n\n<h3 class=\"wp-block-heading\">Track design changes with Style revisions</h3>\n\n\n\n<p>With a new audit trail, you can now see how your site looked at a specific time. Visualize these revisions in a timeline and access a one-click option to restore prior styles.</p>\n\n\n\n<figure class=\"wp-block-image aligncenter size-large\"><img decoding=\"async\" loading=\"lazy\" width=\"1024\" height=\"666\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/08/revisions.png?resize=1024%2C666&#038;ssl=1\" alt=\"Image titled &quot;Style Revisions&quot;\" class=\"wp-image-15770\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2023/08/revisions.png?resize=1024%2C666&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2023/08/revisions.png?resize=300%2C195&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2023/08/revisions.png?resize=768%2C499&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2023/08/revisions.png?w=1360&amp;ssl=1 1360w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" data-recalc-dims=\"1\" /><figcaption class=\"wp-element-caption\"><em>Style revisions: See your style revision history </em></figcaption></figure>\n\n\n\n<h3 class=\"wp-block-heading\">Annotate with the Footnotes block</h3>\n\n\n\n<p>Footnotes add convenient annotations throughout your content. Now you can add and link footnotes for any paragraph.</p>\n\n\n\n<figure class=\"wp-block-image aligncenter size-large\"><img decoding=\"async\" loading=\"lazy\" width=\"1024\" height=\"666\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/08/footnotes.png?resize=1024%2C666&#038;ssl=1\" alt=\"Image depicting the new Footnotes Block\" class=\"wp-image-15766\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2023/08/footnotes.png?resize=1024%2C666&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2023/08/footnotes.png?resize=300%2C195&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2023/08/footnotes.png?resize=768%2C499&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2023/08/footnotes.png?w=1360&amp;ssl=1 1360w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" data-recalc-dims=\"1\" /><figcaption class=\"wp-element-caption\"><em>Add footnotes effortlessly with the new Footnotes Block</em></figcaption></figure>\n\n\n\n<h3 class=\"wp-block-heading\">Show or hide content with the Details block</h3>\n\n\n\n<p>Use the Details block to avoid spoiling a surprise, create an interactive Q&amp;A section, or hide a long paragraph under a heading.</p>\n\n\n\n<figure class=\"wp-block-image aligncenter size-large\"><img decoding=\"async\" loading=\"lazy\" width=\"1024\" height=\"666\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/08/details.png?resize=1024%2C666&#038;ssl=1\" alt=\"Image depicting the new Details Block\" class=\"wp-image-15765\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2023/08/details.png?resize=1024%2C666&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2023/08/details.png?resize=300%2C195&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2023/08/details.png?resize=768%2C499&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2023/08/details.png?w=1360&amp;ssl=1 1360w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" data-recalc-dims=\"1\" /><figcaption class=\"wp-element-caption\"><em>Display or hide content with the new Details Block</em></figcaption></figure>\n\n\n\n<h3 class=\"wp-block-heading\">Performance gets a boost</h3>\n\n\n\n<p>WordPress 6.3 has <a href=\"https://make.wordpress.org/core/2023/08/07/wordpress-6-3-performance-improvements/\">170+ performance updates</a>, including defer and async support for the Scripts API and fetchpriority support for images. These improvements, along with block template resolution, image lazy-loading, and the emoji loader, can dramatically improve your website’s perceived load time.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Accessibility remains a core focus</h3>\n\n\n\n<p>Incorporating more than 50 accessibility improvements across the platform, WordPress 6.3 is more accessible than ever. Improved labeling, optimized tab and arrow-key navigation, revised heading hierarchy, and new controls in the admin image editor allow those using assistive technologies to navigate more easily.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Other highlights</h3>\n\n\n\n<h4 class=\"wp-block-heading\">Set aspect ratio on images</h4>\n\n\n\n<p>Specify your aspect ratios and ensure design integrity, especially when using images in patterns.</p>\n\n\n\n<h4 class=\"wp-block-heading\">Build your site distraction-free</h4>\n\n\n\n<p>Distraction-free designing is now available in the Site Editor.</p>\n\n\n\n<h4 class=\"wp-block-heading\">Rediscover the Top Toolbar</h4>\n\n\n\n<p>A revamped Top Toolbar offers parent selectors for nested blocks, options when selecting multiple blocks, and an interface embedded into the title bar with new functionality in mind.</p>\n\n\n\n<h4 class=\"wp-block-heading\">List View improvements</h4>\n\n\n\n<p>Drag and drop to every content layer and delete any block you would like in the updated List View.</p>\n\n\n\n<h4 class=\"wp-block-heading\">Build templates with Patterns</h4>\n\n\n\n<p>Create unique patterns to jumpstart template creation with a new modal enabling access to pattern selection.</p>\n\n\n\n<h4 class=\"wp-block-heading\">Changes in PHP support</h4>\n\n\n\n<p>Support for PHP 5 is discontinued. The&nbsp;new minimum supported version&nbsp;of PHP is 7.0.0.</p>\n\n\n\n<h4 class=\"wp-block-heading\">Failed update safeguards</h4>\n\n\n\n<p>WordPress will now auto-restore the previously installed version of plugins or themes if something goes wrong during a failed manual update.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<h2 class=\"wp-block-heading\">Learn more about WordPress and 6.3</h2>\n\n\n\n<p>Explore <a href=\"https://learn.wordpress.org/tutorials/\">Learn WordPress</a> for quick how-to videos, <a href=\"https://learn.wordpress.org/social-learning/\">online workshops</a>, and other resources to level up your knowledge of the latest features in WordPress.&nbsp;</p>\n\n\n\n<p>Check out the <a href=\"https://make.wordpress.org/core/2023/07/18/wordpress-6-3-field-guide/\">WordPress 6.3 Field Guide</a> for detailed developer notes to help you build with WordPress and get the most out of the latest release. Read the <a href=\"https://wordpress.org/documentation/wordpress-version/version-6-3/\">6.3 release notes</a> for additional technical details about this release, including feature recaps, installation information, file changes, fixes, and updates.</p>\n\n\n\n<p>Read and subscribe to the <a href=\"https://developer.wordpress.org/news/\">Developer Blog</a> for even more helpful WordPress content.&nbsp;</p>\n\n\n\n<p>To accompany this release, a new <a href=\"https://wordpress.org/download/releases/6-3/\">web experience</a> has been created to provide a more visual way of getting acquainted with the many improvements and new features of WordPress 6.3. </p>\n\n\n\n<p>Seeing WordPress 6.3 in action doesn&#8217;t stop there! Be sure to watch this brief <a href=\"https://www.youtube.com/watch?v=6JhJcOLySLY\">overview video</a> to get a taste of the many things &#8220;Lionel&#8221; has to offer.</p>\n\n\n\n<figure class=\"wp-block-embed is-type-video is-provider-youtube wp-block-embed-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio\"><div class=\"wp-block-embed__wrapper\">\n<iframe loading=\"lazy\" class=\"youtube-player\" width=\"600\" height=\"338\" src=\"https://www.youtube.com/embed/6JhJcOLySLY?version=3&#038;rel=1&#038;showsearch=0&#038;showinfo=1&#038;iv_load_policy=1&#038;fs=1&#038;hl=en-US&#038;autohide=2&#038;wmode=transparent\" allowfullscreen=\"true\" style=\"border:0;\" sandbox=\"allow-scripts allow-same-origin allow-popups allow-presentation\"></iframe>\n</div></figure>\n\n\n\n<h2 class=\"wp-block-heading\">WordPress is a global software platform</h2>\n\n\n\n<p><a href=\"https://translate.wordpress.org/stats/\">61 locales have translated 90 percent</a> or more of WordPress 6.3 into their language. Community translators are working hard to ensure more translations are on their way. Thank you, gracias, ありがとう, धन्यवाद, and ευχαριστώ to everyone who helps to make WordPress available in 200 languages.</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"Contributing-to-WordPress\">Contributing to WordPress</h2>\n\n\n\n<p>WordPress believes in democratizing publishing and <a href=\"https://opensource.org/osd-annotated\">the freedoms that come with open source</a>. Supporting this idea is a large community of people collaborating to strengthen the software. A big thank you to everyone who makes WordPress.</p>\n\n\n\n<blockquote class=\"wp-block-quote has-large-font-size\">\n<p class=\"has-extra-large-font-size\">Our community of contributors has always been what makes WordPress wonderful. You are what makes sure our project continues to thrive, and our software remains secure, usable, and impactful. Thank you so much for joining together to make the web (and the world) a better place!</p>\n<cite>Josepha Haden Chomphosy, Executive Director, WordPress.org</cite></blockquote>\n\n\n\n<p>WordPress 6.3 arrives thanks to more than 650 contributors&#8217; collective passion and effort in at least 52 countries. This release also includes over 205 first-time contributors!&nbsp;</p>\n\n\n\n<h3 class=\"wp-block-heading\">The 6.3 release squad</h3>\n\n\n\n<p>The 6.3 release was led from start to launch by an active set of contributors from across many disciplines. Over several weeks, they kept the release on track and moving forward by connecting ideas, resolving issues, and removing roadblocks.</p>\n\n\n\n<ul>\n<li>Release Lead: <a href=\"https://profiles.wordpress.org/matveb/\">Matías Ventura</a></li>\n\n\n\n<li>Release Coordinators: <a href=\"https://profiles.wordpress.org/francina/\">Francesca Marano</a>, <a href=\"https://profiles.wordpress.org/priethor/\">Héctor Prieto</a></li>\n\n\n\n<li>Core Tech Leads: <a href=\"https://profiles.wordpress.org/azaozz/\">Andrew Ozz</a>, <a href=\"https://profiles.wordpress.org/mikeschroder/\">Mike Schroder</a>, <a href=\"https://profiles.wordpress.org/davidbaumwald/\">David Baumwald</a></li>\n\n\n\n<li>Editor Tech Leads:&nbsp; <a href=\"https://profiles.wordpress.org/isabel_brison/\">Isabel Brison</a>, <a href=\"https://profiles.wordpress.org/ramonopoly/\">Ramon Dodd</a></li>\n\n\n\n<li>Core Triage Leads: <a href=\"https://profiles.wordpress.org/audrasjb/\">Jb Audras</a>, <a href=\"https://profiles.wordpress.org/chaion07/\">Ahmed Kabir Chaion</a>, <a href=\"https://profiles.wordpress.org/mukesh27/\">Mukesh Panchal</a>, <a href=\"https://profiles.wordpress.org/oglekler/\">Olga Glecker</a></li>\n\n\n\n<li>Editor Triage Leads: <a href=\"https://profiles.wordpress.org/annezazu/\">Anne McCarthy</a>, <a href=\"https://profiles.wordpress.org/bph/\">Birgit Pauli-Haack</a>, <a href=\"https://profiles.wordpress.org/firoz2456/\">Firoz Sabaliya</a>, <a href=\"https://profiles.wordpress.org/ndiego/\">Nick Diego</a></li>\n\n\n\n<li>Documentation Leads: <a href=\"https://profiles.wordpress.org/femkreations/\">Femy Praseeth</a>, <a href=\"https://profiles.wordpress.org/stevenlinx/\">Steven Lin</a>, <a href=\"https://profiles.wordpress.org/leonnugraha/\">Leonardus Nugraha</a>, <a href=\"https://profiles.wordpress.org/611shabnam/\">Mushrit Shabnam</a></li>\n\n\n\n<li>Marketing &amp; Communications Leads: <a href=\"https://profiles.wordpress.org/dansoschin/\">Dan Soschin</a>, <a href=\"https://profiles.wordpress.org/jpantani/\">Jonathan Pantani</a>, <a href=\"https://profiles.wordpress.org/meher/\">Meher Bala</a></li>\n\n\n\n<li>Test Leads: <a href=\"https://profiles.wordpress.org/ironprogrammer/\">Brian Alexander</a>, <a href=\"https://profiles.wordpress.org/webtechpooja/\">Pooja Derashri</a>, <a href=\"https://profiles.wordpress.org/chrismalone617/\">Chris Malone</a>, <a href=\"https://profiles.wordpress.org/boniu91/\">Piotrek Boniu</a></li>\n\n\n\n<li>Design Leads: <a href=\"https://profiles.wordpress.org/karmatosed/\">Tammie Lister</a>, <a href=\"https://profiles.wordpress.org/richtabor/\">Rich Tabor</a></li>\n\n\n\n<li>Performance Leads: <a href=\"https://profiles.wordpress.org/flixos90/\">Felix Arntz</a>, <a href=\"https://profiles.wordpress.org/clarkeemily/\">Emily Clarke</a></li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\">6.3 contributors</h3>\n\n\n\n<p>Complimenting the release squad is a diverse group of contributors whose global collaboration delivered hundreds of enhancements and fixes, ensuring a stable release for all—a testament to the power and capability of the WordPress community.&nbsp;</p>\n\n\n\n<p class=\"is-style-wporg-props-long alignfull\"><a href=\"https://profiles.wordpress.org/zgrkaralar/\">&#214;zg&#252;r KARALAR</a> · <a href=\"https://profiles.wordpress.org/6adminit/\">6adminit</a> · <a href=\"https://profiles.wordpress.org/jorbin/\">Aaron Jorbin</a> · <a href=\"https://profiles.wordpress.org/aaronrobertshaw/\">Aaron Robertshaw</a> · <a href=\"https://profiles.wordpress.org/webcommsat/\">Abha Thakor</a> · <a href=\"https://profiles.wordpress.org/abhi3315/\">abhi3315</a> · <a href=\"https://profiles.wordpress.org/softwortech/\">Abhishek Sharma</a> · <a href=\"https://profiles.wordpress.org/ababir/\">Abir</a> · <a href=\"https://profiles.wordpress.org/abitofmind/\">abitofmind</a> · <a href=\"https://profiles.wordpress.org/adamsilverstein/\">Adam Silverstein</a> · <a href=\"https://profiles.wordpress.org/awarner20/\">Adam W. Warner</a> · <a href=\"https://profiles.wordpress.org/adarshposimyth/\">Adarsh Akshat</a> · <a href=\"https://profiles.wordpress.org/adeltahri/\">Adel Tahri</a> · <a href=\"https://profiles.wordpress.org/adi3890/\">Aditya Jain</a> · <a href=\"https://profiles.wordpress.org/chaion07/\">Ahmed Chaion</a> · <a href=\"https://profiles.wordpress.org/ahsannayem/\">Ahsan Chowdhury</a> · <a href=\"https://profiles.wordpress.org/wildworks/\">Aki Hamano</a> · <a href=\"https://profiles.wordpress.org/akmelias/\">akmelias</a> · <a href=\"https://profiles.wordpress.org/wpfy/\">Akramul Hasan</a> · <a href=\"https://profiles.wordpress.org/xknown/\">Alex Concha</a> · <a href=\"https://profiles.wordpress.org/xavortm/\">Alex Dimitrov</a> · <a href=\"https://profiles.wordpress.org/cawa-93/\">Alex Kozack</a> · <a href=\"https://profiles.wordpress.org/ajlende/\">Alex Lende</a> · <a href=\"https://profiles.wordpress.org/alexstine/\">Alex Stine</a> · <a href=\"https://profiles.wordpress.org/alexandrelara/\">Alexandre Lara</a> · <a href=\"https://profiles.wordpress.org/allancole/\">allancole</a> · <a href=\"https://profiles.wordpress.org/mrfoxtalbot/\">Alvaro G&#243;mez</a> · <a href=\"https://profiles.wordpress.org/alvitazwar052/\">Alvi Tazwar</a> · <a href=\"https://profiles.wordpress.org/akrocks/\">Amaan Khan</a> · <a href=\"https://profiles.wordpress.org/amansurov/\">amansurov</a> · <a href=\"https://profiles.wordpress.org/amin7/\">amin</a> · <a href=\"https://profiles.wordpress.org/sabreuse/\">Amy Hendrix (sabreuse)</a> · <a href=\"https://profiles.wordpress.org/anatoliyav/\">Anatoliy</a> · <a href=\"https://profiles.wordpress.org/anatolikkk/\">Anatoliy Dovgun</a> · <a href=\"https://profiles.wordpress.org/afercia/\">Andrea Fercia</a> · <a href=\"https://profiles.wordpress.org/andraganescu/\">Andrei Draganescu</a> · <a href=\"https://profiles.wordpress.org/nacin/\">Andrew Nacin</a> · <a href=\"https://profiles.wordpress.org/azaozz/\">Andrew Ozz</a> · <a href=\"https://profiles.wordpress.org/andrewserong/\">Andrew Serong</a> · <a href=\"https://profiles.wordpress.org/rarst/\">Andrey \"Rarst\" Savchenko</a> · <a href=\"https://profiles.wordpress.org/oandregal/\">André Maneiro</a> · <a href=\"https://profiles.wordpress.org/afragen/\">Andy Fragen</a> · <a href=\"https://profiles.wordpress.org/andizer/\">Andy Meerwaldt</a> · <a href=\"https://profiles.wordpress.org/apeatling/\">Andy Peatling</a> · <a href=\"https://profiles.wordpress.org/anilvaza/\">Anil Vaza</a> · <a href=\"https://profiles.wordpress.org/ankit-k-gupta/\">Ankit K Gupta</a> · <a href=\"https://profiles.wordpress.org/ankitmaru/\">Ankit Panchal</a> · <a href=\"https://profiles.wordpress.org/reputeinfosystems/\">Ankur Chotai</a> · <a href=\"https://profiles.wordpress.org/annashopina/\">Anna</a> · <a href=\"https://profiles.wordpress.org/annezazu/\">Anne McCarthy</a> · <a href=\"https://profiles.wordpress.org/annebovelett/\">Anne-Mieke Bovelett</a> · <a href=\"https://profiles.wordpress.org/annziel/\">annziel</a> · <a href=\"https://profiles.wordpress.org/antpb/\">Anthony Burchell</a> · <a href=\"https://profiles.wordpress.org/atimmer/\">Anton Timmermans</a> · <a href=\"https://profiles.wordpress.org/antonvlasenko/\">Anton Vlasenko</a> · <a href=\"https://profiles.wordpress.org/antonyagrios/\">Antony Agrios</a> · <a href=\"https://profiles.wordpress.org/anver/\">anver</a> · <a href=\"https://profiles.wordpress.org/anveshika/\">Anveshika Srivastava</a> · <a href=\"https://profiles.wordpress.org/arafatjamil01/\">Arafat Jamil</a> · <a href=\"https://profiles.wordpress.org/aristath/\">Ari Stathopoulos</a> · <a href=\"https://profiles.wordpress.org/artemiosans/\">Artemio Morales</a> · <a href=\"https://profiles.wordpress.org/arthur791004/\">Arthur Chu</a> · <a href=\"https://profiles.wordpress.org/ideag/\">Arunas Liuiza</a> · <a href=\"https://profiles.wordpress.org/iamasadpolash/\">Asad Polash</a> · <a href=\"https://profiles.wordpress.org/mrasharirfan/\">Ashar Irfan</a> · <a href=\"https://profiles.wordpress.org/ashikurwp/\">Ashikur Rahman</a> · <a href=\"https://profiles.wordpress.org/nant82/\">Atanas Antonov</a> · <a href=\"https://profiles.wordpress.org/aurooba/\">Aurooba Ahmed</a> · <a href=\"https://profiles.wordpress.org/austinginder/\">Austin Ginder</a> · <a href=\"https://profiles.wordpress.org/filosofo/\">Austin Matzko</a> · <a href=\"https://profiles.wordpress.org/ayeshrajans/\">Ayesh Karunaratne</a> · <a href=\"https://profiles.wordpress.org/azizantoun/\">azizantoun</a> · <a href=\"https://profiles.wordpress.org/aznadesign/\">Aznadesign</a> · <a href=\"https://profiles.wordpress.org/bangank36/\">bangank36</a> · <a href=\"https://profiles.wordpress.org/bartkalisz/\">bartkalisz</a> · <a href=\"https://profiles.wordpress.org/empireoflight/\">Ben Dunkle</a> · <a href=\"https://profiles.wordpress.org/scruffian/\">Ben Dwyer</a> · <a href=\"https://profiles.wordpress.org/benlk/\">Ben Keith</a> · <a href=\"https://profiles.wordpress.org/benjgrolleau/\">Benjamin Grolleau</a> · <a href=\"https://profiles.wordpress.org/benjibee/\">benjibee</a> · <a href=\"https://profiles.wordpress.org/bernhard-reiter/\">Bernie Reiter</a> · <a href=\"https://profiles.wordpress.org/albatross10/\">Bhavik Kalpesh</a> · <a href=\"https://profiles.wordpress.org/bhrugesh12/\">Bhrugesh Bavishi</a> · <a href=\"https://profiles.wordpress.org/bijayyadav/\">Bijay Yadav</a> · <a href=\"https://profiles.wordpress.org/bph/\">Birgit Pauli-Haack</a> · <a href=\"https://profiles.wordpress.org/bitnissen/\">bitnissen</a> · <a href=\"https://profiles.wordpress.org/gitlost/\">bonger</a> · <a href=\"https://profiles.wordpress.org/boonebgorges/\">Boone Gorges</a> · <a href=\"https://profiles.wordpress.org/bor0/\">Boro Sitnikovski</a> · <a href=\"https://profiles.wordpress.org/wpe_bdurette/\">Brandon DuRette</a> · <a href=\"https://profiles.wordpress.org/kraftbj/\">Brandon Kraft</a> · <a href=\"https://profiles.wordpress.org/bpayton/\">Brandon Payton</a> · <a href=\"https://profiles.wordpress.org/brasofilo/\">brasofilo</a> · <a href=\"https://profiles.wordpress.org/bgoewert/\">Brennan Goewert</a> · <a href=\"https://profiles.wordpress.org/ironprogrammer/\">Brian Alexander</a> · <a href=\"https://profiles.wordpress.org/bacoords/\">Brian Coords</a> · <a href=\"https://profiles.wordpress.org/fischfood/\">Brian Fischer</a> · <a href=\"https://profiles.wordpress.org/bgardner/\">Brian Gardner</a> · <a href=\"https://profiles.wordpress.org/bridgetwillard/\">Bridget Willard</a> · <a href=\"https://profiles.wordpress.org/bronsonquick/\">Bronson Quick</a> · <a href=\"https://profiles.wordpress.org/brookemk/\">Brooke</a> · <a href=\"https://profiles.wordpress.org/brookedot/\">Brooke.</a> · <a href=\"https://profiles.wordpress.org/caraffande/\">caraffande</a> · <a href=\"https://profiles.wordpress.org/cbravobernal/\">Carlos Bravo</a> · <a href=\"https://profiles.wordpress.org/carlosgprim/\">Carlos Garcia</a> · <a href=\"https://profiles.wordpress.org/poena/\">Carolina Nymark</a> · <a href=\"https://profiles.wordpress.org/cathibosco1/\">Cathi Bosco</a> · <a href=\"https://profiles.wordpress.org/ceer/\">ceer</a> · <a href=\"https://profiles.wordpress.org/shireling/\">Chad Chadbourne</a> · <a href=\"https://profiles.wordpress.org/chintan1896/\">Chintan hingrajiya</a> · <a href=\"https://profiles.wordpress.org/chiragrathod103/\">Chirag Rathod</a> · <a href=\"https://profiles.wordpress.org/cbringmann/\">Chloe Bringmann</a> · <a href=\"https://profiles.wordpress.org/chouby/\">Chouby</a> · <a href=\"https://profiles.wordpress.org/mrflannagan/\">Chris Flannagan</a> · <a href=\"https://profiles.wordpress.org/clubkert/\">Chris Lubkert</a> · <a href=\"https://profiles.wordpress.org/chrismalone617/\">Chris Malone</a> · <a href=\"https://profiles.wordpress.org/chriscct7/\">chriscct7</a> · <a href=\"https://profiles.wordpress.org/apermo/\">Christoph Daum</a> · <a href=\"https://profiles.wordpress.org/ckoerner/\">ckoerner</a> · <a href=\"https://profiles.wordpress.org/codeamp/\">Code Amp</a> · <a href=\"https://profiles.wordpress.org/costdev/\">Colin Stewart</a> · <a href=\"https://profiles.wordpress.org/corentingautier/\">corentingautier</a> · <a href=\"https://profiles.wordpress.org/courane01/\">Courtney Robertson</a> · <a href=\"https://profiles.wordpress.org/crixu/\">Crixu</a> · <a href=\"https://profiles.wordpress.org/crs1138/\">crs1138</a> · <a href=\"https://profiles.wordpress.org/crstauf/\">crstauf</a> · <a href=\"https://profiles.wordpress.org/cshark/\">cshark</a> · <a href=\"https://profiles.wordpress.org/daisyo/\">Daisy Olsen</a> · <a href=\"https://profiles.wordpress.org/dbernar1/\">Dan Bernardic</a> · <a href=\"https://profiles.wordpress.org/dansoschin/\">Dan Soschin</a> · <a href=\"https://profiles.wordpress.org/danielbachhuber/\">Daniel Bachhuber</a> · <a href=\"https://profiles.wordpress.org/talldanwp/\">Daniel Richards</a> · <a href=\"https://profiles.wordpress.org/mte90/\">Daniele Scasciafratte</a> · <a href=\"https://profiles.wordpress.org/danyk4/\">danyk4</a> · <a href=\"https://profiles.wordpress.org/darerodz/\">darerodz</a> · <a href=\"https://profiles.wordpress.org/darshitrajyaguru97/\">Darshit Rajyaguru</a> · <a href=\"https://profiles.wordpress.org/drw158/\">Dave Whitley</a> · <a href=\"https://profiles.wordpress.org/davidbaumwald/\">David Baumwald</a> · <a href=\"https://profiles.wordpress.org/davidbinda/\">David Biňovec</a> · <a href=\"https://profiles.wordpress.org/dpcalhoun/\">David Calhoun</a> · <a href=\"https://profiles.wordpress.org/dlh/\">David Herrera</a> · <a href=\"https://profiles.wordpress.org/get_dave/\">David Smith</a> · <a href=\"https://profiles.wordpress.org/davidmusnik/\">davidmusnik</a> · <a href=\"https://profiles.wordpress.org/davidwebca/\">davidwebca</a> · <a href=\"https://profiles.wordpress.org/dsas/\">Dean Sas</a> · <a href=\"https://profiles.wordpress.org/deepakvijayan/\">Deepak Vijayan</a> · <a href=\"https://profiles.wordpress.org/denis-de-bernardy/\">Denis de Bernardy</a> · <a href=\"https://profiles.wordpress.org/dingo_d/\">Denis Žoljom</a> · <a href=\"https://profiles.wordpress.org/dmsnell/\">Dennis Snell</a> · <a href=\"https://profiles.wordpress.org/dennysdionigi/\">Dennys Dionigi</a> · <a href=\"https://profiles.wordpress.org/densityapps/\">densityapps</a> · <a href=\"https://profiles.wordpress.org/sccr410/\">Derek Ashauer</a> · <a href=\"https://profiles.wordpress.org/derekblank/\">Derek Blank</a> · <a href=\"https://profiles.wordpress.org/shagors/\">devshagor</a> · <a href=\"https://profiles.wordpress.org/dharm1025/\">Dharmesh Patel</a> · <a href=\"https://profiles.wordpress.org/dhrumilk/\">Dhrumil Kumbhani</a> · <a href=\"https://profiles.wordpress.org/dhruvishah2203/\">Dhruvi Shah</a> · <a href=\"https://profiles.wordpress.org/digtek/\">DigTek</a> · <a href=\"https://profiles.wordpress.org/dilipbheda/\">Dilip Bheda</a> · <a href=\"https://profiles.wordpress.org/dimijazz/\">dimijazz</a> · <a href=\"https://profiles.wordpress.org/dd32/\">Dion Hulse</a> · <a href=\"https://profiles.wordpress.org/doems/\">doems</a> · <a href=\"https://profiles.wordpress.org/ocean90/\">Dominik Schilling</a> · <a href=\"https://profiles.wordpress.org/drewapicture/\">Drew Jaynes</a> · <a href=\"https://profiles.wordpress.org/dsar/\">dsar</a> · <a href=\"https://profiles.wordpress.org/dustyreagan/\">dustyreagan</a> · <a href=\"https://profiles.wordpress.org/ebai4/\">ebai4</a> · <a href=\"https://profiles.wordpress.org/ecorica/\">ecorica</a> · <a href=\"https://profiles.wordpress.org/beckej/\">Ed Beck</a> · <a href=\"https://profiles.wordpress.org/eduwass/\">eduwass</a> · <a href=\"https://profiles.wordpress.org/wpnook/\">Edward</a> · <a href=\"https://profiles.wordpress.org/worldomonation/\">Edwin Takahashi</a> · <a href=\"https://profiles.wordpress.org/ehsanakhgari/\">ehsanakhgari</a> · <a href=\"https://profiles.wordpress.org/ehtis/\">Ehtisham S.</a> · <a href=\"https://profiles.wordpress.org/ellatrix/\">Ella van Durpe</a> · <a href=\"https://profiles.wordpress.org/clarkeemily/\">Emily Clarke</a> · <a href=\"https://profiles.wordpress.org/emirpprime/\">emirpprime</a> · <a href=\"https://profiles.wordpress.org/nrqsnchz/\">Enrique S&#225;nchez</a> · <a href=\"https://profiles.wordpress.org/eric7186/\">eric.7186</a> · <a href=\"https://profiles.wordpress.org/kebbet/\">Erik Betshammar</a> · <a href=\"https://profiles.wordpress.org/ernest35/\">Ernest Behinov</a> · <a href=\"https://profiles.wordpress.org/estelaris/\">Estela Rueda</a> · <a href=\"https://profiles.wordpress.org/fabiankaegy/\">Fabian K&#228;gy</a> · <a href=\"https://profiles.wordpress.org/gaambo/\">Fabian Todt</a> · <a href=\"https://profiles.wordpress.org/faisalahammad/\">Faisal Ahammad</a> · <a href=\"https://profiles.wordpress.org/falgunihdesai/\">Falguni Desai</a> · <a href=\"https://profiles.wordpress.org/iamfarhan09/\">Farhan Ahmed</a> · <a href=\"https://profiles.wordpress.org/felipeelia/\">Felipe Elia</a> · <a href=\"https://profiles.wordpress.org/flixos90/\">Felix Arntz</a> · <a href=\"https://profiles.wordpress.org/femkreations/\">Femy Praseeth</a> · <a href=\"https://profiles.wordpress.org/firoz2456/\">Firoz Sabaliya</a> · <a href=\"https://profiles.wordpress.org/mista-flo/\">Florian TIAR</a> · <a href=\"https://profiles.wordpress.org/francina/\">Francesca Marano</a> · <a href=\"https://profiles.wordpress.org/frank-klein/\">Frank Klein</a> · <a href=\"https://profiles.wordpress.org/frankit/\">frankit</a> · <a href=\"https://profiles.wordpress.org/franrosa/\">franrosa</a> · <a href=\"https://profiles.wordpress.org/gaeldenysiak/\">gaeldenysiak</a> · <a href=\"https://profiles.wordpress.org/galbaras/\">Gal Baras</a> · <a href=\"https://profiles.wordpress.org/ecgan/\">Gan Eng Chin (a11n)</a> · <a href=\"https://profiles.wordpress.org/voldemortensen/\">Garth Mortensen</a> · <a href=\"https://profiles.wordpress.org/garyc40/\">Gary Cao</a> · <a href=\"https://profiles.wordpress.org/garyj/\">Gary Jones</a> · <a href=\"https://profiles.wordpress.org/pento/\">Gary Pendergast</a> · <a href=\"https://profiles.wordpress.org/soulseekah/\">Gennady Kovshenin</a> · <a href=\"https://profiles.wordpress.org/wtower/\">George</a> · <a href=\"https://profiles.wordpress.org/mamaduka/\">George Mamadashvili</a> · <a href=\"https://profiles.wordpress.org/geriux/\">Gerardo Pacheco</a> · <a href=\"https://profiles.wordpress.org/gilles66/\">gilles66</a> · <a href=\"https://profiles.wordpress.org/mokagio/\">Gio Lodi</a> · <a href=\"https://profiles.wordpress.org/glendaviesnz/\">Glen Davies</a> · <a href=\"https://profiles.wordpress.org/grandslambert/\">GrandSlambert</a> · <a href=\"https://profiles.wordpress.org/grantmkin/\">Grant M. Kinney</a> · <a href=\"https://profiles.wordpress.org/gziolo/\">Greg Zi&#243;łkowski</a> · <a href=\"https://profiles.wordpress.org/gudmdharalds/\">Gudmundur Haraldsson</a> · <a href=\"https://profiles.wordpress.org/guillaumeturpin/\">Guillaume TURPIN</a> · <a href=\"https://profiles.wordpress.org/gvgvgvijayan/\">gvgvgvijayan</a> · <a href=\"https://profiles.wordpress.org/hrdelwar/\">Habibur Rahman Delwar</a> · <a href=\"https://profiles.wordpress.org/hztyfoon/\">Hanzala Taifun</a> · <a href=\"https://profiles.wordpress.org/thakkarhardik/\">Hardik Thakkar</a> · <a href=\"https://profiles.wordpress.org/hareesh-pillai/\">Hareesh S</a> · <a href=\"https://profiles.wordpress.org/haritpanchal/\">Harit Panchal</a> · <a href=\"https://profiles.wordpress.org/harshgajipara/\">Harsh Gajipara</a> · <a href=\"https://profiles.wordpress.org/hasanmisbah/\">Hasan Misbah</a> · <a href=\"https://profiles.wordpress.org/hasanuzzamanshamim/\">Hasanuzzaman</a> · <a href=\"https://profiles.wordpress.org/hazdiego/\">Haz</a> · <a href=\"https://profiles.wordpress.org/heiko_mamerow/\">Heiko Mamerow</a> · <a href=\"https://profiles.wordpress.org/helen/\">Helen Hou-Sandi</a> · <a href=\"https://profiles.wordpress.org/helgatheviking/\">HelgaTheViking</a> · <a href=\"https://profiles.wordpress.org/luehrsen/\">Hendrik Luehrsen</a> · <a href=\"https://profiles.wordpress.org/hilayt24/\">Hilay Trivedi</a> · <a href=\"https://profiles.wordpress.org/panchalhimani711/\">Himani Panchal</a> · <a href=\"https://profiles.wordpress.org/hbhalodia/\">Hit Bhalodia</a> · <a href=\"https://profiles.wordpress.org/hrrarya/\">Hridoy Mozumder</a> · <a href=\"https://profiles.wordpress.org/hugobaeta/\">Hugo Baeta</a> · <a href=\"https://profiles.wordpress.org/hugod/\">hugod</a> · <a href=\"https://profiles.wordpress.org/hberberoglu/\">Huseyin Berberoglu</a> · <a href=\"https://profiles.wordpress.org/huzaifaalmesbah/\">Huzaifa Al Mesbah</a> · <a href=\"https://profiles.wordpress.org/priethor/\">Héctor Prieto</a> · <a href=\"https://profiles.wordpress.org/polevaultweb/\">Iain Poulson</a> · <a href=\"https://profiles.wordpress.org/ianbelanger/\">Ian Belanger</a> · <a href=\"https://profiles.wordpress.org/iandunn/\">Ian Dunn</a> · <a href=\"https://profiles.wordpress.org/ibrahimmonir/\">Ibrahim Khalil</a> · <a href=\"https://profiles.wordpress.org/shuvoaftab/\">Ibrahim Sharif</a> · <a href=\"https://profiles.wordpress.org/ignatggeorgiev/\">Ignat Georgiev</a> · <a href=\"https://profiles.wordpress.org/imanish003/\">imanish003</a> · <a href=\"https://profiles.wordpress.org/intoxination/\">intoxination</a> · <a href=\"https://profiles.wordpress.org/ipstenu/\">Ipstenu (Mika Epstein)</a> · <a href=\"https://profiles.wordpress.org/isabel_brison/\">Isabel Brison</a> · <a href=\"https://profiles.wordpress.org/jacknotman/\">jacknotman</a> · <a href=\"https://profiles.wordpress.org/jahidcse/\">Jahid Hasan</a> · <a href=\"https://profiles.wordpress.org/jakariaistauk/\">Jakaria Istauk</a> · <a href=\"https://profiles.wordpress.org/jameskoster/\">James Koster</a> · <a href=\"https://profiles.wordpress.org/james-roberts/\">James Roberts</a> · <a href=\"https://profiles.wordpress.org/james0r/\">james0r</a> · <a href=\"https://profiles.wordpress.org/janboddez/\">Jan Boddez</a> · <a href=\"https://profiles.wordpress.org/jane/\">jane</a> · <a href=\"https://profiles.wordpress.org/jankyz/\">jankyz</a> · <a href=\"https://profiles.wordpress.org/janpaulkleijn/\">janpaulkleijn</a> · <a href=\"https://profiles.wordpress.org/jsnajdr/\">Jarda Snajdr</a> · <a href=\"https://profiles.wordpress.org/pbking/\">Jason Crist</a> · <a href=\"https://profiles.wordpress.org/jsnjohnston/\">Jason Johnston</a> · <a href=\"https://profiles.wordpress.org/madtownlems/\">Jason LeMahieu (MadtownLems)</a> · <a href=\"https://profiles.wordpress.org/javiercasares/\">Javier Casares</a> · <a href=\"https://profiles.wordpress.org/jbcouton/\">jbcouton</a> · <a href=\"https://profiles.wordpress.org/audrasjb/\">Jean-Baptiste Audras</a> · <a href=\"https://profiles.wordpress.org/jffng/\">Jeff Ong</a> · <a href=\"https://profiles.wordpress.org/jeffmora/\">jeffmora</a> · <a href=\"https://profiles.wordpress.org/jeffpaul/\">Jeffrey Paul</a> · <a href=\"https://profiles.wordpress.org/jenmylo/\">Jen</a> · <a href=\"https://profiles.wordpress.org/jenilk/\">Jenil Kanani</a> · <a href=\"https://profiles.wordpress.org/jeremyfelt/\">Jeremy Felt</a> · <a href=\"https://profiles.wordpress.org/jeroenrotty/\">Jeroen Rotty</a> · <a href=\"https://profiles.wordpress.org/jeryj/\">Jerry Jones</a> · <a href=\"https://profiles.wordpress.org/jhnstn/\">jhnstn</a> · <a href=\"https://profiles.wordpress.org/jigar-bhanushali/\">jigar bhanushali</a> · <a href=\"https://profiles.wordpress.org/joedolson/\">Joe Dolson</a> · <a href=\"https://profiles.wordpress.org/joemcgill/\">Joe McGill</a> · <a href=\"https://profiles.wordpress.org/joen/\">Joen Asmussen</a> · <a href=\"https://profiles.wordpress.org/johnbillion/\">John Blackbourn</a> · <a href=\"https://profiles.wordpress.org/bitmachina/\">John Hooks</a> · <a href=\"https://profiles.wordpress.org/johnjamesjacoby/\">John James Jacoby</a> · <a href=\"https://profiles.wordpress.org/jomonthomaslobo1/\">Jomon Thomas Lobo</a> · <a href=\"https://profiles.wordpress.org/akbigdog/\">Jon Bourne</a> · <a href=\"https://profiles.wordpress.org/desrosj/\">Jonathan Desrosiers</a> · <a href=\"https://profiles.wordpress.org/jpantani/\">Jonathan Pantani</a> · <a href=\"https://profiles.wordpress.org/n2erjo00/\">Joni Erkkil&#228;</a> · <a href=\"https://profiles.wordpress.org/spacedmonkey/\">Jonny Harris</a> · <a href=\"https://profiles.wordpress.org/joostdevalk/\">Joost de Valk</a> · <a href=\"https://profiles.wordpress.org/jordesign/\">jordesign</a> · <a href=\"https://profiles.wordpress.org/jorgefilipecosta/\">Jorge Costa</a> · <a href=\"https://profiles.wordpress.org/josklever/\">Jos Klever</a> · <a href=\"https://profiles.wordpress.org/josepmoran/\">Josep Mor&#225;n</a> · <a href=\"https://profiles.wordpress.org/dunhakdis/\">Joseph G.</a> · <a href=\"https://profiles.wordpress.org/chanthaboune/\">Josepha</a> · <a href=\"https://profiles.wordpress.org/jhabdas/\">Josh Habdas</a> · <a href=\"https://profiles.wordpress.org/shelob9/\">Josh Pollock</a> · <a href=\"https://profiles.wordpress.org/joyously/\">Joy</a> · <a href=\"https://profiles.wordpress.org/jqz/\">jqz</a> · <a href=\"https://profiles.wordpress.org/juanfra/\">Juan Aldasoro</a> · <a href=\"https://profiles.wordpress.org/juanmaguitar/\">JuanMa Garrido</a> · <a href=\"https://profiles.wordpress.org/jrf/\">Juliette Reinders Folmer</a> · <a href=\"https://profiles.wordpress.org/juzar/\">Juzar</a> · <a href=\"https://profiles.wordpress.org/kadamwhite/\">K. Adam White</a> · <a href=\"https://profiles.wordpress.org/kafleg/\">KafleG</a> · <a href=\"https://profiles.wordpress.org/kevin940726/\">Kai Hao</a> · <a href=\"https://profiles.wordpress.org/trepmal/\">Kailey (trepmal)</a> · <a href=\"https://profiles.wordpress.org/kajalgohel/\">Kajal Gohel</a> · <a href=\"https://profiles.wordpress.org/leprincenoir/\">Kantari Samy</a> · <a href=\"https://profiles.wordpress.org/kapilpaul/\">Kapil Paul</a> · <a href=\"https://profiles.wordpress.org/karolmanijak/\">Karol Manijak</a> · <a href=\"https://profiles.wordpress.org/thekt12/\">Karthik Thayyil</a> · <a href=\"https://profiles.wordpress.org/zoonini/\">Kathryn P.</a> · <a href=\"https://profiles.wordpress.org/kamplugins/\">Kausar Al Mamun</a> · <a href=\"https://profiles.wordpress.org/kausaralm/\">Kausar Alam</a> · <a href=\"https://profiles.wordpress.org/ryelle/\">Kelly Choyce-Dwan</a> · <a href=\"https://profiles.wordpress.org/kenwins/\">kenwins</a> · <a href=\"https://profiles.wordpress.org/kevinb/\">Kevin Behrens</a> · <a href=\"https://profiles.wordpress.org/khoipro/\">Khoi Pro</a> · <a href=\"https://profiles.wordpress.org/khokansardar/\">Khokan Sardar</a> · <a href=\"https://profiles.wordpress.org/kjellr/\">Kjell Reigstad</a> · <a href=\"https://profiles.wordpress.org/knutsp/\">Knut Sparhell</a> · <a href=\"https://profiles.wordpress.org/koenschipper/\">koenschipper</a> · <a href=\"https://profiles.wordpress.org/xkon/\">Konstantinos Xenos</a> · <a href=\"https://profiles.wordpress.org/krishneup/\">Krishna Neupane</a> · <a href=\"https://profiles.wordpress.org/krunal265/\">Krunal Bhimajiyani</a> · <a href=\"https://profiles.wordpress.org/krupajnanda/\">Krupa Nanda</a> · <a href=\"https://profiles.wordpress.org/krupalpanchal/\">Krupal Panchal</a> · <a href=\"https://profiles.wordpress.org/kutsu/\">kutsu</a> · <a href=\"https://profiles.wordpress.org/kzeni/\">KZeni</a> · <a href=\"https://profiles.wordpress.org/leamcaleese/\">L&#233;a McAleese</a> · <a href=\"https://profiles.wordpress.org/lgadzhev/\">Lachezar Gadzhev</a> · <a href=\"https://profiles.wordpress.org/lanacodes/\">Lana Codes</a> · <a href=\"https://profiles.wordpress.org/laurelfulford/\">laurelfulford</a> · <a href=\"https://profiles.wordpress.org/laurlittle/\">Lauren Stein</a> · <a href=\"https://profiles.wordpress.org/wplmillet/\">Laurent MILLET</a> · <a href=\"https://profiles.wordpress.org/laurentmagnin/\">laurentmagnin</a> · <a href=\"https://profiles.wordpress.org/0mirka00/\">Lena Morita</a> · <a href=\"https://profiles.wordpress.org/leonnugraha/\">Leonardus Nugraha</a> · <a href=\"https://profiles.wordpress.org/lessbloat/\">lessbloat</a> · <a href=\"https://profiles.wordpress.org/levdbas/\">Levdbas</a> · <a href=\"https://profiles.wordpress.org/wplindavantol/\">Linda van Tol</a> · <a href=\"https://profiles.wordpress.org/rudlinkon/\">Linkon Miyan</a> · <a href=\"https://profiles.wordpress.org/lowlydev/\">lowlydev</a> · <a href=\"https://profiles.wordpress.org/lphoumpakka/\">lphk</a> · <a href=\"https://profiles.wordpress.org/gigitux/\">Luigi</a> · <a href=\"https://profiles.wordpress.org/luisherranz/\">luisherranz</a> · <a href=\"https://profiles.wordpress.org/lukecavanagh/\">Luke Cavanagh</a> · <a href=\"https://profiles.wordpress.org/madejackson/\">madejackson</a> · <a href=\"https://profiles.wordpress.org/madhudollu/\">Madhu Dollu</a> · <a href=\"https://profiles.wordpress.org/mrdollu/\">Madhu Dollu</a> · <a href=\"https://profiles.wordpress.org/onemaggie/\">Maggie Cabrera</a> · <a href=\"https://profiles.wordpress.org/mehdi01/\">Mahdi Hasan</a> · <a href=\"https://profiles.wordpress.org/mahendra0029/\">Mahendra Bishnoi</a> · <a href=\"https://profiles.wordpress.org/nadimcse/\">Mahmudul Haque Nadim</a> · <a href=\"https://profiles.wordpress.org/mai21/\">Mai</a> · <a href=\"https://profiles.wordpress.org/majaloncar/\">Maja Loncar</a> · <a href=\"https://profiles.wordpress.org/malae/\">Malae</a> · <a href=\"https://profiles.wordpress.org/malavvasita/\">Malav Vasita</a> · <a href=\"https://profiles.wordpress.org/manfcarlo/\">manfcarlo</a> · <a href=\"https://profiles.wordpress.org/maniu/\">maniu</a> · <a href=\"https://profiles.wordpress.org/mdxfr/\">Marc</a> · <a href=\"https://profiles.wordpress.org/fullofcaffeine/\">Marcelo de Moraes Serpa</a> · <a href=\"https://profiles.wordpress.org/marcguay/\">MarcGuay</a> · <a href=\"https://profiles.wordpress.org/mciampini/\">Marco Ciampini</a> · <a href=\"https://profiles.wordpress.org/marekdedic/\">Marek Dědič</a> · <a href=\"https://profiles.wordpress.org/margolisj/\">margolisj</a> · <a href=\"https://profiles.wordpress.org/marianne38/\">marianne38</a> · <a href=\"https://profiles.wordpress.org/tyxla/\">Marin Atanasov</a> · <a href=\"https://profiles.wordpress.org/marineevain/\">Marine EVAIN</a> · <a href=\"https://profiles.wordpress.org/santosguillamot/\">Mario Santos</a> · <a href=\"https://profiles.wordpress.org/clorith/\">Marius L. J.</a> · <a href=\"https://profiles.wordpress.org/markjaquith/\">Mark Jaquith</a> · <a href=\"https://profiles.wordpress.org/markparnell/\">Mark Parnell</a> · <a href=\"https://profiles.wordpress.org/markdoliner/\">markdoliner</a> · <a href=\"https://profiles.wordpress.org/markoheijnen/\">Marko Heijnen</a> · <a href=\"https://profiles.wordpress.org/markoserb/\">Marko Ivanovic</a> · <a href=\"https://profiles.wordpress.org/flootr/\">Markus</a> · <a href=\"https://profiles.wordpress.org/mkox/\">Markus Kosmal</a> · <a href=\"https://profiles.wordpress.org/martinkrcho/\">martin.krcho</a> · <a href=\"https://profiles.wordpress.org/marybaum/\">marybaum</a> · <a href=\"https://profiles.wordpress.org/masteradhoc/\">masteradhoc</a> · <a href=\"https://profiles.wordpress.org/mastrup/\">mastrup</a> · <a href=\"https://profiles.wordpress.org/mat-lipe/\">Mat Lipe</a> · <a href=\"https://profiles.wordpress.org/mathsgrinds/\">mathsgrinds</a> · <a href=\"https://profiles.wordpress.org/mmaattiiaass/\">Matias Benedetto</a> · <a href=\"https://profiles.wordpress.org/matveb/\">Matias Ventura</a> · <a href=\"https://profiles.wordpress.org/matmoe/\">matmoe</a> · <a href=\"https://profiles.wordpress.org/matt/\">Matt Mullenweg</a> · <a href=\"https://profiles.wordpress.org/mwtsn/\">Matt Watson</a> · <a href=\"https://profiles.wordpress.org/mattwiebe/\">Matt Wiebe</a> · <a href=\"https://profiles.wordpress.org/matt_fw/\">matt_fw</a> · <a href=\"https://profiles.wordpress.org/matteoenna/\">Matteo Enna</a> · <a href=\"https://profiles.wordpress.org/mboynes/\">Matthew Boynes</a> · <a href=\"https://profiles.wordpress.org/azouamauriac/\">Mauriac AZOUA</a> · <a href=\"https://profiles.wordpress.org/maurodf/\">maurodf</a> · <a href=\"https://profiles.wordpress.org/cadic/\">Max Lyuchin</a> · <a href=\"https://profiles.wordpress.org/maxcgparis/\">maxcgparis</a> · <a href=\"https://profiles.wordpress.org/maysi/\">maysi</a> · <a href=\"https://profiles.wordpress.org/mayur8991/\">Mayur Prajapati</a> · <a href=\"https://profiles.wordpress.org/mcalyster/\">McAlyster</a> · <a href=\"https://profiles.wordpress.org/mcliwanow/\">mcliwanow</a> · <a href=\"https://profiles.wordpress.org/mahamudur78/\">Md Mahamudur Rahaman</a> · <a href=\"https://profiles.wordpress.org/fencermonir/\">Md Monir Hossain</a> · <a href=\"https://profiles.wordpress.org/shuvo247/\">MD Shakibul Islam</a> · <a href=\"https://profiles.wordpress.org/megane9988/\">megane9988</a> · <a href=\"https://profiles.wordpress.org/meher/\">Meher Bala</a> · <a href=\"https://profiles.wordpress.org/melchoyce/\">Mel Choyce-Dwan</a> · <a href=\"https://profiles.wordpress.org/menakas/\">Menaka S.</a> · <a href=\"https://profiles.wordpress.org/mensmaximus/\">mensmaximus</a> · <a href=\"https://profiles.wordpress.org/mgol/\">mgol</a> · <a href=\"https://profiles.wordpress.org/mdawaffe/\">Michael Adams (mdawaffe)</a> · <a href=\"https://profiles.wordpress.org/mburridge/\">Michael Burridge</a> · <a href=\"https://profiles.wordpress.org/mikeday/\">Michael Day</a> · <a href=\"https://profiles.wordpress.org/michaelh/\">MichaelH</a> · <a href=\"https://profiles.wordpress.org/czapla/\">Michal Czaplinski</a> · <a href=\"https://profiles.wordpress.org/mcsf/\">Miguel Fonseca</a> · <a href=\"https://profiles.wordpress.org/mikeschinkel/\">Mike Schinkel</a> · <a href=\"https://profiles.wordpress.org/mikeschroder/\">Mike Schroder</a> · <a href=\"https://profiles.wordpress.org/mikecho/\">mikecho</a> · <a href=\"https://profiles.wordpress.org/mikeyzm/\">mikeyzm</a> · <a href=\"https://profiles.wordpress.org/mikinc860/\">Mikin Chauhan</a> · <a href=\"https://profiles.wordpress.org/milana_cap/\">Milana Cap</a> · <a href=\"https://profiles.wordpress.org/gonzomir/\">Milen Petrinski - Gonzo</a> · <a href=\"https://profiles.wordpress.org/studionashvegas/\">Mitch Canter</a> · <a href=\"https://profiles.wordpress.org/mitchellaustin/\">mitchellaustin</a> · <a href=\"https://profiles.wordpress.org/mitchoyoshitaka/\">mitcho (Michael Yoshitaka Erlewine)</a> · <a href=\"https://profiles.wordpress.org/moinrrahmed/\">Moe</a> · <a href=\"https://profiles.wordpress.org/batmoo/\">Mohammad Jangda</a> · <a href=\"https://profiles.wordpress.org/mohanrajp/\">Mohan Raj</a> · <a href=\"https://profiles.wordpress.org/patelmohip/\">Mohip Patel</a> · <a href=\"https://profiles.wordpress.org/mohiuddinomran/\">Mohiuddin Omran</a> · <a href=\"https://profiles.wordpress.org/boemedia/\">Monique Dubbelman</a> · <a href=\"https://profiles.wordpress.org/monzuralam/\">Monzur Alam</a> · <a href=\"https://profiles.wordpress.org/mor10/\">Morten Rand-Hendriksen</a> · <a href=\"https://profiles.wordpress.org/mrinal013/\">Mrinal Haque</a> · <a href=\"https://profiles.wordpress.org/mtxz/\">mtxz</a> · <a href=\"https://profiles.wordpress.org/thisisyeasin/\">Muhammad Yeasin</a> · <a href=\"https://profiles.wordpress.org/mujuonly/\">mujuonly</a> · <a href=\"https://profiles.wordpress.org/mukesh27/\">Mukesh Panchal</a> · <a href=\"https://profiles.wordpress.org/611shabnam/\">Mushrit Shabnam</a> · <a href=\"https://profiles.wordpress.org/naeemhaque/\">Naeem Haque</a> · <a href=\"https://profiles.wordpress.org/tushar284/\">Nahid Hasan</a> · <a href=\"https://profiles.wordpress.org/narthur/\">Narthur</a> · <a href=\"https://profiles.wordpress.org/nataliat2004/\">nataliat2004</a> · <a href=\"https://profiles.wordpress.org/nateallen/\">Nate Allen</a> · <a href=\"https://profiles.wordpress.org/nazgul/\">Nazgul</a> · <a href=\"https://profiles.wordpress.org/nazmul111/\">Nazmul Hosen</a> · <a href=\"https://profiles.wordpress.org/nazmulhudadev/\">Nazmul Huda</a> · <a href=\"https://profiles.wordpress.org/nendeb55/\">nendeb</a> · <a href=\"https://profiles.wordpress.org/neychok/\">Neycho Kalaydzhiev</a> · <a href=\"https://profiles.wordpress.org/eidolonnight/\">Nicholas Garofalo</a> · <a href=\"https://profiles.wordpress.org/ndiego/\">Nick Diego</a> · <a href=\"https://profiles.wordpress.org/nickpap/\">nickpap</a> · <a href=\"https://profiles.wordpress.org/nidhidhandhukiya/\">nidhidhandhukiya</a> · <a href=\"https://profiles.wordpress.org/nihar007/\">Nihar Ranjan Das</a> · <a href=\"https://profiles.wordpress.org/ntsekouras/\">Nik Tsekouras</a> · <a href=\"https://profiles.wordpress.org/nilovelez/\">Nilo Velez</a> · <a href=\"https://profiles.wordpress.org/dhrupo/\">Niluthpal Purkayastha</a> · <a href=\"https://profiles.wordpress.org/nithi22/\">Nithin John</a> · <a href=\"https://profiles.wordpress.org/nithins53/\">Nithin SreeRaj</a> · <a href=\"https://profiles.wordpress.org/njsamsatli/\">njsamsatli</a> · <a href=\"https://profiles.wordpress.org/nkeller15/\">nkeller15</a> · <a href=\"https://profiles.wordpress.org/noahtallen/\">Noah Allen</a> · <a href=\"https://profiles.wordpress.org/obliviousharmony/\">obliviousharmony</a> · <a href=\"https://profiles.wordpress.org/hideokamoto/\">Okamoto Hidetaka</a> · <a href=\"https://profiles.wordpress.org/oglekler/\">Olga Gleckler</a> · <a href=\"https://profiles.wordpress.org/olliejones/\">OllieJones</a> · <a href=\"https://profiles.wordpress.org/opr18/\">opr18</a> · <a href=\"https://profiles.wordpress.org/orestissam/\">Orestis Samaras</a> · <a href=\"https://profiles.wordpress.org/ov3rfly/\">Ov3rfly</a> · <a href=\"https://profiles.wordpress.org/owi/\">owi</a> · <a href=\"https://profiles.wordpress.org/paaljoachim/\">Paal Joachim Romdahl</a> · <a href=\"https://profiles.wordpress.org/pamprn/\">Pamela Ribeiro</a> · <a href=\"https://profiles.wordpress.org/paragoninitiativeenterprises/\">Paragon Initiative Enterprises</a> · <a href=\"https://profiles.wordpress.org/swissspidy/\">Pascal Birchler</a> · <a href=\"https://profiles.wordpress.org/pateljaymin/\">Patel Jaymin</a> · <a href=\"https://profiles.wordpress.org/patriciahillebrandt/\">patriciahillebrandt</a> · <a href=\"https://profiles.wordpress.org/pbiron/\">Paul Biron</a> · <a href=\"https://profiles.wordpress.org/paulkevan/\">Paul Kevan</a> · <a href=\"https://profiles.wordpress.org/pschrottky/\">Paul Von Schrottky</a> · <a href=\"https://profiles.wordpress.org/paulopmt1/\">Paulo Trentin</a> · <a href=\"https://profiles.wordpress.org/pavanpatil1/\">Pavan Patil</a> · <a href=\"https://profiles.wordpress.org/pedromendonca/\">Pedro Mendon&#231;a</a> · <a href=\"https://profiles.wordpress.org/westi/\">Peter Westwood</a> · <a href=\"https://profiles.wordpress.org/peterwilsoncc/\">Peter Wilson</a> · <a href=\"https://profiles.wordpress.org/walbo/\">Petter Walb&#248; Johnsg&#229;rd</a> · <a href=\"https://profiles.wordpress.org/tyrannous/\">Philipp Bammes</a> · <a href=\"https://profiles.wordpress.org/phillsav/\">Phill</a> · <a href=\"https://profiles.wordpress.org/strategio/\">Pierre Sylvestre</a> · <a href=\"https://profiles.wordpress.org/nekojonez/\">Pieterjan Deneys</a> · <a href=\"https://profiles.wordpress.org/boniu91/\">Piotrek Boniu</a> · <a href=\"https://profiles.wordpress.org/pitamdey/\">Pitam Dey</a> · <a href=\"https://profiles.wordpress.org/piyushtekwani/\">Piyush Tekwani</a> · <a href=\"https://profiles.wordpress.org/pkbhatt/\">pkbhatt</a> · <a href=\"https://profiles.wordpress.org/platonkristinin/\">Platon Kristinin</a> · <a href=\"https://profiles.wordpress.org/webtechpooja/\">Pooja Derashri</a> · <a href=\"https://profiles.wordpress.org/pooja1210/\">Pooja N Muchandikar</a> · <a href=\"https://profiles.wordpress.org/pouicpouic/\">pouicpouic</a> · <a href=\"https://profiles.wordpress.org/prashantbhivsane/\">Prashant</a> · <a href=\"https://profiles.wordpress.org/prashantvatsh/\">Prashant Singh</a> · <a href=\"https://profiles.wordpress.org/pravinparmar2404/\">Pravin Parmar</a> · <a href=\"https://profiles.wordpress.org/presskopp/\">Presskopp</a> · <a href=\"https://profiles.wordpress.org/prikari/\">Priyanka Adhikari</a> · <a href=\"https://profiles.wordpress.org/przemekhernik/\">Przemek Hernik</a> · <a href=\"https://profiles.wordpress.org/rachelbaker/\">Rachel Baker</a> · <a href=\"https://profiles.wordpress.org/bi0xid/\">Rafa Poveda</a> · <a href=\"https://profiles.wordpress.org/rfischmann/\">Rafael Fischmann</a> · <a href=\"https://profiles.wordpress.org/rajanpanchal2028/\">Rajan Panchal</a> · <a href=\"https://profiles.wordpress.org/rajinsharwar/\">Rajin Sharwar</a> · <a href=\"https://profiles.wordpress.org/rahmohn/\">Ramon Ahnert</a> · <a href=\"https://profiles.wordpress.org/ramonopoly/\">Ramon James</a> · <a href=\"https://profiles.wordpress.org/ratneshsonar/\">Ratnesh Sonar</a> · <a href=\"https://profiles.wordpress.org/rehanali/\">Rehan Ali</a> · <a href=\"https://profiles.wordpress.org/rembem/\">rembem</a> · <a href=\"https://profiles.wordpress.org/renyot/\">ren</a> · <a href=\"https://profiles.wordpress.org/youknowriad/\">Riad Benguella</a> · <a href=\"https://profiles.wordpress.org/rianrietveld/\">Rian Rietveld</a> · <a href=\"https://profiles.wordpress.org/richtabor/\">Rich Tabor</a> · <a href=\"https://profiles.wordpress.org/richards1052/\">richards1052</a> · <a href=\"https://profiles.wordpress.org/richiecarey/\">Richie Carey</a> · <a href=\"https://profiles.wordpress.org/rjasdfiii/\">rjasdfiii</a> · <a href=\"https://profiles.wordpress.org/rob1n/\">rob1n</a> · <a href=\"https://profiles.wordpress.org/noisysocks/\">Robert Anderson</a> · <a href=\"https://profiles.wordpress.org/sanchothefat/\">Robert O\'Rourke</a> · <a href=\"https://profiles.wordpress.org/robinwpdeveloper/\">Robin</a> · <a href=\"https://profiles.wordpress.org/ravanh/\">Rolf Allard van Hagen</a> · <a href=\"https://profiles.wordpress.org/ronakganatra/\">Ronak Ganatra</a> · <a href=\"https://profiles.wordpress.org/algorithmsunlocks/\">Ruman Ahmed</a> · <a href=\"https://profiles.wordpress.org/rutviksavsani/\">Rutvik Savsani</a> · <a href=\"https://profiles.wordpress.org/ryan/\">Ryan Boren</a> · <a href=\"https://profiles.wordpress.org/bookdude13/\">Ryan Fredlund</a> · <a href=\"https://profiles.wordpress.org/ryankienstra/\">Ryan Kienstra</a> · <a href=\"https://profiles.wordpress.org/rmccue/\">Ryan McCue</a> · <a href=\"https://profiles.wordpress.org/welcher/\">Ryan Welcher</a> · <a href=\"https://profiles.wordpress.org/sereedmedia/\">S&#233; Reed</a> · <a href=\"https://profiles.wordpress.org/sebastienserre/\">S&#233;bastien SERRE</a> · <a href=\"https://profiles.wordpress.org/sergiomdgomes/\">S&#233;rgio Gomes</a> · <a href=\"https://profiles.wordpress.org/suleymankenar/\">S&#252;leyman Kenar</a> · <a href=\"https://profiles.wordpress.org/andy786/\">Sahil B.</a> · <a href=\"https://profiles.wordpress.org/sajjad67/\">Sajjad Hossain Sagor</a> · <a href=\"https://profiles.wordpress.org/sakibmd/\">Sakib Mohammed</a> · <a href=\"https://profiles.wordpress.org/salvoaranzulla/\">salvoaranzulla</a> · <a href=\"https://profiles.wordpress.org/samful/\">Sam Fullalove</a> · <a href=\"https://profiles.wordpress.org/samiamnot/\">samiamnot</a> · <a href=\"https://profiles.wordpress.org/samnajian/\">SamNajian</a> · <a href=\"https://profiles.wordpress.org/otto42/\">Samuel Wood (Otto)</a> · <a href=\"https://profiles.wordpress.org/mikachan/\">Sarah Norris</a> · <a href=\"https://profiles.wordpress.org/sarequl/\">Sarequl Basar</a> · <a href=\"https://profiles.wordpress.org/saxonfletcher/\">Saxon Fletcher</a> · <a href=\"https://profiles.wordpress.org/coffee2code/\">Scott Reilly</a> · <a href=\"https://profiles.wordpress.org/wonderboymusic/\">Scott Taylor</a> · <a href=\"https://profiles.wordpress.org/scribu/\">scribu</a> · <a href=\"https://profiles.wordpress.org/sdavis2702/\">Sean Davis</a> · <a href=\"https://profiles.wordpress.org/sergeybiryukov/\">Sergey Biryukov</a> · <a href=\"https://profiles.wordpress.org/shailu25/\">Shail Mehta</a> · <a href=\"https://profiles.wordpress.org/sh4lin/\">Shalin Shah</a> · <a href=\"https://profiles.wordpress.org/enchiridion/\">Shannon Little</a> · <a href=\"https://profiles.wordpress.org/shiponkarmakar/\">Shipon Karmakar</a> · <a href=\"https://profiles.wordpress.org/shreyasikhar26/\">Shreyas Ikhar</a> · <a href=\"https://profiles.wordpress.org/shubhamsedani/\">shubhamsedani</a> · <a href=\"https://profiles.wordpress.org/shuvo586/\">shuvo586</a> · <a href=\"https://profiles.wordpress.org/shvv/\">shvv</a> · <a href=\"https://profiles.wordpress.org/shwetabathani2312/\">Shweta Bathani</a> · <a href=\"https://profiles.wordpress.org/siddhantwadhwani/\">Siddhant Wadhwani</a> · <a href=\"https://profiles.wordpress.org/rsiddharth/\">siddharth ravikumar</a> · <a href=\"https://profiles.wordpress.org/nomnom99/\">Siddharth Thevaril</a> · <a href=\"https://profiles.wordpress.org/10upsimon/\">Simon Dowdles</a> · <a href=\"https://profiles.wordpress.org/simonemanfre/\">Simone</a> · <a href=\"https://profiles.wordpress.org/siobhan/\">Siobhan</a> · <a href=\"https://profiles.wordpress.org/sirajummahdi/\">Sirajum Mahdi</a> · <a href=\"https://profiles.wordpress.org/sboerrigter/\">Sjoerd Boerrigter</a> · <a href=\"https://profiles.wordpress.org/sjoerdlinders/\">Sjoerd Linders</a> · <a href=\"https://profiles.wordpress.org/smit08/\">Smit Rathod</a> · <a href=\"https://profiles.wordpress.org/soean/\">Soren Wrede</a> · <a href=\"https://profiles.wordpress.org/enderandpeter/\">Spencer</a> · <a href=\"https://profiles.wordpress.org/sque/\">sque</a> · <a href=\"https://profiles.wordpress.org/srikanthmeenakshi/\">srikanthmeenakshi</a> · <a href=\"https://profiles.wordpress.org/sstoqnov/\">Stanimir Stoyanov</a> · <a href=\"https://profiles.wordpress.org/ryokuhi/\">Stefano Minoia</a> · <a href=\"https://profiles.wordpress.org/vanaf1979/\">Stephan Nijman</a> · <a href=\"https://profiles.wordpress.org/sabernhardt/\">Stephen Bernhardt</a> · <a href=\"https://profiles.wordpress.org/stevenlinx/\">Steven Lin</a> · <a href=\"https://profiles.wordpress.org/subrataemfluence/\">Subrata Sarkar</a> · <a href=\"https://profiles.wordpress.org/sudipatel007/\">Sudip Dadhaniya</a> · <a href=\"https://profiles.wordpress.org/sumitbagthariya16/\">Sumit Bagthariya</a> · <a href=\"https://profiles.wordpress.org/sumitsingh/\">Sumit Singh</a> · <a href=\"https://profiles.wordpress.org/sunyatasattva/\">sunyatasattva (a11n)</a> · <a href=\"https://profiles.wordpress.org/codemonksuvro/\">Suvro</a> · <a href=\"https://profiles.wordpress.org/suzettefranck/\">Suzette Franck</a> · <a href=\"https://profiles.wordpress.org/mt_suzette/\">Suzette Franck</a> · <a href=\"https://profiles.wordpress.org/syamraj24/\">syamraj24</a> · <a href=\"https://profiles.wordpress.org/cybr/\">Sybre Waaijer</a> · <a href=\"https://profiles.wordpress.org/nuhel/\">Syed Nuhel</a> · <a href=\"https://profiles.wordpress.org/synchro/\">Synchro</a> · <a href=\"https://profiles.wordpress.org/tacoverdo/\">Taco Verdonschot</a> · <a href=\"https://profiles.wordpress.org/tahmina1du/\">Tahmina Jahan</a> · <a href=\"https://profiles.wordpress.org/inc2734/\">Takashi Kitajima</a> · <a href=\"https://profiles.wordpress.org/takshil/\">Takshil Kunadia</a> · <a href=\"https://profiles.wordpress.org/karmatosed/\">Tammie Lister</a> · <a href=\"https://profiles.wordpress.org/tanner-m/\">Tanner Moushey</a> · <a href=\"https://profiles.wordpress.org/thakordarshil/\">Thakor Darshil</a> · <a href=\"https://profiles.wordpress.org/thomask/\">thomask</a> · <a href=\"https://profiles.wordpress.org/thunderdw/\">thunder rumbles</a> · <a href=\"https://profiles.wordpress.org/tijmensmit/\">Tijmen Smit</a> · <a href=\"https://profiles.wordpress.org/tillkruess/\">Till Kr&#252;ss</a> · <a href=\"https://profiles.wordpress.org/tb1909/\">Tim Brath&#228;rig</a> · <a href=\"https://profiles.wordpress.org/timothyblynjacobs/\">Timothy Jacobs</a> · <a href=\"https://profiles.wordpress.org/tmatsuur/\">tmatsuur</a> · <a href=\"https://profiles.wordpress.org/tobiasbg/\">TobiasBg</a> · <a href=\"https://profiles.wordpress.org/tobifjellner/\">tobifjellner (Tor-Bjorn Fjellner)</a> · <a href=\"https://profiles.wordpress.org/thomasdevisser/\">Tom de Visser</a> · <a href=\"https://profiles.wordpress.org/tjnowell/\">Tom J Nowell</a> · <a href=\"https://profiles.wordpress.org/shimotomoki/\">Tomoki Shimomura</a> · <a href=\"https://profiles.wordpress.org/skithund/\">Toni Viemer&#246;</a> · <a href=\"https://profiles.wordpress.org/hellofromtonya/\">Tonya Mork</a> · <a href=\"https://profiles.wordpress.org/r0uter/\">tonythomas01</a> · <a href=\"https://profiles.wordpress.org/toro_unit/\">Toro_Unit (Hiroshi Urabe)</a> · <a href=\"https://profiles.wordpress.org/zodiac1978/\">Torsten Landsiedel</a> · <a href=\"https://profiles.wordpress.org/itowhid06/\">Towhidul I Chowdhury</a> · <a href=\"https://profiles.wordpress.org/scep/\">Tryon</a> · <a href=\"https://profiles.wordpress.org/twstokes/\">twstokes</a> · <a href=\"https://profiles.wordpress.org/tyb/\">TyB</a> · <a href=\"https://profiles.wordpress.org/ugyensupport/\">Ugyen Dorji</a> · <a href=\"https://profiles.wordpress.org/umesh84/\">Umesh Gupta</a> · <a href=\"https://profiles.wordpress.org/umeshmcakadi/\">Umesh Patel</a> · <a href=\"https://profiles.wordpress.org/upadalavipul/\">Upadala Vipul</a> · <a href=\"https://profiles.wordpress.org/utsav72640/\">Utsav tilava</a> · <a href=\"https://profiles.wordpress.org/uxtremist/\">uxtremist</a> · <a href=\"https://profiles.wordpress.org/eboxnet/\">Vagelis</a> · <a href=\"https://profiles.wordpress.org/valterlorran/\">valterlorran</a> · <a href=\"https://profiles.wordpress.org/vasilism/\">Vasilis Manthos</a> · <a href=\"https://profiles.wordpress.org/victoranto/\">victoranto</a> · <a href=\"https://profiles.wordpress.org/szepeviktor/\">Viktor Sz&#233;pe</a> · <a href=\"https://profiles.wordpress.org/vivekawsm/\">vivekawsm</a> · <a href=\"https://profiles.wordpress.org/vladytimy/\">Vlad T</a> · <a href=\"https://profiles.wordpress.org/westonruter/\">Weston Ruter</a> · <a href=\"https://profiles.wordpress.org/whaze/\">whaze</a> · <a href=\"https://profiles.wordpress.org/skorasaurus/\">Will Skora</a> · <a href=\"https://profiles.wordpress.org/williampatton/\">williampatton</a> · <a href=\"https://profiles.wordpress.org/wlindley/\">wlindley</a> · <a href=\"https://profiles.wordpress.org/wojtekszkutnik/\">Wojtek Szkutnik</a> · <a href=\"https://profiles.wordpress.org/xerpa43/\">xerpa43</a> · <a href=\"https://profiles.wordpress.org/xmarcos/\">xmarcos</a> · <a href=\"https://profiles.wordpress.org/yaniiliev/\">Yani Iliev</a> · <a href=\"https://profiles.wordpress.org/fierevere/\">Yui</a> · <a href=\"https://profiles.wordpress.org/zdrobau/\">Zdrobau</a> · <a href=\"https://profiles.wordpress.org/zebaafiashama/\">Zeba Afia Shama</a> · <a href=\"https://profiles.wordpress.org/zebulan/\">Zebulan Stanphill</a> · <a href=\"https://profiles.wordpress.org/zenaulislam/\">Zenaul Islam</a> · <a href=\"https://profiles.wordpress.org/zieladam/\">zieladam</a> · <a href=\"https://profiles.wordpress.org/zunaid321/\">Zunaid Amin</a></p>\n\n\n\n<h3 class=\"wp-block-heading\">WordPress support forums</h3>\n\n\n\n<p>Many thanks to the community volunteers who contribute to the <a href=\"https://wordpress.org/support/\">support forums</a> by answering questions from WordPress users worldwide.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Get involved today</h3>\n\n\n\n<p>If contributing to WordPress appeals to you, learning more and getting involved is easy. Discover the teams that come together to <a href=\"https://make.wordpress.org/\">Make WordPress</a> and explore the product roadmap on the <a href=\"https://make.wordpress.org/core/\">core development blog</a>. You can also use this <a href=\"https://make.wordpress.org/contribute/\">interactive tool</a> to help you decide which team is right for you.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Looking toward the future</h2>\n\n\n\n<p>20 years ago this past May, <a href=\"https://wordpress.org/news/2003/05/wordpress-now-available/\">WordPress shipped the very first version, 0.7</a>. What started with a blog post from co-founder Matt Mullenweg and a subsequent comment by co-founder Mike Little eventually evolved into the world’s most popular web publishing platform.</p>\n\n\n\n<p>WordPress software continues to evolve and iterate based on the needs and desires of its robust and diverse user community. This release is the capstone of <a href=\"https://make.wordpress.org/core/2023/02/04/phase-2-finale/\">Phase 2</a> along the WordPress <a href=\"https://wordpress.org/about/roadmap/\">development roadmap</a>. As the community looks to the future, all efforts turn to <a href=\"https://make.wordpress.org/core/2023/06/05/wordpress-6-4-development-cycle/\">6.4</a> and, subsequently, the transition into <a href=\"https://make.wordpress.org/core/2023/03/24/phase-3-collaboration/\">Phase 3</a>, which is expected to introduce powerful collaboration tools to the website creation and management experience.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<h2 class=\"wp-block-heading\">6.3 Haiku</h2>\n\n\n\n<p>A capstone release<br>Ships tools for building great sites<br>Collaboration</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"15718\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:5;a:6:{s:4:\"data\";s:60:\"\n		\n		\n		\n		\n		\n				\n		\n		\n\n					\n										\n					\n		\n		\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:63:\"Concerns over the European Union’s Cyber Resilience Act (CRA)\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:94:\"https://wordpress.org/news/2023/08/concerns-over-the-european-unions-cyber-resilience-act-cra/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 02 Aug 2023 14:25:55 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:7:\"General\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:3:\"cra\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=15686\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:216:\"\"Our shared goal is to further bolster the security of digital products without compromising the values of freedom, democracy, and innovation.\" Learn more about the Cyber Resilience Act and its impact on open source.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:7:\"Josepha\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:4334:\"\n<p>As the world’s most popular open source content management system, WordPress acknowledges the European Union&#8217;s initiative to bolster the cybersecurity of digital hardware and software products with the <a href=\"https://www.european-cyber-resilience-act.com/\">Cyber Resilience Act (CRA)</a>. The Act’s effort to counter the increasing threat of cyberattacks and promote informed usage of digital products with increased security updates and transparency is commendable.&nbsp;</p>\n\n\n\n<blockquote class=\"wp-block-quote\">\n<p>While we wholly endorse the objectives of the CRA, we are apprehensive about the Act&#8217;s implications on open source software due to unclear terms and definitions. </p>\n</blockquote>\n\n\n\n<p>Specifically, the Act’s prohibition on &#8220;unfinished software&#8221; and ambiguous definition of &#8220;commercial activity&#8221; could inadvertently inhibit innovation and economic participation in the European digital landscape.</p>\n\n\n\n<p>Open source projects, like WordPress, often rely on continual updates and improvements—a process that may technically fall under the label of &#8220;unfinished.&#8221; Furthermore, the ambiguous definition of &#8220;commercial activity&#8221; could unintentionally encompass open source projects that are largely driven by communities and operate on a not-for-profit basis.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Our letter to the EU Commission</h2>\n\n\n\n<p>We have jointly authored an open letter addressing these concerns alongside fellow open source projects Drupal, Joomla!, and TYPO3<sup data-fn=\"eb28afbc-3487-447f-9af9-8b0418310a00\" class=\"fn\"><a href=\"#eb28afbc-3487-447f-9af9-8b0418310a00\" id=\"eb28afbc-3487-447f-9af9-8b0418310a00-link\">1</a></sup>. The letter emphasizes the significant contribution of Free and Open Source Software (FOSS) to the EU&#8217;s economy and how the proposed regulations might undermine these efforts. Our shared goal is to further bolster the security of digital products without compromising the values of freedom, democracy, and innovation inherent to both the open source community and the <a href=\"https://european-union.europa.eu/principles-countries-history/principles-and-values/aims-and-values_en\">EU’s Aims and Values</a>.</p>\n\n\n\n<p>The letter invites the EU Commission and interested parties to participate in a seminar in Brussels to discuss how we can align the objectives of the CRA with the realities and needs of the FOSS community. We are optimistic that, with mutual understanding and cooperation, we can achieve secure digital products without limiting the vital contributions of open source projects.</p>\n\n\n\n<div class=\"wp-block-buttons is-content-justification-center is-layout-flex wp-container-9 wp-block-buttons-is-layout-flex\">\n<div class=\"wp-block-button\"><a class=\"wp-block-button__link has-text-align-center wp-element-button\" href=\"https://wordpress.org/news/files/2023/08/Open_Letter_on_the_Significance_of_Free_and_Open_Source_Software_in_the_EU_s_Proposed_Cyber_Resilience_Act.pdf\" target=\"_blank\" rel=\"noreferrer noopener\">Read the letter</a></div>\n</div>\n\n\n\n<div style=\"height:50px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<div class=\"wp-block-group has-off-white-background-color has-background is-layout-flow wp-block-group-is-layout-flow\" style=\"padding-top:var(--wp--preset--spacing--50);padding-right:var(--wp--preset--spacing--50);padding-bottom:var(--wp--preset--spacing--50);padding-left:var(--wp--preset--spacing--50)\"><ol class=\"wp-block-footnotes\"><li id=\"eb28afbc-3487-447f-9af9-8b0418310a00\"><a href=\"https://www.drupal.org/\">Drupal</a>, <a href=\"https://www.joomla.org/\">Joomla!</a>, <a href=\"https://typo3.com/\">TYPO3</a>, and <a href=\"https://wordpress.org/\">WordPress</a> are the most popular FOSS content management systems on the web today. While all are based on the PHP programming language and distributed under the GPL open source license, each platform takes a different approach to website publishing. With strength in diversity, they form the Inter-CMS Working Group, promoting the values and benefits of free and open source software. <a href=\"#eb28afbc-3487-447f-9af9-8b0418310a00-link\"><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/21a9.png\" alt=\"↩\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" />︎</a></li></ol></div>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"15686\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:6;a:6:{s:4:\"data\";s:69:\"\n		\n		\n		\n		\n		\n				\n		\n		\n		\n		\n		\n\n					\n										\n					\n		\n		\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"WordPress 6.3 Release Candidate 3\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"https://wordpress.org/news/2023/08/wordpress-6-3-rc3/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 01 Aug 2023 16:55:21 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:5:{i:0;a:5:{s:4:\"data\";s:11:\"Development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:3:\"6.3\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:3;a:5:{s:4:\"data\";s:11:\"development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:4;a:5:{s:4:\"data\";s:8:\"releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=15615\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:226:\"WordPress 6.3 Release Candidate 3 is now available for download and testing.\n\nThe WordPress 6.3 release is scheduled for August 8, 2023—just one week away. Now is your last opportunity to test it before the general release. \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"Jonathan Pantani\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:6221:\"\n<p>WordPress 6.3 RC3 is ready for download and testing.</p>\n\n\n\n<p><strong>This version of the WordPress software is under development.</strong> <strong>Please do not install, run, or test this version on production or mission-critical websites.</strong> Instead, you should evaluate RC3 on a test server and site.&nbsp;</p>\n\n\n\n<p>The WordPress 6.3 release is scheduled for August 8, 2023—just one week away. Now is your last opportunity to test it before the general release.&nbsp;</p>\n\n\n\n<p>For a deeper look into this release, read this overview of the <a href=\"https://make.wordpress.org/core/6-3/\">6.3 release cycle</a>, check the <a href=\"https://make.wordpress.org/core/\">Make WordPress Core blog</a> for <a href=\"https://make.wordpress.org/core/tag/6-3/\">6.3-related posts</a>, review <a href=\"https://wordpress.org/news/2023/06/wordpress-6-3-beta-2/\">new features in WordPress 6.3</a>, or <a href=\"https://wordpress.org/news/2023/07/wordpress-6-3-live-product-demo-highlights-recording/\">watch a recorded demo</a>.&nbsp;</p>\n\n\n\n<h2 class=\"wp-block-heading\">What’s new since RC2</h2>\n\n\n\n<p>Since the RC2 release on July 25, 2023, there have been approximately 14 issues resolved in <a href=\"https://github.com/WordPress/gutenberg/commits/wp/6.3\">Github</a> and <a href=\"https://core.trac.wordpress.org/query?status=accepted&amp;status=closed&amp;changetime=07%2F25%2F2023..08%2F01%2F2023&amp;milestone=6.3&amp;col=id&amp;col=milestone&amp;col=owner&amp;col=type&amp;col=priority&amp;order=id\">Trac</a>. To prepare for 6.3 general availability, RC3 also addresses several <a href=\"https://github.com/WordPress/gutenberg/pull/53089\">bugs</a> and adds fixes for retrieving templates (<a href=\"https://github.com/WordPress/wordpress-develop/pull/4940\">#4940</a>) and resolving child theme issues (<a href=\"https://github.com/WordPress/gutenberg/issues/53138\">#53138</a>). Thank you for testing, WordPressers!</p>\n\n\n\n<p>Developers and extenders should review the <a href=\"https://make.wordpress.org/core/2023/07/18/wordpress-6-3-field-guide/\">comprehensive WordPress 6.3 Field Guide</a> for detailed technical notes regarding new features and improvements.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Ways to contribute</h2>\n\n\n\n<p>WordPress is open source software made possible by the community of people collaborating on and contributing to its development. The resources below outline a variety of ways you can help, regardless of your technical expertise.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Download RC3 for testing</h3>\n\n\n\n<p>You can test WordPress 6.3 RC3 in three ways:</p>\n\n\n\n<ul>\n<li><strong>Option 1:</strong> Install and activate the <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin (select the “Bleeding edge” channel and “Beta/RC Only” stream).</li>\n\n\n\n<li><strong>Option 2:</strong> Direct download the <a href=\"https://wordpress.org/wordpress-6.3-RC3.zip\">RC3 version (zip)</a>.</li>\n\n\n\n<li><strong>Option 3: </strong>Use the following WP-CLI command:<br><code>wp core update --version=6.3-RC3</code></li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\">Keep WordPress bug-free—help with testing</h3>\n\n\n\n<p>Testing for issues is a critical part of developing any software, and it’s a meaningful way for anyone to contribute—whether you have experience or not. While testing the upgrade process is essential, trying out new features is too.&nbsp;&nbsp;</p>\n\n\n\n<ul>\n<li>Encountered an issue? Please report it to the <a href=\"https://wordpress.org/support/forum/alphabeta/\">Alpha/Beta area</a> in the support forums. If you are comfortable writing a reproducible bug report, you can <a href=\"https://core.trac.wordpress.org/newticket\">file one on WordPress Trac</a>. You can also check your issue against a list of <a href=\"https://core.trac.wordpress.org/tickets/major\">known bugs</a>.</li>\n\n\n\n<li>New to testing? This <a href=\"https://make.wordpress.org/test/2023/06/27/help-test-wordpress-6-3/\">detailed guide</a> is a great place to start if you’ve never tested a beta/RC release.</li>\n\n\n\n<li>Want to know more about testing releases in general? Follow along with the <a href=\"https://make.wordpress.org/test/\">testing initiatives in Make Core</a> and join the <a href=\"https://wordpress.slack.com/messages/core-test/\">#core-test channel</a> in <a href=\"https://wordpress.slack.com/\">Making WordPress Slack</a>.</li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\">Search for vulnerabilities</h3>\n\n\n\n<p>The monetary reward for reporting new, unreleased security vulnerabilities is doubled between the Beta 1 release and the final release candidate (RC). Please follow responsible disclosure practices as detailed in the project’s security practices and policies outlined on the <a href=\"https://hackerone.com/wordpress\">HackerOne page</a> and in the <a href=\"https://wordpress.org/about/security/\">security white paper</a>.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Update your theme or plugin</h3>\n\n\n\n<p>Do you build themes or plugins? Your products play an integral role in extending the functionality and value of WordPress for users of all types worldwide.&nbsp;</p>\n\n\n\n<p>This is your final opportunity to test your latest versions against RC3. You will want to continue your testing and update the “<em>Tested up to”</em> version in your plugin’s readme file to 6.3.&nbsp;</p>\n\n\n\n<p>If you find compatibility problems, please post detailed information to the <a href=\"https://wordpress.org/support/forum/alphabeta/\">support forums</a>.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Help translate WordPress</h3>\n\n\n\n<p>Do you speak a language other than English? ¿Español? Français? Português? Русский? 日本? <a href=\"https://translate.wordpress.org/projects/wp/dev\">Help translate WordPress into more than 100 languages.</a>&nbsp;</p>\n\n\n\n<h2 class=\"wp-block-heading\">Release the haiku</h2>\n\n\n\n<p>Phase two, soon complete<br>A monumental release<br>Then onto six-four.</p>\n\n\n\n<p><em>Thank you to the contributors who collaborated on this post: <a href=\"https://profiles.wordpress.org/meher/\">@Meher</a>, <a href=\"https://profiles.wordpress.org/dansoschin/\">@DanSoschin</a>, and <a href=\"https://profiles.wordpress.org/jpantani/\">@jpantani</a></em></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"15615\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:7;a:6:{s:4:\"data\";s:72:\"\n		\n		\n		\n		\n		\n				\n		\n		\n		\n		\n		\n		\n\n					\n										\n					\n		\n		\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:36:\"People of WordPress: Ihtisham Zahoor\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:71:\"https://wordpress.org/news/2023/07/people-of-wordpress-ihtisham-zahoor/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 31 Jul 2023 20:22:31 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:6:{i:0;a:5:{s:4:\"data\";s:9:\"Community\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Features\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:7:\"General\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:3;a:5:{s:4:\"data\";s:10:\"Interviews\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:4;a:5:{s:4:\"data\";s:9:\"HeroPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:5;a:5:{s:4:\"data\";s:19:\"People of WordPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=15589\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:98:\"People of WordPress features Ihtisham Zahoor, an administrator turned web developer from Pakistan.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Abha Thakor\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:12176:\"\n<p>From administrator to web developer thanks to the supportive WordPress community. Through learning from other software users in Pakistan, Ihtisham Zahoor knew that his life would change. He moved cities and careers to make his life through open source.</p>\n\n\n\n<p><strong>The&nbsp;<em>People of WordPress</em>&nbsp;series shares inspiring stories of how people’s lives can change for the better through WordPress and its global community of contributors.</strong></p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" loading=\"lazy\" width=\"1024\" height=\"768\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/07/ihtisham-2.jpg?resize=1024%2C768&#038;ssl=1\" alt=\"Ihtisham Zahoor in the moutains.\" class=\"wp-image-15478\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2023/07/ihtisham-2.jpg?resize=1024%2C768&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2023/07/ihtisham-2.jpg?resize=300%2C225&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2023/07/ihtisham-2.jpg?resize=768%2C576&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2023/07/ihtisham-2.jpg?resize=1536%2C1152&amp;ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2023/07/ihtisham-2.jpg?w=1900&amp;ssl=1 1900w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<p>Ihtisham, from Haripur, a city in northern Pakistan, said: “The WordPress community made me a firm believer in the power of open source software. This is why I am an enthusiast and one who enjoys contributing back to the community via writing, speaking, and helping organize meetups.”</p>\n\n\n\n<p>When Ihtisham discovered WordPress, his fascination for working with computing grew. He knew he did not want to just work in administration his entire career.</p>\n\n\n\n<p>Ihitsham describes himself as an ‘introvert’ and therefore the idea of remote work appealed as he could still add value to others through technology. He was intrigued by the thought of the freedom to choose his work hours. However, without access to others who had already transformed their careers and lives through web development, he felt he ‘had no path to follow to turn my dream into a reality.’</p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Challenges become opportunities to learn when there is an active community&nbsp;&nbsp;</strong></h2>\n\n\n\n<figure class=\"wp-block-image size-full\"><img decoding=\"async\" loading=\"lazy\" width=\"675\" height=\"900\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/07/ihtisham-4.jpg?resize=675%2C900&#038;ssl=1\" alt=\"Ihtisham Zahoor wearing a sweatshirt with the London tube sign \'Mind the Gap\'.\" class=\"wp-image-15480\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2023/07/ihtisham-4.jpg?w=675&amp;ssl=1 675w, https://i0.wp.com/wordpress.org/news/files/2023/07/ihtisham-4.jpg?resize=225%2C300&amp;ssl=1 225w\" sizes=\"(max-width: 675px) 100vw, 675px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<p>Lacking any kind of informed support network to advise or guide him, Ihtisham devoted time to online research to find the next steps he could take. Looking back, he believes that for those who are not in a network with others with similar interests, it can be hard to keep learning and experimenting with new things. Isolation can be a barrier to working in web development.&nbsp;&nbsp;</p>\n\n\n\n<p>He said: “I think it is not easy to stay motivated when there aren’t immediate rewards for the hard work we do. Sometimes, weeks would go by when my only focus would be to stay motivated rather than give up.”</p>\n\n\n\n<p>After another two years of combining learning and work, Ihtisham took up using WordPress as a full-time career. He moved to the capital of Pakistan, Islamabad. It was not easy at first. He recalls: “After many failed attempts at getting hired and desperate moments, I finally received an offer from a digital agency as a web developer focused on the WordPress platform.”</p>\n\n\n\n<p>He added: “Moving to work with a bigger agency was one of the best decisions of my life as it helped me with my professional growth by becoming familiar with the whole WordPress ecosystem in a supportive environment. I was valued for my opinions in the web projects in which I was involved. I was also appreciated and encouraged for the open source work I did for the company.” He summarized his enthusiasm for WordPress like this: “It is really interesting figuring out what is happening in the backends. I like problem-solving and finding solutions which you can do with WordPress.”</p>\n\n\n\n<p>During the Covid-19 pandemic, Ihtisham moved to join a start-up which provides web development services to international clients. He works as a developer and has the opportunity to learn more about client communication and project management. “WordPress has opened up so many opportunities for me. It has been an exciting journey for me with lots of learning every day,” he said. In particular, he has discovered an interest in APIs and regularly uses his spare time to follow tickets in the hope of one day contributing even more to topics.</p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Give back through WordPress community</strong></h2>\n\n\n\n<figure class=\"wp-block-image size-full\"><img decoding=\"async\" loading=\"lazy\" width=\"800\" height=\"599\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/07/ihtisham-1.jpeg?resize=800%2C599&#038;ssl=1\" alt=\"Ihtisham Zahoor speaking at a meetup.\" class=\"wp-image-15477\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2023/07/ihtisham-1.jpeg?w=800&amp;ssl=1 800w, https://i0.wp.com/wordpress.org/news/files/2023/07/ihtisham-1.jpeg?resize=300%2C225&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2023/07/ihtisham-1.jpeg?resize=768%2C575&amp;ssl=1 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<p>It was not just software that made a difference in Ihtisham’s life. Joining a welcoming and sharing community was transforming for him. Recalling those early days of isolation, he values the WordPress community and is wholly committed to the power of open-source software. He now enjoys writing, speaking, and organizing meetups to give back to the community. He has been involved in developing plugins and themes for the platform, which he describes as a ‘humbling’ experience. He is fond of <a href=\"https://islamabad.wordcamp.org/\">WordCamp Islamabad</a> and in 2023 is on the organizing team to help bring both WordPress and its community to others in Pakistan.</p>\n\n\n\n<p>“My first experience,” he said, “was that everyone was so friendly and open to sharing what they have learned, even though they were all busy working. This really had an impact on me. It really helped me and gave me the confidence that I could work with WordPress…. It was a real step forward for me joining this community.” </p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" loading=\"lazy\" width=\"1024\" height=\"512\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/07/ihtisham-WC-Karachi.jpg?resize=1024%2C512&#038;ssl=1\" alt=\"Ihtisham visited WordCamp Karachi.\" class=\"wp-image-15482\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2023/07/ihtisham-WC-Karachi.jpg?resize=1024%2C512&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2023/07/ihtisham-WC-Karachi.jpg?resize=300%2C150&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2023/07/ihtisham-WC-Karachi.jpg?resize=768%2C384&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2023/07/ihtisham-WC-Karachi.jpg?w=1200&amp;ssl=1 1200w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<p>A particular meeting in 2018 led to new friendships through the WordPress community. Ihtisham was on a train to Karachi for the first ever Pakistani WordCamp in 2018 and met a group of fellow attendees he now regards as close friends. What impressed him most about the camp was that although he met many people with considerable expertise, they also had a generosity of spirit and humbleness in their willingness to share this knowledge. Now, with this group of friends he is fulfilling another dream of traveling widely across the country. He says these things and other ‘side benefits’ have been made possible by the WordPress community, and for that, he is &#8216;forever grateful&#8217;.<br><br>Ihtisham particularly wanted to share his story through this People of WordPress article to encourage those starting with little or no support to remain persistent. He knows from experience breaking into the tech world can be hard, especially when you may be switching from doing something else and have no ‘track record’ to offer. </p>\n\n\n\n<p>He feels he is a living example of how perseverance can lead to success. He offers these words to anyone thinking of making a move into development using the WordPress platform: “I attribute my success (financial and mental well-being) to the open-source nature of WordPress and its amazing community. It would not be possible to learn and use the plethora of free tools WordPress provides if it weren’t an open-source platform. It is for that reason I feel obligated to contribute back to this platform to the best of my abilities.” To those who are finding getting going difficult, as he did, he adds: “Get yourself a clear learning path and just dive in doing WordPress, and things will get better for you over time as they were for me, I promise. Good Luck!”</p>\n\n\n\n<h2 class=\"wp-block-heading\">Share the stories</h2>\n\n\n\n<p>Help share these stories of open source contributors and continue to grow the community.&nbsp;Meet more WordPressers in the <a href=\"https://wordpress.org/news/category/newsletter/interviews/\">People of WordPress series</a>.</p>\n\n\n\n<p>To help you discover more about how to use the WordPress software, there is a free resource from the community, <a href=\"https://learn.wordpress.org/\">Learn.WordPress.org</a></p>\n\n\n\n<h2 class=\"wp-block-heading\">Contributors</h2>\n\n\n\n<p>Thanks to Ihtisham Zahoor (<a href=\"https://profiles.wordpress.org/shaampk1/\">@shaampk1</a>) for sharing about his adventures in WordPress.</p>\n\n\n\n<p>Thank you to Abha Thakor (<a href=\"//profiles.wordpress.org/webcommsat/\">@webcommsat</a>), Nalini Thakor (<a href=\"//profiles.wordpress.org/nalininonstopnewsuk/\">@nalininonstopnewsuk</a>), and Meher Bala (<a href=\"//profiles.wordpress.org/meher/\">@meher</a>) for interviews, the feature and collaborating on images. To Chloe Bringmann (<a href=\"//profiles.wordpress.org/cbringmann/\">@cbringmann</a>), Mark Smallman (<a href=\"//profiles.wordpress.org/marks99/\">@marks99</a>), and Mary Baum (<a href=\"//profiles.wordpress.org/marybaum/\">@marybaum</a>) for reviews. Thanks to the late Surendra Thakor (<a href=\"//profiles.wordpress.org/sthakor/\">@sthakor</a>), Maja Loncar (<a href=\"//profiles.wordpress.org/majaloncar/\">@majaloncar</a>), Maedah Bahtool (<a href=\"//profiles.wordpress.org/maedahbatool/\">@maedahbatool</a>) and other members of the Marketing and Polyglots Team for their contributions.</p>\n\n\n\n<p>The People of WordPress series thanks Josepha Haden (<a href=\"//profiles.wordpress.org/chanthaboune/\">@chanthaboune</a>) and Topher DeRosia (<a href=\"//profiles.wordpress.org/topher1kenobe/\">@topher1kenobe</a>) for their support.</p>\n\n\n\n<div class=\"wp-block-media-text is-stacked-on-mobile is-vertically-aligned-center\" style=\"grid-template-columns:29% auto\"><figure class=\"wp-block-media-text__media\"><img decoding=\"async\" loading=\"lazy\" width=\"180\" height=\"135\" src=\"https://i0.wp.com/wordpress.org/news/files/2020/03/heropress_logo_180.png?resize=180%2C135&#038;ssl=1\" alt=\"HeroPress logo\" class=\"wp-image-8409 size-full\" data-recalc-dims=\"1\" /></figure><div class=\"wp-block-media-text__content\">\n<p class=\"has-small-font-size\"><em>This People of WordPress feature is inspired by an essay originally published on </em><a href=\"https://heropress.com/\"><em>HeroPress.com</em></a><em>, a community initiative created by Topher DeRosia. It highlights people in the WordPress community who have overcome barriers and whose stories might otherwise go unheard. </em>#HeroPress </p>\n</div></div>\n\n\n\n<p></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"15589\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:8;a:6:{s:4:\"data\";s:63:\"\n		\n		\n		\n		\n		\n				\n		\n		\n		\n\n					\n										\n					\n		\n		\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:49:\"Synced Patterns: The Evolution of Reusable Blocks\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:84:\"https://wordpress.org/news/2023/07/synced-patterns-the-evolution-of-reusable-blocks/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 27 Jul 2023 14:45:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:3:{i:0;a:5:{s:4:\"data\";s:6:\"Design\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:11:\"Development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:8:\"Features\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=15541\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:369:\"Synced patterns are replacing Reusable blocks, offering a unified creation experience for new pattern functionality coming to WordPress 6.3. Patterns, first introduced in WordPress 5.5, are a collection of blocks that make it simple to add complex layouts and designs to any WordPress site without starting from scratch. With WordPress 6.3, set to be released [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"annezazu\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:6153:\"\n<p>Synced patterns are replacing Reusable blocks, offering a unified creation experience for new pattern functionality coming to WordPress 6.3. Patterns, first introduced in WordPress 5.5, are a collection of blocks that make it simple to add complex layouts and designs to any WordPress site without starting from scratch. With WordPress 6.3, set to be released on August 8th, you will be able to arrange blocks in unlimited ways and save them as patterns for use throughout your site, directly within the editing experience. You can also specify whether to sync your patterns, so that one change applies to all parts of your site, or to keep them unsynced, so you can customize each instance.</p>\n\n\n\n<figure class=\"wp-block-embed is-type-video is-provider-youtube wp-block-embed-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio\"><div class=\"wp-block-embed__wrapper\">\n<iframe loading=\"lazy\" class=\"youtube-player\" width=\"600\" height=\"338\" src=\"https://www.youtube.com/embed/plZIF3jrU7E?version=3&#038;rel=1&#038;showsearch=0&#038;showinfo=1&#038;iv_load_policy=1&#038;fs=1&#038;hl=en-US&#038;autohide=2&#038;wmode=transparent\" allowfullscreen=\"true\" style=\"border:0;\" sandbox=\"allow-scripts allow-same-origin allow-popups allow-presentation\"></iframe>\n</div></figure>\n\n\n\n<h2 class=\"wp-block-heading\">Create your own patterns</h2>\n\n\n\n<p>The ability to create your own patterns, on top of using the ones bundled into each WordPress release, opens up a world of possibilities. Need to repeat the same contact information across your site and keep it up to date? Create a synced pattern with all the details, and say goodbye to repeating yourself, with the ability to quickly insert the synced pattern wherever you need it. If you find yourself creating various banners for your site and want them to have the same layout with unique content, creating an unsynced pattern speeds up your workflow and ensures a level of consistency in approach. While themes and plugins have been able to offer patterns to users and <a href=\"https://developer.wordpress.org/block-editor/how-to-guides/curating-the-editor-experience/#utilizing-patterns\">curate the experience</a>, this update allows agencies and site builders to do the same for their clients, directly in the site building process.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Dig into the details</h2>\n\n\n\n<p>Any previously made Reusable blocks will continue to function as they do now, just under the new Synced pattern name. To help adjust to these changes, a few contextual notices will be placed throughout the interface. Specifically, the menu item in the creation flow will show as “Create pattern/reusable block” until the prompt describing the switch is dismissed in one of the various locations, including the naming and syncing modal:&nbsp;</p>\n\n\n\n<figure class=\"wp-block-embed is-type-video is-provider-youtube wp-block-embed-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio\"><div class=\"wp-block-embed__wrapper\">\n<iframe loading=\"lazy\" class=\"youtube-player\" width=\"600\" height=\"338\" src=\"https://www.youtube.com/embed/fbrhammtn3Y?version=3&#038;rel=1&#038;showsearch=0&#038;showinfo=1&#038;iv_load_policy=1&#038;fs=1&#038;hl=en-US&#038;autohide=2&#038;wmode=transparent\" allowfullscreen=\"true\" style=\"border:0;\" sandbox=\"allow-scripts allow-same-origin allow-popups allow-presentation\"></iframe>\n</div></figure>\n\n\n\n<p>For folks using block themes, all patterns will be listed alongside template parts in the Site Editor &gt; Patterns section, where you can enter a focused editing mode to make changes. For Classic themes, the prior reusable block management page will now house patterns in a list, similar to the Posts &gt; All Posts view.</p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" loading=\"lazy\" width=\"1024\" height=\"590\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/07/Site-Editor-_-All-Patterns-View.png?resize=1024%2C590&#038;ssl=1\" alt=\"Patterns section of the WordPress Site Editor with My Patterns selected\" class=\"wp-image-15569\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2023/07/Site-Editor-_-All-Patterns-View.png?resize=1024%2C590&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2023/07/Site-Editor-_-All-Patterns-View.png?resize=300%2C173&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2023/07/Site-Editor-_-All-Patterns-View.png?resize=768%2C443&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2023/07/Site-Editor-_-All-Patterns-View.png?resize=1536%2C885&amp;ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2023/07/Site-Editor-_-All-Patterns-View.png?w=2048&amp;ssl=1 2048w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<p>For a complete overview of patterns on your site, all patterns provided by themes and plugins will be shown in this section but without the option to edit directly.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Go further</h2>\n\n\n\n<p>With the ability to create your own patterns baked into the creation experience, remember that you can copy the patterns available in the <a href=\"https://wordpress.org/patterns/\">Pattern Directory</a> and <a href=\"https://wordpress.org/patterns/about/\">contribute back</a>, an excellent way to democratize design for every WordPress user and the web.</p>\n\n\n\n<p><em>For more exciting features coming to patterns in WordPress 6.3, </em><a href=\"https://make.wordpress.org/core/2023/07/13/core-editor-improvement-advancing-the-power-of-patterns/\"><em>read on in the Advancing the Power of Patterns post</em></a><em>. Thank you to the contributors who collaborated on this post: </em><a href=\"https://profiles.wordpress.org/cbringmann/\"><em>Chloé Bringmann</em></a><em>, </em><a href=\"https://profiles.wordpress.org/jpantani/\"><em>Jonathan Pantani</em></a><em>, </em><a href=\"https://profiles.wordpress.org/chanthaboune/\"><em>Josepha</em></a><em>, </em><a href=\"https://profiles.wordpress.org/kristastevens/\"><em>Krista Stevens</em></a><em>, </em><a href=\"https://profiles.wordpress.org/eidolonnight/\"><em>Nicholas Garofalo</em></a><em>, <a href=\"https://profiles.wordpress.org/provenself/\">Peter Rubin</a></em>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"15541\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:9;a:6:{s:4:\"data\";s:69:\"\n		\n		\n		\n		\n		\n				\n		\n		\n		\n		\n		\n\n					\n										\n					\n		\n		\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"WordPress 6.3 Release Candidate 2\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:69:\"https://wordpress.org/news/2023/07/wordpress-6-3-release-candidate-2/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 25 Jul 2023 16:43:13 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:5:{i:0;a:5:{s:4:\"data\";s:11:\"Development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:3:\"6.3\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:3;a:5:{s:4:\"data\";s:11:\"development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:4;a:5:{s:4:\"data\";s:8:\"releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=15460\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:246:\"WordPress 6.3 RC2 is ready for download and testing. Reaching this part of the release cycle is a key milestone. While release candidates are considered ready for final release, additional testing and use by the community can only make it better.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:10:\"Meher Bala\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:7642:\"\n<p>WordPress 6.3 RC2 is ready for download and testing.</p>\n\n\n\n<p><strong>This version of the WordPress software is under development.</strong> <strong>Please do not install, or run, or test this version on production or mission-critical websites.</strong> Instead, you should evaluate RC2 on a test server and site.&nbsp;</p>\n\n\n\n<p>While release candidates are considered ready for final release, additional testing and use by the community can only make it better.</p>\n\n\n\n<p>WordPress 6.3 is scheduled for release on August 8, 2023 – just two weeks from today.</p>\n\n\n\n<p>Get an overview of the <a href=\"https://make.wordpress.org/core/6-3/\">6.3 release cycle</a>, check the <a href=\"https://make.wordpress.org/core/\">Make WordPress Core blog</a> for <a href=\"https://make.wordpress.org/core/tag/6-3/\">6.3-related posts</a>, review <a href=\"https://wordpress.org/news/2023/06/wordpress-6-3-beta-2/\">new features in WordPress 6.3</a>, or <a href=\"https://wordpress.org/news/2023/07/wordpress-6-3-live-product-demo-highlights-recording/\">watch a recorded demo</a>.</p>\n\n\n\n<p>Developers and extenders should review the <a href=\"https://make.wordpress.org/core/2023/07/18/wordpress-6-3-field-guide/\">comprehensive WordPress 6.3 Field Guide</a> for detailed technical notes regarding new features and improvements.&nbsp;&nbsp;</p>\n\n\n\n<h2 class=\"wp-block-heading\">RC2 Highlights</h2>\n\n\n\n<p>Since the RC1 release on July 18, 2023, there have been approximately 15 issues resolved in <a href=\"https://github.com/WordPress/gutenberg/commits/wp/6.3\" data-type=\"link\" data-id=\"https://github.com/WordPress/gutenberg/commits/wp/6.3\">Editor</a> and <a href=\"https://core.trac.wordpress.org/query?status=accepted&amp;status=closed&amp;changetime=07%2F18%2F2023..07%2F25%2F2023&amp;milestone=6.3&amp;col=id&amp;col=milestone&amp;col=owner&amp;col=type&amp;col=priority&amp;order=id\">Trac</a>.</p>\n\n\n\n<p>Notable updates for this release include:</p>\n\n\n\n<ul>\n<li>Footnotes will be reverted or restored with post revisions (<a href=\"https://github.com/WordPress/gutenberg/pull/52686\">#52686</a>).</li>\n\n\n\n<li>Distraction free adds a missing command in the site editor (<a href=\"https://github.com/WordPress/gutenberg/pull/52868\">#52868</a>).</li>\n\n\n\n<li>Global styles revisions will display text if no revisions are found (<a href=\"https://github.com/WordPress/gutenberg/pull/52865\">#52865</a>).</li>\n\n\n\n<li>The About Page has been completed (<a href=\"https://core.trac.wordpress.org/ticket/58067\">#58067</a>).</li>\n\n\n\n<li>The About Page now includes a “Get Involved” section (<a href=\"https://core.trac.wordpress.org/ticket/23348\">#23348</a>).</li>\n\n\n\n<li>The dark mode option has been restored in the block editor iframe for Twenty Twenty-One (<a href=\"https://core.trac.wordpress.org/ticket/58835\">#58835</a>).</li>\n\n\n\n<li>Max height value was fixed in the image scaling in the Edit Media screen (<a href=\"https://core.trac.wordpress.org/ticket/50523\">#50523</a>).</li>\n\n\n\n<li>Additionally, some issues regarding internationalization were addressed (<a rel=\"noreferrer noopener\" href=\"https://core.trac.wordpress.org/ticket/58879\" target=\"_blank\">#58879</a>, <a rel=\"noreferrer noopener\" href=\"https://core.trac.wordpress.org/ticket/58067\" target=\"_blank\">#58067</a> and <a rel=\"noreferrer noopener\" href=\"https://core.trac.wordpress.org/ticket/58864\" target=\"_blank\">#58864</a>).</li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\">Test features in WordPress 6.3</h2>\n\n\n\n<p>Testing for issues is a critical part of developing any software, and it’s a meaningful way for anyone to contribute—whether you have experience or not. While testing the upgrade process is essential, trying out new features is too.&nbsp;</p>\n\n\n\n<ul>\n<li>Encountered an issue? Please report it to the <a href=\"https://wordpress.org/support/forum/alphabeta/\">Alpha/Beta area</a> in the support forums. If you are comfortable writing a reproducible bug report, you can <a href=\"https://core.trac.wordpress.org/newticket\">file one on WordPress Trac</a>. You can also check your issue against a list of <a href=\"https://core.trac.wordpress.org/tickets/major\">known bugs</a>.</li>\n\n\n\n<li>New to testing? This <a href=\"https://make.wordpress.org/test/2023/06/27/help-test-wordpress-6-3/\">detailed guide</a> is a great place to start if you’ve never tested a beta/RC release.</li>\n\n\n\n<li>Want to know more about testing releases in general? Follow along with the <a href=\"https://make.wordpress.org/test/\">testing initiatives in Make Core</a> and join the <a href=\"https://wordpress.slack.com/messages/core-test/\">#core-test channel</a> in <a href=\"https://wordpress.slack.com/\">Making WordPress Slack</a>.</li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\">Vulnerability bounty doubles during the Beta/RC phases</h2>\n\n\n\n<p>The monetary reward for reporting new, unreleased security vulnerabilities is doubled between the Beta 1 release and the final release candidate (RC). Please follow responsible disclosure practices as detailed in the project’s security practices and policies outlined on the <a href=\"https://hackerone.com/wordpress\">HackerOne page</a> and in the <a href=\"https://wordpress.org/about/security/\">security white paper</a>.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Get WordPress 6.3 RC2</h2>\n\n\n\n<p>You can test WordPress 6.3 RC2 in three ways:</p>\n\n\n\n<ul>\n<li><strong>Option 1:</strong> Install and activate the <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin (select the “Bleeding edge” channel and “Beta/RC Only” stream).</li>\n\n\n\n<li><strong>Option 2: </strong>Direct download the <a href=\"https://wordpress.org/wordpress-6.3-RC2.zip\">RC2 version (zip)</a>.</li>\n\n\n\n<li><strong>Option 3:</strong> Use the following WP-CLI command:<br><code>wp core update --version=6.3-RC2</code></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\">Thanks to WordPress plugin and theme developers</h2>\n\n\n\n<p>Do you build plugins and themes? Your products play an integral role in extending the functionality and value of WordPress for users of all types worldwide.&nbsp;</p>\n\n\n\n<p>Hopefully, you have already tested your themes and plugins with WordPress 6.3 betas by now. With RC2, you will want to continue your testing and update the “<em>Tested up to”</em> version in your plugin’s readme file to 6.3.&nbsp;</p>\n\n\n\n<p>If you find compatibility problems, please post detailed information to the <a href=\"https://wordpress.org/support/forum/alphabeta/\">support forums</a>.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Help translate WordPress</h2>\n\n\n\n<p>Do you speak a language other than English? ¿Español? Français? Português? Русский? 日本? <a href=\"https://translate.wordpress.org/projects/wp/dev\">Help translate WordPress into more than 100 languages.</a></p>\n\n\n\n<h2 class=\"wp-block-heading\">Haiku for RC2</h2>\n\n\n\n<p>Time is nearly here<br>WordPress shines thanks to you all<br>Let’s get testing, dear</p>\n\n\n\n<p><em>Thank you to the contributors who collaborated on this post: <a href=\"https://profiles.wordpress.org/priethor/\" data-type=\"link\" data-id=\"https://profiles.wordpress.org/priethor/\">@Priethor</a></em>,<em> <a href=\"https://profiles.wordpress.org/audrasjb/\" data-type=\"link\" data-id=\"https://profiles.wordpress.org/audrasjb/\">@AudrasJb</a>, <a href=\"https://profiles.wordpress.org/davidbaumwald/\" data-type=\"link\" data-id=\"https://profiles.wordpress.org/davidbaumwald/\">@DavidBaumwald</a>, <a href=\"https://profiles.wordpress.org/dansoschin/\">@DanSoschin</a>, <a href=\"https://profiles.wordpress.org/jpantani/\">@JPantani</a></em> and <em><a href=\"https://profiles.wordpress.org/meher/\">@Meher</a></em>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"15460\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}s:27:\"http://www.w3.org/2005/Atom\";a:1:{s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:4:\"href\";s:32:\"https://wordpress.org/news/feed/\";s:3:\"rel\";s:4:\"self\";s:4:\"type\";s:19:\"application/rss+xml\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:44:\"http://purl.org/rss/1.0/modules/syndication/\";a:2:{s:12:\"updatePeriod\";a:1:{i:0;a:5:{s:4:\"data\";s:9:\"\n	hourly	\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:15:\"updateFrequency\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"\n	1	\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:4:\"site\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"14607090\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}}}}}}s:4:\"type\";i:128;s:7:\"headers\";O:48:\"WpOrg\\Requests\\Utility\\CaseInsensitiveDictionary\":1:{s:7:\"\0*\0data\";a:11:{s:6:\"server\";s:5:\"nginx\";s:4:\"date\";s:29:\"Thu, 07 Sep 2023 04:43:32 GMT\";s:12:\"content-type\";s:34:\"application/rss+xml; charset=UTF-8\";s:4:\"vary\";s:15:\"Accept-Encoding\";s:25:\"strict-transport-security\";s:12:\"max-age=3600\";s:6:\"x-olaf\";s:3:\"⛄\";s:13:\"last-modified\";s:29:\"Mon, 04 Sep 2023 21:02:35 GMT\";s:4:\"link\";s:63:\"<https://wordpress.org/news/wp-json/>; rel=\"https://api.w.org/\"\";s:15:\"x-frame-options\";s:10:\"SAMEORIGIN\";s:16:\"content-encoding\";s:2:\"br\";s:4:\"x-nc\";s:9:\"HIT ord 3\";}}s:5:\"build\";s:14:\"20230905061924\";}','no'),(299,'_transient_timeout_feed_mod_9bbd59226dc36b9b26cd43f15694c5c3','1694105013','no'),(300,'_transient_feed_mod_9bbd59226dc36b9b26cd43f15694c5c3','1694061813','no'),(301,'_transient_timeout_feed_d117b5738fbd35bd8c0391cda1f2b5d9','1694105014','no'),(302,'_transient_feed_d117b5738fbd35bd8c0391cda1f2b5d9','a:4:{s:5:\"child\";a:1:{s:0:\"\";a:1:{s:3:\"rss\";a:1:{i:0;a:6:{s:4:\"data\";s:3:\"\n\n\n\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:7:\"version\";s:3:\"2.0\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:1:{s:7:\"channel\";a:1:{i:0;a:6:{s:4:\"data\";s:61:\"\n	\n	\n	\n	\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"WordPress Planet\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://planet.wordpress.org/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"language\";a:1:{i:0;a:5:{s:4:\"data\";s:2:\"en\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:47:\"WordPress Planet - http://planet.wordpress.org/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"item\";a:50:{i:0;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:44:\"WPTavern: GoDaddy Retires Media Temple Brand\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=148575\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:55:\"https://wptavern.com/godaddy-retires-media-temple-brand\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4655:\"<p>Media Temple (MT) is closing its doors after 24 years in the hosting industry, with the brand now retired and customers fully migrated to GoDaddy. In 2013, GoDaddy acquired MT &#8220;to win the hearts and minds of developers,&#8221; as then-CEO Blake Irving told <a href=\"https://venturebeat.com/business/godaddy-ceo-we-bought-media-temple-to-win-the-hearts-and-minds-of-developers/\">VentureBeat</a> at the time. When it was purchased, the highly regarded brand was focusing on advanced technical services that GoDaddy had not yet adapted, and the plan was to have MT operate independently with no changes for employees or customers.</p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\">Thanks for allowing us to serve you for 24 years. The time has come to say goodbye. We will miss you. Keep building amazing things!</p>&mdash; Media Temple (@mediatemple) <a href=\"https://twitter.com/mediatemple/status/1699116917900894315?ref_src=twsrc%5Etfw\">September 5, 2023</a></blockquote>\n</div>\n\n\n\n<p>The year following the acquisition, <a href=\"https://wptavern.com/mediatemple-launches-wordpress-managed-hosting-package\">Media Temple launched its managed WordPress hosting product</a>, joining the ranks of Flywheel, Page.ly, WordPress.com, WP Engine, and a handful of other companies that were working to elevate the hosting experience for WordPress users.</p>\n\n\n\n<p>In December 2022, MT <a href=\"https://origin-blog.mediatemple.net/news/a-new-chapter-for-media-temple/\">announced</a> it would be retiring the Media Temple brand and transitioning accounts to GoDaddy, while subtly acknowledging the sentimental place MT holds in many of its customers&#8217; hearts:</p>\n\n\n\n<blockquote class=\"wp-block-quote\">\n<p>Since joining GoDaddy, we worked hand-in-hand with them to incorporate the best of Media Temple into offerings, including improving GoDaddy’s customer experience and leveraging Media Temple’s unique expertise on what it truly means to run a world-class hosting organization. If you closely examine GoDaddy’s hosting offerings, you will find Media Temple’s fingerprints all around. From specialized teams who deal with complex hosting issues to programs like GoDaddy Pro specifically targeting creatives, Media Temple made its mark on GoDaddy.</p>\n</blockquote>\n\n\n\n<p>Fans bid the brand farewell on Twitter, as its retirement marks the end of a chapter in web hosting history.</p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\">Basically the entire design community was sponsored by Media Temple back in the day.<br /><br />I can’t imagine a more omnipresent brand at the time. <a href=\"https://t.co/mmhdxEIHVy\">https://t.co/mmhdxEIHVy</a></p>&mdash; Josh Pigford (@Shpigford) <a href=\"https://twitter.com/Shpigford/status/1699464913595290066?ref_src=twsrc%5Etfw\">September 6, 2023</a></blockquote>\n</div>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\">When I got started circa 2003, it felt like every respected web designer was hosted by Media Temple.<br /><br />They made being hosted by them feel cooler (really) than anywhere else. Geniuses.<br /><br />I was a (mt) customer from 2007–2020 until <a href=\"https://twitter.com/laravelforge?ref_src=twsrc%5Etfw\">@laravelforge</a> made deploying magnitudes easier. <a href=\"https://t.co/HyhBxz5PZs\">https://t.co/HyhBxz5PZs</a></p>&mdash; Brendan Falkowski (@Falkowski) <a href=\"https://twitter.com/Falkowski/status/1699543478169112971?ref_src=twsrc%5Etfw\">September 6, 2023</a></blockquote>\n</div>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\">Woah. Somehow Media Temple always seemed so cool, the first “aspirational” software in a way, where you’d move when your blog was successful.<br /><br />End of an era. <a href=\"https://t.co/tJobBqEPQf\">https://t.co/tJobBqEPQf</a></p>&mdash; Matthew Guay (@maguay) <a href=\"https://twitter.com/maguay/status/1699446005568270700?ref_src=twsrc%5Etfw\">September 6, 2023</a></blockquote>\n</div>\n\n\n\n<p>In February 2023, Media Temple began migrating accounts to GoDaddy, with no action required from customers. Many of the products and services were already fulfilled through GoDaddy, decreasing the number needing to be migrated. </p>\n\n\n\n<p>Now that the process is complete, the brand will discontinue operations and move current resources into supporting customers inside GoDaddy. The company assured former MT customers that they will retain their current products and pricing for equivalent products with access to more tools.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 07 Sep 2023 03:36:11 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:1;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:89:\"Post Status: Community Summit Recaps, Multilingual Documentation, Performant Translations\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"https://poststatus.com/?p=154280\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:98:\"https://poststatus.com/community-summit-recaps-multilingual-documentation-performant-translations/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:21140:\"<h2 class=\"wp-block-heading\" id=\"h-this-week-at-wordpress-org-september-4-2023\">This Week at WordPress.org (September 4, 2023)</h2>\n\n\n<div class=\"has-background has-theme-palette-8-background-color wp-block-post-excerpt\"><p class=\"wp-block-post-excerpt__excerpt\">Discover the latest from the WordPress community. From the future of WordPress &amp; Gutenberg&#8217;s next steps to intriguing discussions at the Community Summit. Plus, get a sneak peek into WordPress 6.4&#8217;s development cycle. Stay updated, stay involved! </p></div>\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n<div class=\"gb-container gb-container-5e804289\">\n\n<h2 class=\"wp-block-heading\" id=\"h-news\"><h2><a href=\"https://wordpress.org/news\">News</a></h2></h2>\n\n</div>\n\n\n<ul>\n<li><a href=\"https://wordpress.org/news/2023/09/episode-61-community-summit-all-at-washington-d-c/\">WP Briefing: Episode 61: Community, Summit, all at Washington D.C.</a></li>\n\n\n\n<li><a href=\"https://wordpress.org/news/2023/08/wordpress-6-3-1-maintenance-release/\">WordPress 6.3.1 Maintenance Release</a></li>\n\n\n\n<li><a href=\"https://wordpress.org/news/2023/08/the-future-of-wordpress-whats-next-for-gutenberg/\">The Future of WordPress &amp; What’s Next for Gutenberg</a></li>\n\n\n\n<li><a href=\"https://wordpress.org/news/2023/08/wp20-a-heartfelt-thanks/\">WP20 – A Heartfelt Thanks</a></li>\n</ul>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-community-summit-notes\"><a href=\"https://make.wordpress.org/summit\">Community Summit Notes</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/summit/2023/09/06/community-summit-discussion-notes-iterating-on-the-team-rep-role/\">Community Summit Discussion Notes: Iterating on the Team Rep role</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/summit/2023/09/04/community-summit-discussion-notes-open-source-participation-in-global-legislation/\">Community Summit Discussion Notes: Open Source participation in global legislation</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/summit/2023/09/03/community-summit-discussion-notes-communication-and-collaboration-finding-your-way-around-wordpress/\">Community Summit Discussion Notes: Communication and Collaboration – Finding Your Way Around WordPress</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/summit/2023/09/01/understanding-contributor-leadership-roles-in-the-wordpress-open-source-project/\">Understanding contributor leadership roles in the WordPress open source project</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/summit/2023/08/31/part-i-ii-communicating/\">Part I &amp; II: Communicating…</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/summit/2023/08/31/invisible-and-under-appreciated-bolstering-behind-the-scenes-contributions/\">Invisible and under-appreciated: bolstering “behind the scenes” contributions</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/summit/2023/08/30/community-summit-discussion-notes-revitalizing-contributor-teams-leadership-pipeline/\">Community summit discussion notes: Revitalizing contributor teams’ leadership pipeline</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/summit/2023/08/30/community-summit-discussion-notes-php-version-support/\">Community Summit Discussion Notes: PHP version support</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/summit/2023/08/28/community-summit-discussion-notes-can-wordpress-become-the-household-name-it-deserves-to-be/\">Community Summit Discussion Notes: Can WordPress become the household name it deserves to be?</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/summit/2023/08/27/community-summit-discussion-notes-refreshing-the-contributor-pipeline/\">Community Summit Discussion Notes: Refreshing the contributor pipeline</a></li>\n</ul>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<div class=\"wp-block-columns is-layout-flex wp-container-2 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<h2 class=\"wp-block-heading\">WordPress 6.4</h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2023/07/18/wordpress-6-4-whats-on-your-wishlist/\">WordPress 6.4: What’s on your wishlist?</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/06/05/wordpress-6-4-development-cycle/\">WordPress 6.4 Development Cycle</a></li>\n</ul>\n</div>\n</div>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<div class=\"wp-block-columns is-layout-flex wp-container-7 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<div class=\"wp-block-columns is-layout-flex wp-container-5 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<h2 class=\"wp-block-heading\"><a href=\"https://make.wordpress.org/accessibility\">Accessibility</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/accessibility/2023/08/30/accessibility-team-meeting-agenda-september-1-2023/\">Accessibility Team Meeting Agenda: September 1, 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/accessibility/2023/08/28/wcus-2023-contributor-day-summary/\">WCUS 2023 Contributor Day Summary</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-community\"><a href=\"https://make.wordpress.org/community\">Community</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/community/2023/09/01/wordcamp-mentors-september-check-in/\">WordCamp Mentors’ September check-in!</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/community/2023/08/30/the-nextgen-event-project-your-ideas-your-wordpress-community/\">The NextGen Event Project: Your Ideas, Your WordPress Community!</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/community/2023/08/23/recap-of-the-diverse-speaker-training-group-wpdiversity-amer-emea-on-august-23-2023/\">Recap of the Diverse Speaker Training group (#WPDiversity) AMER/EMEA on August 23, 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/community/2023/08/23/call-for-ideas-new-features-for-our-nexgen-wp-events-central-page/\">Call for ideas: new features for our NexGen WP events central page</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/community/2023/08/21/meetup-organizer-newsletter-august-2023/\">Meetup Organizer Newsletter: August 2023</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-core\"><a href=\"https://make.wordpress.org/core\">Core</a> </h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2023/09/06/a-week-in-core-september-4-2023/\">Two Weeks in Core – September 4, 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/09/05/call-for-testing-performant-translations/\">Call for Testing: Performant Translations</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/08/31/proposal-an-update-to-the-field-guide/\">Proposal: An update to the Field Guide</a></li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-developer-blog\"><a href=\"https://developer.wordpress.org/news/\">Developer Blog</a></h3>\n\n\n\n<ul>\n<li><a href=\"https://developer.wordpress.org/news/2023/08/adding-and-using-custom-settings-in-theme-json/\">Adding and using custom settings in theme.json</a></li>\n\n\n\n<li><a href=\"https://developer.wordpress.org/news/2023/08/exploring-the-future-of-web-development-with-webassembly-and-php/\">Exploring the future of web development with WebAssembly and PHP</a></li>\n\n\n\n<li><a href=\"https://developer.wordpress.org/news/2023/08/an-introduction-to-block-variations/\">An introduction to block variations</a></li>\n\n\n\n<li><a href=\"https://developer.wordpress.org/news/2023/08/the-anatomy-of-a-letterform/\">The anatomy of a letterform</a></li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-meetings\">Meetings</h3>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2023/09/06/default-theme-chat-summary-august-30th-2023-2/\">Default Theme chat summary: September 6, 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/09/05/dev-chat-agenda-september-6-2023/\">Dev Chat agenda, September 6, 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/09/04/editor-chat-agenda-06-september-2023/\">Editor Chat Agenda: 06 September 2023</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\"><a href=\"https://make.wordpress.org/design\">Design</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/design/2023/08/28/design-share-aug-14-aug-25/\">Design Share: Aug 14-Aug 25</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/design/2023/08/18/design-specific-triage/\">Bringing Back the Weekly Design Triage</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/design/2023/08/10/admin-design-kickoff/\">Admin Design Kickoff</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\"><a href=\"https://make.wordpress.org/docs\">Docs</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/docs/2023/09/01/agenda-for-docs-team-bi-weekly-meeting-05-sep-2023/\">Agenda for Docs Team Biweekly Meeting (05-Sep-2023)</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/updates/2023/09/04/documentation-team-update-september-4-2023/\">Documentation Team Update – September 4, 2023</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-hosting\"><a href=\"https://make.wordpress.org/hosting\">Hosting</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/hosting/2023/09/06/hosting-team-meeting-agenda-2023-09-06/\">Hosting Team meeting agenda 2023-09-06</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/hosting/2023/09/03/xpost-community-summit-discussion-notes-php-version-support/\">X-post: Community Summit Discussion Notes: PHP version support</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\"><a href=\"https://make.wordpress.org/marketing\">Marketing</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/marketing/2023/08/24/wordcamp-us-2023-contributor-day/\">WordCamp US 2023 Contributor Day</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\"><a href=\"https://make.wordpress.org/meta\">Meta</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/meta/2023/08/23/introducing-the-wordpress-org-github-invite-tool/\">Introducing the WordPress.org GitHub Invite tool</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-openverse\"><a href=\"https://make.wordpress.org/openverse\">Openverse</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/openverse/2023/09/04/last-week-openverse-2023-08-28-2023-09-04/\">A week in Openverse: 2023-08-28 – 2023-09-04</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-performance\"><a href=\"https://make.wordpress.org/performance/\">Performance</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2023/09/05/performance-chat-summary-05-september-2023/\">Performance Chat Summary: 5 September 2023</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-plugins\"><a href=\"https://make.wordpress.org/plugins\">Plugins</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/updates/2023/09/04/plugin-review-team-4-september-2023/\">Plugin Review Team: 4 September 2023</a></li>\n</ul>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<h2 class=\"wp-block-heading\" id=\"h-polyglots\"><a href=\"https://make.wordpress.org/polyglots\">Polyglots</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/polyglots/2023/09/06/agenda-weekly-polyglots-chat-september-06-2023-0700-utc/\">Agenda: Weekly Polyglots Chat- September 06, 2023 (07:00 UTC)</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/polyglots/2023/09/04/improving-translation-suggestions-from-other-languages/\">Improving Translation Suggestions from Other Languages</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-project\">Project</h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/project/2023/09/06/documentation-translation-localization/\">Proposal: Documentation translation/localization</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-support\"><a href=\"https://make.wordpress.org/support\">Support</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/support/2023/08/proposal-for-updated-support-guidelines/\">Proposal for updated support guidelines</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\"><a href=\"https://make.wordpress.org/sustainability\">Sustainability</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/sustainability/2023/09/06/how-the-wordpress-sustainability-team-was-born-during-wordcamp-europe-2023/\">How the WordPress Sustainability Team was born during WordCamp Europe 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/sustainability/2023/09/05/sustainability-chat-agenda-september-8-2023/\">Sustainability Chat Agenda, September 8, 2023</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-test\"><a href=\"https://make.wordpress.org/test\">Test</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/test/2023/08/31/test-chat-summary-29-august-2023/\">Test Chat Summary: 29 August 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/test/2023/08/29/fse-program-lets-start-from-the-beginning-summary/\">FSE Program Let’s Start From The Beginning Summary</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/test/2023/08/15/test-team-reps-call-for-nominations-3/\">Test Team Reps: Call for Nominations</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/updates/2023/09/04/test-team-update-4-september-2023/\">Test Team Update: 4 September 2023</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-theme\"><a href=\"https://make.wordpress.org/theme\">Theme</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/updates/2023/09/05/themes-team-update-september-5-2023/\">Themes team update September 5, 2023</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-training\"><a href=\"https://make.wordpress.org/training\">Training</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/updates/2023/09/02/whats-new-on-learn-wordpress-in-august-2023/\">What’s new on Learn WordPress in August 2023</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/learn-wordpress-newsletter-september-2023/\">Learn WordPress Newsletter – September 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/training/2023/09/05/wordcamp-us-2023-contributor-day-recap/\">WordCamp US 2023 Contributor Day Recap</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/training/2023/09/05/lets-share-our-notes-from-the-community-summit/\">Let’s share our notes from the Community Summit</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/training/2023/08/24/information-sources-for-wordpress-6-4/\">Information Sources for WordPress 6.4</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/training/2023/08/24/looking-for-feedback-learning-pathway-outlines/\">Looking for feedback: Learning pathway outlines</a></li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-tutorials\"><a href=\"https://learn.wordpress.org/tutorials\">Tutorials</a></h3>\n\n\n\n<ul>\n<li><a href=\"https://learn.wordpress.org/tutorial/intro-to-the-site-editor-and-template-editor/\">Intro to the Site Editor</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/tutorial/gu-how-to-start-using-wordpress-playground/\">વર્ડપ્રેસ પ્લેગ્રાઉન્ડનો ઉપયોગ કેવી રીતે શરૂ કરવો</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/tutorial/common-apis-dashboard-widgets/\">Common APIs – Dashboard Widgets</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/tutorial/how-to-create-a-video-tutorial-for-learn-wordpress-org/\">How to create a video tutorial for learn.wordpress.org</a></li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-online-workshops\">Online Workshops</h3>\n\n\n\n<ul>\n<li><a href=\"https://learn.wordpress.org/?meeting=what-is-the-domain-name-system-3\">What is the Domain Name System?</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=speaker-workshop-for-indian-women-in-the-wordpress-community-part-2\">Speaker Workshop for Indian Women in the WordPress Community Part 2</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=speaker-workshop-for-indian-women-in-the-wordpress-community-part-1\">Speaker Workshop for Indian Women in the WordPress Community Part 1</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=common-wordpress-apis-metadata-2\">Common WordPress APIs: Metadata</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=wp-dev-livestream-sendig-block-theme-13\">WP dev livestream: Sendig block theme</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=apac-using-the-navigation-block\">APAC: Using the navigation block</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=using-the-navigation-block-3\">Using the navigation block</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=common-wordpress-apis-metadata\">Common WordPress APIs: Metadata</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=41489\">WP dev livestream: Sendig block theme</a></li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-courses\"><a href=\"https://learn.wordpress.org/courses\">Courses</a></h3>\n\n\n\n<ul>\n<li><a href=\"https://learn.wordpress.org/course/wordpress-community-team-supporter-basics/\">WordPress Community Team Supporter Basics</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\"><a href=\"https://make.wordpress.org/tv\">WordPress TV</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/tv/2023/06/15/enhancing-slide-management-for-video-publications/\">Enhancing Slide Management for Video Publications</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-wptv\">WPTV</h2>\n\n\n\n<ul>\n<li><a href=\"https://wordpress.tv/category/year/2022/\">Latest WordPress TV videos</a></li>\n</ul>\n</div>\n</div>\n</div>\n</div>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-related-news\">Related News:</h2>\n\n\n\n<ul>\n<li><a href=\"https://blog.jquery.com/2023/08/28/jquery-3-7-1-released-reliable-table-row-dimensions/\">jQuery 3.7.1 Released: Reliable Table Row Dimensions</a></li>\n\n\n\n<li><a href=\"https://nodejs.org/en/blog/release/v20.2.0\">Node v20.2.0 released</a></li>\n\n\n\n<li><a href=\"https://www.php.net/archive/2023.php#2023-08-31-1\">PHP 8.3.0 RC 1 available for testing</a></li>\n\n\n\n<li><a href=\"https://www.php.net/archive/2023.php#2023-08-31-2\">PHP 8.2.10 Released!</a></li>\n\n\n\n<li><a href=\"https://www.php.net/archive/2023.php#2023-08-31-3\">PHP 8.1.23 Released!</a></li>\n\n\n\n<li><a href=\"https://github.com/PHPMailer/PHPMailer/releases/tag/v6.8.1\">PHPMailer 6.8.1</a></li>\n\n\n\n<li><a href=\"https://dev.mysql.com/doc/relnotes/mysql/8.0/en/news-8-0-35.html\">Changes in MySQL 8.0.35 (Not yet released, General Availability)</a></li>\n\n\n\n<li><a href=\"https://262.ecma-international.org/\">TC39</a></li>\n\n\n\n<li><a href=\"https://github.com/composer/composer/releases\">Composer 2.6.2</a></li>\n</ul>\n\n\n\n<p class=\"has-theme-palette-7-background-color has-background\">Thanks for reading our WP dot .org roundup! Each week we are highlighting the news and discussions coming from the good folks making WordPress possible. If you or your company create products or services that use WordPress, you need to be engaged with them and their work. Be sure to share this resource with your product and project managers. <br /><br /><strong>Are you interested in giving back and contributing your time and skills to WordPress.org?</strong>   <a href=\"https://wordpress.org/support/article/contributing-to-wordpress/\">Start Here ›</a><br /><br /><strong>Get our weekly WordPress community news digest</strong> — Post Status&#8217; <a href=\"https://poststatus.com/news/week-in-review/\">Week in Review</a> — covering the WP/Woo news plus significant writing and podcasts. It&#8217;s also available in <a href=\"https://poststatus.com/newsletter\">our newsletter</a>.  </p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<div class=\"wp-block-media-text alignwide is-stacked-on-mobile has-background\"><a href=\"https://poststatus.com/\"><img src=\"https://poststatus.com/wp-content/uploads/2021/09/vertical-post-status-logo-250.png\" alt=\"Post Status\" class=\"wp-image-85823 size-full\" /></a><div class=\"wp-block-media-text__content\">\n<p class=\"has-text-align-left has-normal-font-size\" id=\"h-get-ready-for-remote-work\">You — and <a href=\"https://poststatus.com/#Agency\">your whole team</a> can <a href=\"https://poststatus.com/#choose-membership\">Join Post Status</a> too!</p>\n\n\n\n<p class=\"has-text-align-left has-small-font-size\"><strong>Build your network. Learn with others. Find your next job — or your next hire.</strong> Read the <strong>Post Status</strong> <a href=\"https://poststatus.com/newsletter/\">newsletter</a>. <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/2709.png\" alt=\"✉\" class=\"wp-smiley\" /> Listen to <a href=\"https://poststatus.com/podcasts/\">podcasts</a>. <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f399.png\" alt=\"?\" class=\"wp-smiley\" /> Follow <a href=\"https://twitter.com/post_status/\">@Post_Status</a> <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f426.png\" alt=\"?\" class=\"wp-smiley\" /> and <a href=\"https://www.linkedin.com/company/post-status-llc/\">LinkedIn</a>. <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f4bc.png\" alt=\"?\" class=\"wp-smiley\" /></p>\n</div></div>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n<p>This article was published at Post Status — the community for WordPress professionals.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 06 Sep 2023 19:31:54 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"Courtney Robertson\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:2;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:82:\"WPTavern: #89 – Scott Kingsley Clark on Why the Time Is Right for the Fields API\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:48:\"https://wptavern.com/?post_type=podcast&p=148568\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:96:\"https://wptavern.com/podcast/89-scott-kingsley-clark-on-why-the-time-is-right-for-the-fields-api\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:47790:\"Transcript<div>\n<p>[00:00:00] <strong>Nathan Wrigley:</strong> Welcome to the Jukebox podcast from WP Tavern. My name is Nathan Wrigley.</p>\n\n\n\n<p>Jukebox is a podcast which is dedicated to all things WordPress. The people, the events, the plugins, the blocks, the themes, and in this case, why the time might be right for the Fields API.</p>\n\n\n\n<p>If you&#8217;d like to subscribe to the podcast, you can do that by searching for WP Tavern in your podcast player of choice. Or by going to WPTavern.com forward slash feed forward slash podcast. And you can copy that URL into most podcast players.</p>\n\n\n\n<p>If you have a topic that you&#8217;d like us to feature on the podcast, I&#8217;m keen to hear from you, and hopefully get you all your idea featured on the show. Head to WPTavern.com forward slash contact forward slash jukebox. And use the form there.</p>\n\n\n\n<p>So on the podcast today, we have Scott Kingsley, Clark.</p>\n\n\n\n<p>Scott is a WordPress developer who has been working with WordPress since 2007. He&#8217;s well-known for his work on the Pods Framework, a popular content and custom fields plugin.</p>\n\n\n\n<p>Scott&#8217;s goal is to find ways to enhance the WordPress experience, particularly in terms of working with different types of data. He&#8217;s currently involved in the WordPress Fields API project, which aims to provide a better solution for developers looking to wrangle their data. And that is the focus of the podcast today. As you&#8217;ll hear, Scott is determined to contribute to the continual growth and improvement of WordPress, and to make the Fields API a reality.</p>\n\n\n\n<p>Scott came from a background using Drupal, which is an alternative CMS. When he first ventured into WordPress, he found certain features were lacking. Things which were baked into Drupal Core were not available in WordPress, a notable example being custom fields.</p>\n\n\n\n<p>We know that WordPress has a myriad of plugins, which can take on the burden of creating custom fields, but Scott has concerns about the interoperability of these plugins, and he wants to create a more solid structure within WordPress itself. Wouldn&#8217;t it be nice if there were ways for developers to create custom field plugins so that you weren&#8217;t locked into one or the other. Scott imagines a future in which you could move from ACF, Metabox Toolset and more. A future built on top of the Fields API.</p>\n\n\n\n<p>Throughout the conversation, scott talks about his passion for incorporating the block editor, React and other technologies into WordPress. He shares insights on controlling block settings, making them extensible through PHP.</p>\n\n\n\n<p>You might know Scott from his work on the popular Pods Framework plugin. This plugin allows users to create custom content types and fields in WordPress, and certainly speaks to his credentials in trying to push the Fields API project forward.</p>\n\n\n\n<p>We talk about what the Fields API might become. The aim is to simplify the process of working with custom fields and content types in WordPress. With the Fields API, Scott hopes to unify the different methods and APIs for managing custom fields, making it easier for developers and non-developers alike to add their fields to different screens within WordPress.</p>\n\n\n\n<p>It&#8217;s a complicated undertaking and we get into some of the areas of WordPress, which might benefit from his work. Scott sheds light on the challenges faced during the development of the Fields API, the need for shared storage standards among plugins, and the potential for better integration with the WordPress Admin UI.</p>\n\n\n\n<p>Towards the end of the podcast we talk about the future of the Fields API project, and how gaining support from people in the WordPress community will be crucial to its success.</p>\n\n\n\n<p>If you&#8217;re interested in how WordPress can be used as a fully featured CMS, this podcast is for you.</p>\n\n\n\n<p>If you want to find out more, you can find all of the links in the show notes by heading to WPTavern.com forward slash podcast, where you&#8217;ll find all the other episodes as well.</p>\n\n\n\n<p>And so without further delay, I bring you Scott Kingsley Clark.</p>\n\n\n\n<p>I am joined on the podcast today by Scott Kingsley Clark. Hello Scott.</p>\n\n\n\n<p>[00:04:53] <strong>Scott Kingsley Clark:</strong> Hey Nathan, how&#8217;s it going?</p>\n\n\n\n<p>[00:04:55] <strong>Nathan Wrigley:</strong> Yeah really good. Thank you for joining us on the podcast today. We&#8217;re going to get into the weeds a little bit with WordPress code and all sorts of things. We haven&#8217;t had one of these episodes for a little while so this will be nice and refreshing.</p>\n\n\n\n<p>Scott, given that we&#8217;re going to be talking about something technical I suppose it would be a good thing right at the beginning to learn about your technical expertise. The various different projects that you&#8217;ve touched in the WordPress space during the time that you&#8217;ve been in that. So just yeah a little moment for you to offer up your bio really. So over to you.</p>\n\n\n\n<p>[00:05:24] <strong>Scott Kingsley Clark:</strong> Well sure. I started working with WordPress in about 2007 or 8. I used it briefly once before with a one click install from cPanel before that, but I didn&#8217;t really like it at the time. And I was doing many other things.</p>\n\n\n\n<p>But ever since that point I have been really involved with trying to make WordPress the best that it can be. And that has evolved through plugin development. One of the plugins I&#8217;m more known for is the Pods Framework. And that is a content type, a custom field plugin for WordPress. But I&#8217;ve also tried to find ways to make it easier for other developers to build things without needing a plugin. Because a plugin like Pods existed before custom post types had a real API.</p>\n\n\n\n<p>But now that it has a real API you don&#8217;t really need a plugin like Pods to just make a custom post type. And the goal for me is, I&#8217;d love to see a better way to work with those types of objects inside of WordPress that have very different APIs, or in some cases no API at all. You just have to output your own markup and hook into some hooks. And it&#8217;s not really great.</p>\n\n\n\n<p>Especially in this day where we have everything exposed to the Rest APIs. And you want to build really cool blocks, but you can&#8217;t leverage some data from different structures that don&#8217;t exist. So that&#8217;s where I&#8217;d love to find ways for WordPress to level up.</p>\n\n\n\n<p>In this particular project of mine, is the WordPress Fields API. There is a group of us who have kind of rebooted it, but it existed in 2000 and, I want to say 14, 15, 16, 2017, all through those years. And we had made some progress, made a few different proposals and it just got stuck up in the process of getting the block editor and Rest API.</p>\n\n\n\n<p>And there was just so many more bigger features that were getting the priority, and it kind of burned me out. And I didn&#8217;t find anyone else to carry the torch so it just went away. And just the start of this year we started up again.</p>\n\n\n\n<p>[00:07:30] <strong>Nathan Wrigley:</strong> What was the reason that it went away? You mentioned there that there were a whole variety of different things going on at the same time. So was it that the community&#8217;s focus just seemed to be more interested on other things? And so despite the fact that you were putting in the time, and you obviously just described that it burnt you out a little bit. There just wasn&#8217;t enough interest because attention was being put elsewhere.</p>\n\n\n\n<p>[00:07:53] <strong>Scott Kingsley Clark:</strong> Right. Well Fields API owes so much to WebDevStudios and 10up who offered a lot of my time on the clock. They donated my time towards developing the Fields API and pushing it forward. And at 10up we were really, really close. We got the closest we had been at that point because at 10up we had a really awesome contributor for WordPress. A core committer, Helen Hou-Sandi.</p>\n\n\n\n<p>And that got us really close, but I think it just was that I was practically speaking for Fields API and saying, we should do this, we should do that, and it just wasn&#8217;t hitting. It wasn&#8217;t hitting right for them. Or the people who were involved in making decisions on what was going to make it, or what was going to get the attention or whatever, just didn&#8217;t feel it yet.</p>\n\n\n\n<p>And I can understand that. I mean there&#8217;s so much that everyone is trying to do for each release. And I kind of assumed that if I built as much as possible and showed it as a really thoroughly working prototype with tests and everything else. And I just handed it to them and said hey here it is. Can you help me make this part of WordPress Core? Do you have any feedback? And when I did that I guess the biggest problem was I hadn&#8217;t really involved all those same voices at that point prior to actually doing the development of it.</p>\n\n\n\n<p>So I had some input from a few different core contributors and committers and such. But as soon as I pushed out that final proposal in 2017 we got so many detractors and people saying, oh we should have done this differently or, why is it like this? And I would have done it this way. And it kind of did not get the consensus that I was needing for it to gain further traction. So we&#8217;ve kind of approached it differently in this reboot.</p>\n\n\n\n<p>[00:09:42] <strong>Nathan Wrigley:</strong> Okay, right. So you did a lot of the work, you put it out there but the feedback that came back didn&#8217;t exactly encourage you, let&#8217;s put it that way. There were people who just would rather it had been done in their way. I&#8217;m guessing that that&#8217;s because there are loads of different ways that this type of problem has been tackled I guess on a more or less on a per plugin basis. There&#8217;s probably hundreds of plugins out there that do something similar. They do it their way. And so they presumably think that their way is the way that it should be done.</p>\n\n\n\n<p>[00:10:15] <strong>Scott Kingsley Clark:</strong> Right. I mean there&#8217;s so many plugins like ACF and Pods and Toolset, so many more at comparewp.org slash cck. Which is like a really cool comparison list of all these different types of plugins. But there&#8217;s so many that each one has their own baked in API for managing fields in WordPress.</p>\n\n\n\n<p>And it&#8217;s just bonkers that everyone has to build all these APIs, and in the end they&#8217;re almost it&#8217;s forcing the need of having to build their own APIs because they won&#8217;t accept anything else other than the one that they built. And I think that it&#8217;s tricky with developers and egos and everything else. We all have to kind of find a way to, you know, what is the minimum bare essentials API that we could build for this and find a consensus on that.</p>\n\n\n\n<p>[00:11:01] <strong>Nathan Wrigley:</strong> So I guess this time around the community involvement is going to be there. You&#8217;re going to do this much more in the open. So that as you are going along presumably ideas are chipped in, rather than it just being one great big release at the end where everybody gets to either agree or disagree.</p>\n\n\n\n<p>[00:11:18] <strong>Scott Kingsley Clark:</strong> Right yeah. We tried to do that before but I think the challenge was we moved so quickly. I built so much code and I had made a specification ahead of time. But really the time wasn&#8217;t spent in the research specification side to get a consensus at that point, with not just the people who were involved but everyone else. Making sure everyone else had a moment to do that.</p>\n\n\n\n<p>I guess when people just look at a specification like oh, I&#8217;ll just look at it later on when he has something for me to look at. And so it just gets delayed. And I&#8217;m hoping that this time I can find ways to intuitively make it so people will actively and proactively be part of that process and give feedback</p>\n\n\n\n<p>[00:12:01] <strong>Nathan Wrigley:</strong> So given that you&#8217;ve restarted it, what reinvigorated it for you? Where did your curiosity for something that has been dormant for quite a number of years now. What on earth was it that brought you back to seeing this as a worthwhile use of your time?</p>\n\n\n\n<p>[00:12:16] <strong>Scott Kingsley Clark:</strong> Since 2017 I&#8217;ve had kind of dark years in my contributing to WordPress Core, and just feeling like, well I can&#8217;t get anything big done so maybe I shouldn&#8217;t spend my time on it. And just the amount of time I&#8217;d spent on it had taken away from my full time work and my side projects.</p>\n\n\n\n<p>I&#8217;m just like, well if I&#8217;m going to do this I really need it to be something I believe in. And up until the start of the year I just didn&#8217;t really feel like it was going to be possible. And then Joe Dolson, from the accessibility team was talking about how their team was looking at trying to revitalize the settings screens.</p>\n\n\n\n<p>And one of the biggest challenges were their setting screens are hard coded in a lot of ways. And there&#8217;s not really an easy way to just like, here let&#8217;s try out this different interface. Let&#8217;s try this interface, this markup. We&#8217;ll change this markup here. And it&#8217;s very difficult to produce different markup inside of WordPress Core right now for a lot of screens really.</p>\n\n\n\n<p>And more importantly for them, it&#8217;s not even using the Settings API the same way as most people are building things with the Settings API. And they hooked up with me because Courtney Robertson, a really awesome Dev Rel person, has just connected me with Joe at the end of last year I believe. And we just started talking about it, like hey this would be really cool if we had this Fields API stuff that you were thinking about before.</p>\n\n\n\n<p>And I was like well I don&#8217;t know. And then as they discussed it with really the focus on accessibility I was like, you know what accessibility is such a big priority to me that I think it kind of overrides my initial thoughts about well I don&#8217;t know if I can get this into Core. Because I thoroughly believe in spending more time on accessibility for lots of different plugins. Especially for WordPress Core and the block editor. And if I can help push that forward I feel like I&#8217;ve done something better with my time.</p>\n\n\n\n<p>And at that point I was like yeah I&#8217;m in. We&#8217;ll focus on the Settings API, just on that. And we&#8217;re not going to like build all the different screens and API prototype that we had done before. Until we get the Settings API, let&#8217;s focus all of our energy on doing that for the Settings API itself.</p>\n\n\n\n<p>[00:14:26] <strong>Nathan Wrigley:</strong> So that all kicked off again at the beginning of this year, 2023. And I&#8217;m staring at a page on the Make WordPress Core blog, which you wrote right at the beginning of the year, january the 9th. You&#8217;ve posted a video there of you, and I think the four other people on the call. So right at the very start of this year, five people involved at the very least.</p>\n\n\n\n<p>How has the project been growing? Has it caught the attention in the way that you&#8217;d hoped? Have there been people coming along to assist? One of the enterprises of this podcast episode is obviously to swell the number of people, but it would be quite nice to know how it&#8217;s going just prior to that.</p>\n\n\n\n<p>[00:15:04] <strong>Scott Kingsley Clark:</strong> So as with a lot of these kinds of initiatives it all depends on the time you put in, as someone who has the vision and leads it. And my time on the Fields API had been kind of reduced, just right after this. The economy started having some challenges in the tech space, and job security was a concern in a lot of areas for a lot of people, especially me.</p>\n\n\n\n<p>And so I didn&#8217;t have as much free time to focus on that. I was focused on my work, keeping my head down and making sure I was doing all my things. And I just didn&#8217;t have enough headspace for it. But I knew that if I could really spend a great deal of time this summer on the Fields API, getting it prepared, getting it to the next phase, so that we have something solid. By the time it is time for Community Summit contributor day for WordCamp US we have a solid chance.</p>\n\n\n\n<p>And then something came out of nowhere. On the Make WordPress dot org core, blog I saw a post come through. And I&#8217;ve been watching posts there all the time and sometimes I&#8217;ll provide feedback. But this one was unique. This one was talking about revamping the Admin UI. And now I&#8217;m getting all sorts of excited and I&#8217;m thinking to myself, oh this is my time.</p>\n\n\n\n<p>Like, if I can get the Admin UI perspective on the Fields API, I think this could even help us further, pushing this forward. Because if you want to approach redoing the Admin UI you have to expose these kinds of fields and forms and screens in a way that is more dynamic than it is right now. And that is a sweet spot for the Fields API.</p>\n\n\n\n<p>So I posted on that blog post. I asked Matias, hey can we have Fields API? Please, please, please be part of this conversation. I would love to talk to you more about it. And so we&#8217;re probably going to talk about it at WordCamp US, some time during that week. And my hope is we&#8217;ll get this really pushed further. Because it takes buy in from the vocal people in WordPress. And I think I&#8217;m beginning to see more buy in. And that is really a positive thing for me.</p>\n\n\n\n<p>[00:17:12] <strong>Nathan Wrigley:</strong> Sounds like a really nice bit of serendipity there. Couple of things happened, and the chance of the Admin UI being overhauled kind of sits perfectly doesn&#8217;t it. That really would be the moment.</p>\n\n\n\n<p>It is a dramatic change that&#8217;s being proposed. And so I guess if you&#8217;re going to go all in on changing the Admin UI, well now would be the time to get all of the fields work done as well.</p>\n\n\n\n<p>It just occurs to me that given the audience that listen to this podcast, there&#8217;s a fair smattering of developers no doubt. But also there&#8217;s people who are just into WordPress. You know, it&#8217;s a hobby. They perhaps do it as a side gig or something.</p>\n\n\n\n<p>So maybe we should rewind and do some explanations about what on earth an API for fields would even do. Why is it even needed? I&#8217;m suspecting that many people log in to their WordPress website, certainly since the advent of Gutenberg. And more or less everything that they want to do, publish posts, schedule posts, that&#8217;s possibly the extent of it all. It functions.</p>\n\n\n\n<p>So I&#8217;m imagining there&#8217;s a proportion of people listening to this going, well, what even would this be needed for? Describe a scenario where this would be useful. So, let&#8217;s cover that out. What is the Fields API? How would it change what WordPress does?</p>\n\n\n\n<p>[00:18:25] <strong>Scott Kingsley Clark:</strong> Sure. So let me preface my answer with, there&#8217;s a reason why there&#8217;s so many plugins out there doing content types and custom fields. There&#8217;s a reason why Advanced Custom Fields has millions of active installs. And tons of people have paid for the pro premium versions of these kinds of plugins.</p>\n\n\n\n<p>Now I&#8217;ll get into the real answer. This is an incredibly complicated dance. Whenever you want to go add a custom field to a post, or let&#8217;s say you&#8217;re building a site, a hobby site. I use the book analogy a lot, but let&#8217;s talk about music, because I love music too.</p>\n\n\n\n<p>So you&#8217;re setting up a site for your music and maybe you&#8217;re an artist, a solo artist or a band. And you&#8217;re trying to set up a list of albums. And so you&#8217;re like well, how do I add albums? You could add that in the block editor. No problem, no issues there. But then what if you wanted to make it more data oriented.</p>\n\n\n\n<p>So if you wanted to do that you&#8217;d have to go register a custom post type for album, for instance. Maybe a custom post type for tracks, if you want to relate them to albums in some way. And maybe a custom post type for other things. Maybe custom taxonomies for other items that you want. But the challenge there is not really in the content type. It&#8217;s in the custom fields you want to add to that.</p>\n\n\n\n<p>Inside of WordPress, I counted it up recently, there&#8217;s somewhere between 16 to 17 different APIs and hooks that are totally different from each other, to add custom fields or settings to different areas on all the different screens, and different objects inside of WordPress. That is a lot. So adding a custom field means you have to go add an action inside of PHP.</p>\n\n\n\n<p>First of all you have to know PHP and kind of know where to put it. Second of all you have to then go add action to add a meta box. Then you have to add your code to render all of your fields markup. So you have to add your HTML in there and have it do that. Then you have to add an action to handle the saving.</p>\n\n\n\n<p>And then at that point you&#8217;re probably going to be looking at doing more things for taxonomies possibly. So you have to work with another action there. You have to add things there and it doesn&#8217;t look great. So then you have to add more markup. And it&#8217;s a lot for someone who just wants to build.</p>\n\n\n\n<p>So you just mentioned that there&#8217;s a number of developers listening to this right now. But there&#8217;s a lot of people who aren&#8217;t really considering themselves developers. They&#8217;re just people building sites and they don&#8217;t really have time to dig into the code. Or they don&#8217;t want to tell their client they can do this if they can&#8217;t build it custom, they would have to pay someone else to do that. And they want to avoid that cost. So they&#8217;re going to use one of these off the shelf plugins, like Advanced Custom Fields.</p>\n\n\n\n<p>Why would you spend five hours building your albums and tracks and things like that in PHP? The trial and error and figuring out the markup and, why is this not working? And then coming back to it later on and spending another few hours trying to debug something that happens. And then displaying it all on the front end. Why spend all that time when you can just install a plugin and just click a few buttons? And boom, you have another post type and then you have your fields already displayed. And by the way they look really nice. Why would you spend that time?</p>\n\n\n\n<p>So this is more of a feature, or more of a project geared towards developers so that it makes them spend less time on their side of things. And it unifies all 16, 17 of these methods and APIs to work with all these different screens.</p>\n\n\n\n<p>But what the end result would be is anyone using WordPress could then be using a plugin, or potentially use code snippets very easily without having to have a whole lot of knowledge. And be able to add a field to different screens without a whole lot of code, or whole lot of PHP experience. And these types of plugins like ACF, and Pods, and Toolset and various others, they could then leverage the Fields API if they&#8217;re supporting that WordPress version that includes it. They could leverage this Fields API in a way that reduces the code that they actually have to have inside their own plugins.</p>\n\n\n\n<p>And at the same time that makes it so WordPress itself, the REST APIs, everything that talks with the Fields API, then knows about the structures you&#8217;re registering.</p>\n\n\n\n<p>It&#8217;s a hand in hand, win-win scenario for end users who benefit from the stability, and the flexibility, and extensibility of those APIs in place. And developers who want to be able to utilize those things.</p>\n\n\n\n<p>[00:22:54] <strong>Nathan Wrigley:</strong> Have you any experience with other CMSs? We could probably list off half a dozen or more other CMSs. But certainly some that I have used in the past, a lot of these kind of features are baked into the core product. So the ability to add custom fields to, well it may not be called a custom post type over on that particular platform but you get the idea. It is already built in, if you like.</p>\n\n\n\n<p>You mentioned that you want to have this pushed to Core. Do you see that other CMSs are potentially stealing a march on WordPress? WordPress has traditionally been very good at giving 80% of the people what they want. So there is some argument as to whether or not some things should be added or some shouldn&#8217;t. But do you feel its been lacking this? And really a lot of other rival CMSs have been doing this for years.</p>\n\n\n\n<p>[00:23:42] <strong>Scott Kingsley Clark:</strong> That&#8217;s a very good point. The plugin Pods was one of the first ones that did custom content types and custom fields for WordPress in a way that mimicked, and this is in 2008, the end of 2008. It mimicked Drupal at the time.</p>\n\n\n\n<p>Drupal has a major feature called, what they called CCK, which was Content Construction Kit. I think that was what it was.</p>\n\n\n\n<p>And so what value that API had for Drupal was that it would let you do the kinds of things you&#8217;re seeing be possible with plugins like Metabox or whatever else, you can use code, and ACF to register your groups and fields, and you can use code to register custom post types.</p>\n\n\n\n<p>So you don&#8217;t have to use the UIs. You don&#8217;t have to provide a bunch of JSON. You can just register those things through PHP. And Drupal has had this for many, many years. It&#8217;s coming up on almost 20 years now that it&#8217;s had a feature like CCK. And that is not really that Drupal is ahead of WordPress, it&#8217;s that WordPress is severely behind. Because it hasn&#8217;t really prioritized these kinds of unifying APIs for its screens. I mean obviously WordPress hasn&#8217;t.</p>\n\n\n\n<p>If you look at it, it really hasn&#8217;t changed a whole lot until block editor. The interfaces and screens really kind of have been what they are. The structure of where things are has been mostly the same outside the block editor.</p>\n\n\n\n<p>Multisite was a big thing, but the screens themselves they really haven&#8217;t changed a whole lot. And I think that is just because we&#8217;ve been focused as a project on building features and not looking back at what we&#8217;ve done, and finding a better way to represent that. A project like the Admin UI revamp, or even accessibility revamp, could give us that time to kind of be introspective. What are we doing with these screens, and how do we make these things better?</p>\n\n\n\n<p>And backward compatibility doesn&#8217;t have to be a hindrance in the Fields API because it can be backward compatible too. It&#8217;s just if you want to register the new way you can do that and that is the officially the way that we recommend you do it. It&#8217;s just, it works. I really hope that more people see things like Drupal, and there&#8217;s so many other plugins, or so many other CMSs out there that have their own kind of CCK situations.</p>\n\n\n\n<p>Because it&#8217;s just, you&#8217;re building a CMS? Well you&#8217;re not going to want to do that the way the WordPress did it way back when. No one&#8217;s going to want to do that on purpose. And I think that they all already have their own forms and Fields API processing abilities, because that&#8217;s the bare minimum. As a developer, when you&#8217;re building something like this you build that. You don&#8217;t build all the markup and everything hard coded anymore.</p>\n\n\n\n<p>[00:26:24] <strong>Nathan Wrigley:</strong> Yeah I was a big fan of Drupal, and I used Drupal exclusively more or less for many years. My first interaction with WordPress was an endeavor to move away from Drupal for a variety of different reasons. And I do remember opening up WordPress and almost being incredulous that I couldn&#8217;t achieve some of the things that I was simply able to achieve with a vanilla install of Drupal.</p>\n\n\n\n<p>So custom fields was just trivially easy. It was there, it was baked in. And so I had this expectation, well everybody&#8217;s using WordPress it must have, you know, a similar feature set. And so, just flabbergasted that it didn&#8217;t exist.</p>\n\n\n\n<p>Of course very quickly found out exactly what you just said. That commercial and also free, there&#8217;s plenty of free options as well, Pods being one. That you had to go and find a solution for that. So rather than it being baked into core you&#8217;d go out and you&#8217;d purchase ACF or you would download Pods or whatever it may be.</p>\n\n\n\n<p>But this sort of feeling that well that&#8217;s interesting because I wonder how they&#8217;re doing that and if they&#8217;re doing it differently than the other one, so if ACF is doing it differently to how Pods is doing it, you could make that spaghetti go in any direction. How am I going to be stuck in the future? You know things that I create with Pods, is that interoperable? Could I start using ACF at a future date on the same website?</p>\n\n\n\n<p>So there&#8217;s all of that thrown into it as well. And I guess the endeavor here is to create that basic structure so that everybody can approach it and everybody can start creating these things without the reliance necessarily on a third party plugin.</p>\n\n\n\n<p>[00:28:03] <strong>Scott Kingsley Clark:</strong> Right. Like if you&#8217;re using a plugin like that and the Fields API comes out, there could be a migration thing, or exporting plugin created that exports from Pods or ACF or whatever into the Fields API structure. Much like ACF and some of these other plugins have the ability to kind of export. Maybe the biggest one is Custom Post Type UI. Where it&#8217;s just simple. Add custom post types, you add custom taxonomies and you can export that to code.</p>\n\n\n\n<p>And that code works without the plugin. So it just tells it, here is what you tell WordPress to do what you want to do here. That kind of ability to export into just a Fields API code would take your code, your plugin usage of ACF or Pods or whatever, and you could easily switch out into just pure WordPress.</p>\n\n\n\n<p>But also because if it has that ability to use the Fields API at that point you have more interoperability. So you can go between these different plugins more easily because there&#8217;s a similar structure we&#8217;re all using. And when you&#8217;re registering through Fields API you can potentially set like a source, like this is coming from ACF, or whatever you want.</p>\n\n\n\n<p>And then a Pods plugin could say oh hey I recognize you had these ACF fields, do you want to bring them over? The Fields API opens up the door because everyone&#8217;s talking the same talk. And we can all talk about things in the same conversation instead of like I need to know the ACF APIs to work with getting the fields out, and I need to know this and then that. And there&#8217;s that side.</p>\n\n\n\n<p>But there&#8217;s also the storage side. So we&#8217;re talking about the way that ACF stores their content. For repeatable fields that can be quite tricky. Flexible content, anything that has to do with data that&#8217;s not just a simple single value gets a little bit tricky depending on how you choose to store it in ACF.</p>\n\n\n\n<p>So those sorts of things are more based off of the plugin developers preference. So ACF was developed in a specific kind of point of view, for how they should store the storage. Pods is the same way, we have a specific point of view where it should be stored a certain way. Every plugin will have their own points of view. But if we can settle on the structure of the content fields, the custom fields for each of these objects, and how they&#8217;re going to be specified to WordPress, that&#8217;s really half the battle.</p>\n\n\n\n<p>Then we can start talking about, okay now that we have this common language let&#8217;s work on bringing everyone to the same storage, so anyone can switch between these different plugins and they won&#8217;t have to deal with any extra work. We could all agree on a shared set of storage, kind of specification standards really.</p>\n\n\n\n<p>[00:30:35] <strong>Nathan Wrigley:</strong> The breadth of this project feels like it could be truly enormous because there are fields in all sorts of unexpected places in WordPress. I mean you may not be thinking about them all the time but you know we&#8217;ve got post types, and terms, and comments, and settings, and users, and navigation, and the media library and all sorts of different places.</p>\n\n\n\n<p>How are you breaking it down? Is there an order in which you&#8217;re going to knock those dominoes over? Are you going for, I don&#8217;t know, probably the low hanging fruit of custom post types first, or is the intention to try and get everything done all at once? You did mention accessibility. Perhaps that&#8217;s come first because of Joe Dolson&#8217;s interactions with you.</p>\n\n\n\n<p>[00:31:17] <strong>Scott Kingsley Clark:</strong> Yeah. So accessibility is going to be the main driving point for us right now. So we&#8217;re focused on the Settings API. If we can get this right and potentially the goal is to get it to the point where we can actually merge it just for the Settings API. Just for the Settings API.</p>\n\n\n\n<p>We have an inside person now, inside of WordPress itself. So now we can start expanding it, and say okay now here&#8217;s the proposal to add this to the post types, and to the terms and everywhere else to be powered by the Fields API. And once you have those things powered by the Fields API, the full Admin UI revamp is becoming much more approachable for people who want to switch out the markup there.</p>\n\n\n\n<p>They don&#8217;t have to modify core as much to make it happen. They don&#8217;t have to duplicate all the code and deal with merge conflicts. It&#8217;s just so much more easier when you&#8217;re working with data structures that are defined as data structures, and not purely as markup and save handlers like they are in many areas of WordPress.</p>\n\n\n\n<p>[00:32:13] <strong>Nathan Wrigley:</strong> You&#8217;ve been doing this kind of work for years with Pods. So you know you&#8217;re incredibly familiar with this. Is there anything during your time working with Pods where you thought, I wish WordPress had this?</p>\n\n\n\n<p>So I&#8217;m just wondering if you might try to smuggle into this some unique new feature, not something which we&#8217;re already familiar with. You know post types and comments and users. Really that question might go nowhere but I just wondered if there was something innovative that you&#8217;ve got. Really I&#8217;d love to try this.</p>\n\n\n\n<p>[00:32:40] <strong>Scott Kingsley Clark:</strong> So I do have something but it&#8217;s going to be interesting to see if we can make it happen. So the way that this has been focused on has been replacing existing screens that are kind of hard coded and all that. But we haven&#8217;t really talked about, what about the block editor? What about React and all those things?</p>\n\n\n\n<p>And the cool part about that is that if you look at the screen, if you go to the block editor right now, you&#8217;re looking at editing a post and you insert a block, like let&#8217;s talk about the paragraph block or even a group block. On the right hand side, if you have it open, the inspector control sidebar there. That allows you to control what the block settings are, on margins and adding extra classes if you want to add them to the block.</p>\n\n\n\n<p>And many different blocks have many different settings. And then also you can click over and if you&#8217;re looking at the post type, or page post type you&#8217;ll see the word post or page up there and there&#8217;s a little kind of a tab, and you click that and then you are looking at the object controls.</p>\n\n\n\n<p>So this controls what is going on with the page or post like attributes for the parent, or maybe the date, or the many different things like slug and all that. So both of these areas are areas I would love, not really to sneak in, but I want to get buy in from people. I want to find a way to build these screens, these sets of fields and have them extensible through PHP.</p>\n\n\n\n<p>If we can do this in a way with the Fields API where you could register new sections and controls inside of React, it&#8217;s possible. We&#8217;re doing this right now. Pods is doing this, ACF, many other block builders are doing this with their blocks, their own blocks APIs. The way that we&#8217;re doing it right now is too much. It&#8217;s going down the same road of we&#8217;re locking ourselves in.</p>\n\n\n\n<p>I want these sections and these controls to be extensible. I want someone to be able to override stuff. I want someone to be able to add new things to them. I want to add something ahead of it or after it. I don&#8217;t want to have to know any JavaScript to be able to do the bare minimum for basic controls.</p>\n\n\n\n<p>You can still, with the Fields API even, you could still at that point do all the JavaScript or React stuff you want to build up your own custom controls, and the ways that you want them to display, and special handling for how to work with the blocks and all that. But really the bare minimum ought to be the way that we lower the bar towards developers, new people, new developers.</p>\n\n\n\n<p>But especially at this point, PHP is not getting the love it needs as an API source for WordPress, especially with a block editor. We need to expand that. I think there&#8217;s so much potential.</p>\n\n\n\n<p>[00:35:27] <strong>Nathan Wrigley:</strong> Given everything that you&#8217;ve just said, and we&#8217;ve now got a real nice full round picture of what it is that you&#8217;re trying to achieve, are there any significant roadblocks? I mean obviously hours and coding, the amount of time that it&#8217;s going to take you to do all these things, and the amount of people who jump on board the project, that&#8217;s a given. Are there any technical obstacles that are in the way that you foresee being problematic?</p>\n\n\n\n<p>[00:35:52] <strong>Scott Kingsley Clark:</strong> So before, when we built all this stuff in the earlier versions, and I just read, we actually started working on the kind of Fields API idea in 2013. That&#8217;s even earlier than I remember. That was back in Freenode, Freenode IRC stuff.</p>\n\n\n\n<p>I think one of the challenges was when we built all the different screens we had to modify WordPress Core files and override them. And as new versions of WordPress would be released we&#8217;d have to merge those changes into ours. It&#8217;s a headache to keep it up, and keep it updated for every release. And for even maintenance releases to make sure that you&#8217;re not breaking something that was changed or fixed inside of WordPress release, and having it so that my prototype should always work with latest WordPress.</p>\n\n\n\n<p>Well that&#8217;s difficult because latest WordPress is always changing. I think that&#8217;s the challenge is trying to focus not on, like we did before, we had posts, we had terms, we had settings, we had users, we had comments, we had media, we had the customizer. All those different areas were covered.</p>\n\n\n\n<p>We already had those things covered inside of the Fields API code we had before. You could use the Fields API actively to add things to those screens. But that was a lot. That was a lot to deal with. So if we focus on settings, that&#8217;s why I&#8217;m hoping this reduced focus on setting screens will reduce the amount of pain we have to deal with. Because when we&#8217;re merging things we only have to worry about just those settings screens that we&#8217;re overriding for WordPress Core. That&#8217;s it. And we don&#8217;t have to worry about all the different screens and all the different files that we&#8217;ve been overriding.</p>\n\n\n\n<p>[00:37:16] <strong>Nathan Wrigley:</strong> Yeah thank you for that. I mean obviously you would be very warmly welcoming anybody who has listened to this and is intrigued by what you&#8217;ve said and thinks, okay I&#8217;ve got some technical expertise that I could apply to this project. If that&#8217;s the case, where are you hanging out most with this? I&#8217;m guessing the Slack channel is probably a good place to start. But maybe there&#8217;s some other places too.</p>\n\n\n\n<p>[00:37:39] <strong>Scott Kingsley Clark:</strong> I really deeply would love to have more contributors. Anyone who can think about things in different points of view for how a Fields API should be built. Things like someone who&#8217;s involved with other plugins that do this type of thing. It&#8217;s a big plus if you&#8217;ve built a Fields API yourself for one of these plugins.</p>\n\n\n\n<p>It&#8217;s also a big thing to think about you know just someone who&#8217;s not been building those things but maybe someone coming from outside of WordPress, or someone with heavier PHP structure experience. How do we structure the Fields API? And how is that going to look?</p>\n\n\n\n<p>There&#8217;s also plenty of room for people who can help write tutorials, or help us write. I think one of my big deficiencies is having time to write up all the great text that we&#8217;re going to need for make.wordpress.org core posts about how do we describe what we&#8217;re building here, and get people involved and excited?</p>\n\n\n\n<p>What is the proposal going to look like? And how do we lay this out nicely? And those types of things would be also very helpful to have. And you can find all of our efforts inside of Slack right now. So if you go into the WordPress Slack you&#8217;ll find us in the core dash fields channel.</p>\n\n\n\n<p>We also have a GitHub that has been totally revamped from the old ones. We now have two different archive repos from the past versions that we had. And now we have this third repo that we&#8217;re using that is refreshed and ready to go. It already has some more research already in it and we&#8217;re going to start working from that repo now.</p>\n\n\n\n<p>[00:39:03] <strong>Nathan Wrigley:</strong> That&#8217;s perfect. I will make sure to link to those in the show notes. Everything that you&#8217;ve mentioned I&#8217;ll make sure that it gets a link. But it sounds like not just technical people. There&#8217;s also room for people who have skills in, I don&#8217;t know, documentation or something that you&#8217;ve described. So the door is wide open. This feels like really important work. It would be lovely to get this over the wire. To get some more buy in, and more thoughts from different community members.</p>\n\n\n\n<p>So yeah we&#8217;ll round it off there. Scott Kingsley Clark. Thank you so much for chatting to me today. I wish you all the best in getting this into Core in the, well, let&#8217;s say near future.</p>\n\n\n\n<p>[00:39:35] <strong>Scott Kingsley Clark:</strong> I really appreciate you including me and this project in your efforts here to get the word out. I can&#8217;t say how much I&#8217;m excited. I&#8217;m just extremely excited to get this finally pushed up and hopefully emerged into Core. And I am working my behind off this entire month, just to make sure that we can try to get that traction and get it across that finish line.</p>\n\n\n\n<p>[00:39:58] <strong>Nathan Wrigley:</strong> Well very much appreciated, because everything that you do and achieve will certainly make our WordPress lives a lot better. So thank you, Scott. I really appreciate it.</p>\n\n\n\n<p>[00:40:07] <strong>Scott Kingsley Clark:</strong> No problem.</p>\n</div>\n\n\n\n<p>On the podcast today we have <a href=\"https://www.scottkclark.com/\">Scott Kingsley Clark</a>.</p>\n\n\n\n<p>Scott is a WordPress developer who has been working with WordPress since 2007. He is well-known for his work on the <a href=\"https://pods.io/\">Pods Framework</a>, a popular content and custom fields plugin. Scott&#8217;s goal is to find ways to enhance the WordPress experience, particularly in terms of working with different types of data. He is currently involved in the WordPress Fields API project, which aims to provide a better solution for developers looking to wrangle their data, and that is the focus of the podcast today. As you’ll hear Scott is determined to contribute to the continual growth and improvement of WordPress and try to make the Fields API a reality.</p>\n\n\n\n<p>Scott came from a background using Drupal, which is an alternative CMS. When he first ventured into WordPress, he found certain features were lacking. Things which were baked into Drupal Core were not available in WordPress, a notable example being custom fields.</p>\n\n\n\n<p>We know that WordPress has a myriad of plugins which can take on the burden of creating custom fields, but Scott has concerns about the interoperability of these plugins, and he wants to create a more solid structure within WordPress itself. Wouldn’t it be nice if there were ways for developers to create custom field plugins so that you weren’t locked into one or the other? Scott imagines a future in which you could move from ACF, Metabox, Toolset and more; a future built on top of the Fields API.</p>\n\n\n\n<p>Throughout the conversation, Scott talks about his passion for incorporating the block editor, React, and other technologies into WordPress. He shares insights on controlling block settings, making them extensible through PHP.</p>\n\n\n\n<p>You might know Scott from his work on the popular Pods Framework plugin. This plugin allows users to create custom content types and fields in WordPress, and certainly speaks to his credentials in trying to push the Fields API project forward.</p>\n\n\n\n<p>We talk about what the Fields API might become. The aim is to simplify the process of working with custom fields and content types in WordPress. With the Fields API, Scott hopes to unify the different methods and APIs for managing custom fields, making it easier for developers and non-developers alike to add fields to different screens within WordPress. It’s a complicated undertaking and we get into some of the areas of WordPress which might benefit from this work.</p>\n\n\n\n<p>Scott sheds light on the challenges faced during the development of Fields API, the need for shared storage standards among plugins, and the potential for better integration with the WordPress Admin UI.&nbsp;</p>\n\n\n\n<p>Towards the end of the podcast we talk about the future of the Fields API project and how gaining support from people in the WordPress community will be crucial to its success.</p>\n\n\n\n<p>If you’re interested in how WordPress can be used as a fully featured CMS, this podcast is for you.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Useful links.</h2>\n\n\n\n<p><a href=\"https://pods.io/\">Pods Framework</a></p>\n\n\n\n<p><a href=\"https://developer.wordpress.org/rest-api/\">REST API documentation</a></p>\n\n\n\n<p><a href=\"https://docs.google.com/spreadsheets/d/1mSqienVYxLopTFGLPK0lGCJst2knKzXDtLQRgwjeBN8/edit#gid=3\">Compare WP &#8211; Plugin Comparison &#8211; Content Types / Custom Fields</a></p>\n\n\n\n<p><a href=\"https://communitysummit.wordcamp.org/2023/\">WordPress Community Summit 2023</a></p>\n\n\n\n<p><a href=\"https://wordpress.org/plugins/advanced-custom-fields/\">ACF</a></p>\n\n\n\n<p><a href=\"https://wordpress.org/plugins/meta-box/\">Meta Box</a></p>\n\n\n\n<p><a href=\"https://toolset.com/\">Toolset</a></p>\n\n\n\n<p><a href=\"https://wordpress.org/plugins/custom-post-type-ui/\">Custom Post Type UI</a></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 06 Sep 2023 15:10:32 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Nathan Wrigley\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:3;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:62:\"Akismet: 25 Ways to Increase Your Online Form Conversion Rates\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://akismet.com/?p=236608\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:46:\"https://akismet.com/blog/form-conversion-rate/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:23836:\"<p>Running a successful website is no small feat. It requires a great deal of hard work, dedication, and knowledge from a team of experts all working symbiotically toward a common goal. There are so many different aspects to consider — from designing the perfect user experience to maintaining an effective web hosting infrastructure.</p>\n\n\n\n<p>But one of the most critical aspects that can make or break success is the conversion rate of your forms. Your form conversion rate is the percentage of visitors who successfully complete a form on your website. The higher this rate, the more successful your site will be at generating new leads, sales, and other desired outcomes.</p>\n\n\n\n<p>Whether it&#8217;s a contact form, a <a href=\"https://akismet.com/blog/how-to-enable-or-disable-user-registration-in-wordpress/\">sign-up form</a>, or a checkout form, the ease and convenience of these for users directly impact business.&nbsp;</p>\n\n\n\n<p>That&#8217;s why, today, we&#8217;ll explore 25 ways to increase your online form conversion rates and, in turn, boost the effectiveness of your website.</p>\n\n\n\n<span id=\"more-236608\"></span>\n\n\n\n<h2 class=\"wp-block-heading\">1. Keep forms short and simple</h2>\n\n\n\n<p>The first rule of thumb, when it comes to increasing your form conversion rate, is to keep your forms short and simple. The less time and effort it takes for a user to complete a form, the more likely they are to do so.</p>\n\n\n\n<p>According to the <a href=\"https://contentsquare.com/insights/digital-experience-benchmark/\">Contentsquare 2023 Digital Experience Benchmark report</a>, the average internet user spends less than 5.6 minutes on a website they&#8217;re actively engaged with. Think reading a blog post or trying to make a purchase.&nbsp;</p>\n\n\n\n<p>At first glance, that seems like a decent amount of time, but when you consider session duration has <a href=\"https://contentsquare.com/blog/average-time-spent-on-websites-is-dropping/\">decreased by 7.5%</a> since 2021, it&#8217;s clear that user behavior indicates less patience.</p>\n\n\n\n<p>And that&#8217;s not a lot of time to capture their attention and get them to fill out a form. By keeping your forms short and straightforward, you&#8217;re making it as easy as possible for users to engage with your site and, ultimately, convert.</p>\n\n\n\n<img src=\"https://akismet455732288.files.wordpress.com/2023/08/image4.png\" alt=\"example of email list signup for WooCommerce\" class=\"wp-image-236610\" />\n\n\n\n<p>Consider only asking for the most essential information. If you&#8217;re collecting leads from potential event sponsors, you really only need the representative&#8217;s name and email. Your sales team may also want you to ask for a phone number, company name, and budget information, but each of these questions will reduce the number of top-of-funnel submissions you receive. So, you’ll have to consider this balance and optimize your forms accordingly.</p>\n\n\n\n<h2 class=\"wp-block-heading\">2. Place your forms above the fold</h2>\n\n\n\n<p>&#8220;Above the fold&#8221; is a term borrowed from the newspaper industry that refers to the upper half of the front page. The term &#8220;above the fold&#8221; in web design is the part of a webpage that’s visible without the need to scroll. Placing your lead generation forms above the fold on their landing page makes them immediately visible to visitors, increasing the likelihood that they&#8217;ll be filled out.</p>\n\n\n\n<p>A <a href=\"https://www.nngroup.com/articles/scrolling-and-attention/\" target=\"_blank\" rel=\"noreferrer noopener\">study by Nielsen Norman Group</a> found that user attention drops dramatically below the fold. By placing your form above, you&#8217;re ensuring that it&#8217;s one of the first things a user sees when they land on your page.</p>\n\n\n\n<p>The goal is to make it as easy as possible for people to convert. By strategically placing your web forms, you&#8217;re removing one more barrier between the user and a conversion.</p>\n\n\n\n<h2 class=\"wp-block-heading\">3. Limit the use of CAPTCHAs</h2>\n\n\n\n<p>CAPTCHAs, those little tests that ask you to identify traffic lights or crosswalks in a series of images, are a common method of <a href=\"https://akismet.com/blog/how-to-stop-user-spam-registrations-in-wordpress/\">preventing spam</a>. However, they can also be a significant barrier to web form completion.</p>\n\n\n\n<img src=\"https://akismet455732288.files.wordpress.com/2023/08/image10.png\" alt=\"example of a CAPTCHA with red spheres\" class=\"wp-image-236611\" />\n\n\n\n<p>CAPTCHAs can be frustrating and time-consuming for users, especially if they&#8217;re difficult to solve. And they can also pose accessibility issues for those with impairments. While CAPTCHAs <a href=\"https://akismet.com/blog/do-captcha-and-recaptcha-protect-wordpress-sites-from-bots/\">can be effective at preventing bots from submitting forms</a>, they can also deter legitimate users.</p>\n\n\n\n<p>Instead of relying on CAPTCHAs, consider other methods of spam prevention that are less intrusive and more user-friendly…</p>\n\n\n\n<h2 class=\"wp-block-heading\">4. Use non-intrusive spam protection</h2>\n\n\n\n<p>Non-intrusive spam protection methods can be a great alternative to CAPTCHAs. These methods work behind the scenes to prevent spam without disrupting the user&#8217;s experience.</p>\n\n\n\n<p>For example, the <a href=\"https://akismet.com/features/\">Akismet anti-spam plugin</a> for WordPress sites offers powerful spam protection without the need for CAPTCHAs. It automatically checks and filters out <a href=\"https://akismet.com/blog/how-to-stop-contact-form-spam-on-wordpress/\">spam submissions</a>, allowing you to focus on managing your site.</p>\n\n\n\n<img src=\"https://akismet455732288.files.wordpress.com/2023/08/image1.png\" alt=\"Akismet homepage\" class=\"wp-image-236612\" />\n\n\n\n<p>Through prioritizing non-intrusive spam protection methods, you can improve the user experience and accessibility of your forms, leading to higher conversion rates.</p>\n\n\n\n<h2 class=\"wp-block-heading\">5. Group related fields together</h2>\n\n\n\n<p>Organization is key when it comes to designing user-friendly forms. Grouping related fields together can make your forms easier to navigate and understand, leading to higher completion rates.</p>\n\n\n\n<p>You might wish to group contact information fields (like name, email, and phone number) together, separate from billing information fields (like credit card number, expiration date, and CVV).</p>\n\n\n\n<p>This not only makes your form more visually organized, but it also helps users understand what kind of information is expected in each section.</p>\n\n\n\n<h2 class=\"wp-block-heading\">6. Use clear and descriptive field labels</h2>\n\n\n\n<p>Clear and descriptive field labels are crucial for ensuring that people know exactly what information they need to provide. Ambiguous or confusing labels can lead to errors, frustration, and ultimately, form abandonment.</p>\n\n\n\n<p>For instance, if you&#8217;re asking for a user&#8217;s phone number, specify whether it&#8217;s a home, work, or mobile number.</p>\n\n\n\n<p>If you&#8217;re asking for a date, indicate the format you want it in (e.g., MM/DD/YYYY).</p>\n\n\n\n<img src=\"https://akismet455732288.files.wordpress.com/2023/08/image3.png\" alt=\"name, email, and date fields grouped together\" class=\"wp-image-236613\" />\n\n\n\n<p>The goal is to make it as easy as possible for users to complete your form. Clear, descriptive labels go a long way towards achieving this and improving your form conversions.</p>\n\n\n\n<h2 class=\"wp-block-heading\">7. Optimize for mobile devices</h2>\n\n\n\n<p>With more than <a href=\"https://www.statista.com/statistics/277125/share-of-website-traffic-coming-from-mobile-devices/\" target=\"_blank\" rel=\"noreferrer noopener\">half of all web traffic</a> now coming from mobile devices, it&#8217;s more important than ever to ensure your forms are mobile-friendly.</p>\n\n\n\n<p>This means performing a series of form optimization tasks, including:</p>\n\n\n\n<ul>\n<li>Making sure your web forms are fully responsive and easy to navigate on smaller screens</li>\n\n\n\n<li>Ensuring fields are large enough to tap</li>\n\n\n\n<li>Making it easy for users to switch between fields</li>\n\n\n\n<li>Avoiding the use of elements that don&#8217;t work well on mobile, like hover tooltips.</li>\n</ul>\n\n\n\n<p>Mobile users are on the go, so they are even less patient than desktop users. By optimizing your forms for mobile, you can make it easier for users to convert and boost your conversion rate.</p>\n\n\n\n<h2 class=\"wp-block-heading\">8. Use progress indicators</h2>\n\n\n\n<p>If your form is long or divided into multiple sections, using progress indicators can be a great way to keep site visitors engaged. Progress indicators show people how far they&#8217;ve come and how much further they have to go to complete the form.</p>\n\n\n\n<img src=\"https://akismet455732288.files.wordpress.com/2023/08/image6.png\" alt=\"form with a progress bar\" class=\"wp-image-236614\" />\n\n\n\n<p>This can be particularly useful for complex forms, like multistep checkout processes or lengthy surveys. When you show users their progress, you&#8217;re giving them a sense of accomplishment and encouraging them to go all the way.</p>\n\n\n\n<h2 class=\"wp-block-heading\">9. Use autofill and auto-suggest features</h2>\n\n\n\n<p>Autofill and auto-suggest features can significantly speed up the form completion process and improve the user experience. These features automatically populate fields with relevant information, saving users time and effort.</p>\n\n\n\n<p>For example, an autofill feature might populate a user&#8217;s address based on their IP location, while an auto-suggest feature might suggest relevant options as someone begins typing into a field.</p>\n\n\n\n<p>When you reduce the amount of typing and decision-making required, these features can make your forms quicker and easier to complete, leading to higher conversion rates.</p>\n\n\n\n<h2 class=\"wp-block-heading\">10. Use inline validation</h2>\n\n\n\n<p>Inline validation involves checking each field for errors as the user fills out the form, rather than waiting until they hit the &#8220;submit&#8221; button. If a user makes a mistake, they&#8217;re immediately alerted and can correct the error on the spot.</p>\n\n\n\n<p>This can prevent frustration and confusion that can occur when a user completes a form, only to be told they&#8217;ve made multiple errors. It also helps users learn as they go, improving the overall experience.</p>\n\n\n\n<h2 class=\"wp-block-heading\">11. Use conditional logic</h2>\n\n\n\n<p>Conditional logic, also known as &#8220;if-this-then-that&#8221; logic, can make your forms more interactive and user-friendly. It involves showing or hiding fields based on the user&#8217;s previous responses.</p>\n\n\n\n<p>So, if someone indicates that they&#8217;re from the United States, you might show a field asking for their state. If they indicate they&#8217;re from another country, that field would be hidden.</p>\n\n\n\n<p>By tailoring your form to each user&#8217;s responses, you can make the form-filling process more relevant and less overwhelming, leading to higher conversion rates.</p>\n\n\n\n<h2 class=\"wp-block-heading\">12. Limit the use of mandatory fields</h2>\n\n\n\n<p>While it&#8217;s important to gather as much relevant information as possible, too many form fields can deter people from completing your form. Try to make fewer form fields mandatory and only require the most essential information.</p>\n\n\n\n<p>If a field isn&#8217;t absolutely necessary, consider making it optional. Users who are in a hurry or who value their privacy will appreciate the option to skip non-essential fields.</p>\n\n\n\n<h2 class=\"wp-block-heading\">13. Use smart defaults</h2>\n\n\n\n<p>Smart defaults involve pre-populating form fields with the most likely response. This can save users time and effort, making your form quicker and easier to complete.</p>\n\n\n\n<p>For example, if most of your site visitors are from the United States, you might set &#8220;United States&#8221; as the default option in the &#8220;Country&#8221; field. Users from other countries can still select their country from the dropdown menu, but U.S. users won&#8217;t have to.</p>\n\n\n\n<h2 class=\"wp-block-heading\">14. Break long forms into multiple pages</h2>\n\n\n\n<p>Long forms can be overwhelming and may deter users from starting. By breaking these forms into smaller, more manageable steps, you can make the form-filling process less daunting and more user-friendly.</p>\n\n\n\n<img src=\"https://akismet455732288.files.wordpress.com/2023/08/image2.png\" alt=\"Page 2 of a multi-step form\" class=\"wp-image-236615\" />\n\n\n\n<p>Multipage forms also give users a sense of progress, which can motivate them to complete the form. Just remember to include a progress indicator, as we already mentioned, so users know how far they&#8217;ve come and how much further they have to go.</p>\n\n\n\n<h2 class=\"wp-block-heading\">15. Ensure accessibility for all users</h2>\n\n\n\n<p>Accessibility should be a priority when designing your forms. This means ensuring that all users, including those with impairments or disabilities, can easily navigate and complete your web forms.</p>\n\n\n\n<p>This might involve using larger text sizes, providing alternative text for images, and ensuring your forms are compatible with screen readers. The <a href=\"https://www.w3.org/WAI/standards-guidelines/wcag/\">Web Content Accessibility Guidelines (WCAG)</a> offers all the details about making web content more accessible.</p>\n\n\n\n<img src=\"https://akismet455732288.files.wordpress.com/2023/08/image5.png\" alt=\"W3C homepage\" class=\"wp-image-236616\" />\n\n\n\n<p>By making your forms accessible, you&#8217;re not only complying with legal requirements and ethical best practices, but you&#8217;re also expanding your user base and increasing your potential conversion rates.</p>\n\n\n\n<h2 class=\"wp-block-heading\">16. Use contrasting colors and clear typography</h2>\n\n\n\n<p>The design of your forms can have a significant impact on their usability and, consequently, your conversion rates. Using contrasting colors can make your forms more visually appealing and easier to read.</p>\n\n\n\n<p>Similarly, clear typography can improve readability and reduce the likelihood of errors. Choose fonts that are easy to read and large enough to be seen on all devices.</p>\n\n\n\n<h2 class=\"wp-block-heading\">17. Eliminate unnecessary distractions</h2>\n\n\n\n<p>When a user is filling out a form, you want their focus to be on the form and nothing else. This means eliminating any unnecessary distractions, like pop-ups, excessive text, or irrelevant images.</p>\n\n\n\n<p>The simpler and more focused your form page is, the more likely people are to complete the form. Remember, the goal is to make it as easy as possible for users to convert.</p>\n\n\n\n<h2 class=\"wp-block-heading\">18. Display trust signals and social proof</h2>\n\n\n\n<p>Trust signals and social proof can significantly increase your form conversion rates by building trust with your potential customers and site visitors. This might involve displaying security badges, testimonials, or the number of satisfied customers you have.</p>\n\n\n\n<p>For example, if you&#8217;re asking for sensitive information like credit card details, displaying a security badge can reassure users that their information will be safe.</p>\n\n\n\n<p>Similarly, testimonials can show people that others have had positive experiences with your company.</p>\n\n\n\n<p>On the Akismet homepage, there’s a prominent display of how many pieces of spam have been blocked, how many websites have been protected, and the spam detection accuracy.</p>\n\n\n\n<img src=\"https://akismet455732288.files.wordpress.com/2023/08/image9.png\" alt=\"amount of spam blocked by Akismet\" class=\"wp-image-236617\" />\n\n\n\n<h2 class=\"wp-block-heading\">19. Clearly state your privacy policy</h2>\n\n\n\n<p>In an era where data privacy is a major concern, you need to clearly state your privacy policy on your forms. Let visitors know exactly how their information will be used and stored. This transparency can build trust and increase the likelihood of people completing your form.</p>\n\n\n\n<p>Consider adding a link to your full privacy policy for those who want more detailed information. Also, reassure users that their information will not be shared with third parties without their consent.</p>\n\n\n\n<h2 class=\"wp-block-heading\">20. Provide instructions and help text</h2>\n\n\n\n<p>While your form should be intuitive and easy to understand, providing additional instructions and help text can guide users through the process and prevent errors. This can be particularly useful for complex fields that require specific formats or information.</p>\n\n\n\n<p>Help text should be concise and clearly visible, ideally placed directly under the field it refers to. Providing this extra guidance can improve the user experience and increase form completion rates.</p>\n\n\n\n<h2 class=\"wp-block-heading\">21. Offer live chat assistance</h2>\n\n\n\n<p>Offering live chat assistance can provide immediate help to users who are having trouble with your form. This real-time support can resolve issues quickly, preventing them from abandoning the form out of frustration.</p>\n\n\n\n<p>Live chat can also provide valuable insights into common issues or obstacles, allowing you to continually improve your form based on feedback.</p>\n\n\n\n<h2 class=\"wp-block-heading\">22. Use action-oriented submit buttons</h2>\n\n\n\n<p>The text on your submit button can influence whether users complete your form. Just as you work to refine your call to action copy in other areas, you should pay careful attention to the language used on form buttons. Instead of using a generic term like &#8220;Submit,&#8221; consider a more action-oriented and specific term that tells users what they&#8217;re accomplishing by clicking the button.</p>\n\n\n\n<p>For instance, if your form is for a newsletter sign-up, your button call to action might say &#8220;Join our community.&#8221;&nbsp;</p>\n\n\n\n<p>Or, if it&#8217;s a purchase form, it might say &#8220;Complete my purchase.&#8221; This small tweak can make your form more engaging and motivate users to take action.</p>\n\n\n\n<p>Another example is on the Akismet checkout form, which confirms how much a customer will pay:</p>\n\n\n\n<img src=\"https://akismet455732288.files.wordpress.com/2023/08/image7.png\" alt=\"Akismet checkout form\" class=\"wp-image-236618\" />\n\n\n\n<h2 class=\"wp-block-heading\">23. Make your buttons stand out</h2>\n\n\n\n<p>The design of your submit button can significantly increase conversions on your forms. Your button should stand out from the rest of the form, making it clear where someone needs to click to submit the form.</p>\n\n\n\n<p>Consider using a contrasting color for your button and placing it in a prominent location. The size of the button also matters — it should be large enough to be easily tapped on a mobile device, but not so large that it overwhelms the rest of the form.</p>\n\n\n\n<h2 class=\"wp-block-heading\">24. Use friendly and descriptive error messages</h2>\n\n\n\n<p>Error messages matter a great deal in form design as well. They guide users in correcting mistakes, but if they&#8217;re not handled well, they can frustrate users and lead to form abandonment.</p>\n\n\n\n<p>Ensure that your error messages are friendly, descriptive, and helpful. Instead of simply saying &#8220;Invalid input,&#8221; explain what the error is and how to fix it.</p>\n\n\n\n<p>For example, &#8220;The email address you entered is not in the correct format. Please enter a valid email address.&#8221;</p>\n\n\n\n<h2 class=\"wp-block-heading\">25. A/B test form elements</h2>\n\n\n\n<p>Finally, one of the most effective ways to increase your form conversion rates is to continually test and optimize your forms. A/B testing involves creating two versions of your form, each with a different element, and seeing which one performs better.</p>\n\n\n\n<p>You can A/B test almost any aspect of your form, from the color of your submission button to the wording of your field labels. There are several WordPress plugins that can help you A/B test your forms easily, like <a href=\"https://wordpress.org/plugins/nelio-ab-testing/\" target=\"_blank\" rel=\"noreferrer noopener\">Nelio A/B Testing</a>.</p>\n\n\n\n<img src=\"https://akismet455732288.files.wordpress.com/2023/08/image8.png\" alt=\"Nelio Testing homepage\" class=\"wp-image-236619\" />\n\n\n\n<h2 class=\"wp-block-heading\">Increase your online form conversion rate with careful planning</h2>\n\n\n\n<p>Increasing the conversion rates of your sign up form, lead generation forms or other web forms is a multifaceted process that involves thoughtful design, user-friendly features, and continuous optimization. By implementing the strategies discussed in this article, you can create a web form that not only provides a seamless user experience but also effectively drives conversions.</p>\n\n\n\n<p>One key aspect of this process is ensuring your forms are protected from spam in a non-intrusive way. That&#8217;s where Akismet has a role to play. With its robust, <a href=\"https://akismet.com/pricing/\">conversion-friendly spam protection</a>, Akismet allows you to maintain the integrity of your forms and protect the user experience — without the need for CAPTCHA.</p>\n\n\n\n<p>So, as you work on optimizing all the forms on your site, consider Akismet as your partner in creating a more secure, user-friendly, and conversion-optimized form experience.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Frequently asked questions</h2>\n\n\n\n<p>Let&#8217;s now turn our attention to some frequently asked questions about form design and conversion rate optimization.</p>\n\n\n\n<h3 class=\"wp-block-heading\">1. How do I decide which form fields are essential and which can be removed?</h3>\n\n\n\n<p>Deciding which form fields are essential depends on the purpose of your web form. While it’s best to limit required fields, If it&#8217;s a contact form conversion rate you’re working on, for example, you&#8217;ll likely still need fields for the user&#8217;s name, email address, and message .</p>\n\n\n\n<p>Any additional fields should be carefully considered. Ask yourself if the information is necessary to achieve the purpose of the form. If not, it might be best to remove the field to keep the form short and simple.</p>\n\n\n\n<h3 class=\"wp-block-heading\">2. Why should I avoid using CAPTCHA on my contact forms?</h3>\n\n\n\n<p>While CAPTCHA can be effective at preventing spam, it can also deter legitimate users. CAPTCHAs can be frustrating and time-consuming, especially if they&#8217;re difficult to solve. They can also pose accessibility issues for users with impairments. Instead, consider using non-intrusive spam protection methods, like Akismet, that provide a better user experience.</p>\n\n\n\n<h3 class=\"wp-block-heading\">3. What is Akismet, and how can it help with form conversion rates?</h3>\n\n\n\n<p><a href=\"https://akismet.com/\">Akismet</a> is an anti-spam plugin for WordPress sites. It automatically checks and filters out spam comments, allowing you to focus on managing your site. By preventing spam without the need for CAPTCHAs or other intrusive methods, Akismet can improve the user experience and increase form conversion rates.</p>\n\n\n\n<h3 class=\"wp-block-heading\">4. What types of companies generally use Akismet?</h3>\n\n\n\n<p>Akismet is used by a wide range of companies, from small businesses to <a href=\"https://akismet.com/enterprise/\">large enterprises</a>. It&#8217;s particularly popular among companies that rely heavily on their online presence, such as ecommerce businesses and content creators.&nbsp;</p>\n\n\n\n<p>With over 100 million sites using Akismet, it&#8217;s clear that this tool is trusted by many. Notable enterprise brands such as Microsoft, <a href=\"https://akismet.com/blog/convertkit-customerstory/\">ConvertKit</a>, and Bluehost rely on Akismet to protect their sites from spam and improve their user experience.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 06 Sep 2023 13:00:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"Kathryn Marr\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:4;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:71:\"Do The Woo Community: Live From WCUS, It’s the Robbie and Robert Show\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"https://dothewoo.io/?p=76369\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:66:\"https://dothewoo.io/live-from-wcus-its-the-robbie-and-robert-show/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:416:\"<p>It\'s filled with laughs, insights and simply good times when co-hosts Robbie and Robert take over the mics at WCUS 2023.</p>\n<p>&gt;&gt; The post <a rel=\"nofollow\" href=\"https://dothewoo.io/live-from-wcus-its-the-robbie-and-robert-show/\">Live From WCUS, It&#8217;s the Robbie and Robert Show</a> appeared first on <a rel=\"nofollow\" href=\"https://dothewoo.io\">Do the Woo - a WooCommerce Builder Community</a>	.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 06 Sep 2023 13:00:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"BobWP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:5;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:41:\"HeroPress: WordPress Is My Ball And Chain\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://heropress.com/?post_type=heropress-essays&p=5792\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:134:\"https://heropress.com/essays/wordpress-is-my-ball-and-chain/#utm_source=rss&utm_medium=rss&utm_campaign=wordpress-is-my-ball-and-chain\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:9056:\"<img width=\"1024\" height=\"512\" src=\"https://heropress.com/wp-content/uploads/2023/09/essay-cover-1024x512.jpg\" class=\"attachment-large size-large wp-post-image\" alt=\"WordPress, and its inclusive community, led me down a path of redemption and acceptance.\" />\nHere is Justin&#8217;s story read aloud by artificial intelligence.\n\n\n\n\n\n\n<p>This month marks the 22nd anniversary of the terrorist attacked on the World Trade Center in the United States. I can still remember exactly where I was that morning, as I had an argument with my girlfriend the night before, and was sleeping on the couch of someone with whom I used drugs.</p>\n\n\n\n<p>It had only been four months since graduating high school, but I was already an addict. As a matter of fact, I was using drugs heavily at the end of my senior year, and the first summer after high school is when my life really started to spiral out of control.</p>\n\n\n\n<p>By the end of 2001 I was selling any drug I could get my hands on to make some money and feed my addiction (except heroin — that is always were I drew the line). Within a couple years I was the goto person for many substances, but primarily methamphetamine.</p>\n\n\n\n<p>Then I got caught, arrested, and thrown in jail. The prosecutor wanted to throw the book at me, recommending a 15 year sentence. But with my family supporting me in the courtroom and my lawyer fighting for me, the judge recognized that with this support, I did not deserve the full 15, and gave me 7 years, with 8 years probation instead. With good behavior, I did just under 3 years in prison.</p>\n\n\n\n<p>While in prison, I focused on my restoration. Learning new things, studying for certification in motor vehicle mechanics, and even starting work with accredited college courses funded by my tribe (Comanche Nation).</p>\n\n\n\n<blockquote class=\"wp-block-quote\">\n<p> I knew I had let down my family, and had something to prove.</p>\n</blockquote>\n\n\n\n<p>Through it all, my addiction, prison, and restoration, my family was always there for me. They knew the real me, not the person addicted to drugs and not the dealer feeding his addiction by providing for other addicts. That’s the person I know I needed to be again, for both myself and for them.</p>\n\n\n\n<p>Right after my release in January 2008, I immediately started working in a warehouse and attending college. At the company where I worked, the CEO gave me some excellent advice that I needed to control my narrative on the web (e.g. Google), so I built my first website using WordPress.</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-pivoting\">Pivoting</h2>\n\n\n\n<p>At a young age, I was always fascinated by technology. I remember dabbling with computers in grade school, and tinkering on the internet in my teens. While I never did any kind of coding back then, the marketing aspect of web technologies did pique my interest. Then, drugs pulled me away from all that and sent me down a different path.</p>\n\n\n\n<p>When I found WordPress around April of 2008, all of that excitement started to come back. I would work my warehouse job during the day, drive to University of Central Oklahoma in the evening for a couple of college courses, then play around with WordPress themes (HTML, CSS, and some PHP) well into the night all that summer. </p>\n\n\n\n<blockquote class=\"wp-block-quote\">\n<p>This was the beginning of my love for WordPress. I was instantly addicted, and simply could not put down my computer, often getting little sleep before the next day (that’s okay, I was in my early 20s <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f609.png\" alt=\"?\" class=\"wp-smiley\" /> ).</p>\n</blockquote>\n\n\n\n<p>By late 2010, I was taking on WordPress side projects, building websites, and even making online tutorials about WordPress. All this despite still working in the warehouse and taking night courses at college.</p>\n\n\n\n<p>In 2011, my work caught the eye of <a href=\"https://corymiller.com/\">Cory Miller</a>, who I had previously met at a marketing event in Oklahoma City. Cory owned and operated <a href=\"https://ithemes.com/\">iThemes</a>, a WordPress theme and plugin product company based out of Edmond Oklahoma. Although I was still working in the warehouse and taking college courses, Cory offered me a job working at iThemes as a web developer for WordPress themes and plugins. My major in college was marketing, and I still has a few more courses to complete before graduating, but I took the offer anyway and little did I know it was the beginning of a career in software development that led me where I am today.</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-and-then-wordcamp\">And Then WordCamp&#8230;</h2>\n\n\n\n<p>My first WordCamp to both attend and speak was Fayetteville in 2011. That’s actually when I first met <a href=\"https://josepha.blog/\">Josepha Haden Chomphosy</a> (along with her <a href=\"https://heropress.com/essays/wordpress-tool-success/\">mother</a> and sister too). Of course, we went different ways in life but it is a marker that I like to remember as it helps me understand the different paths each of us take in this world. While I only spoke at a few other WordCamps, I attended many more over the years. The WordPress community, and its inclusiveness, was simply impossible for me to ignore.</p>\n\n\n\n<blockquote class=\"wp-block-quote\">\n<p>I know my experiences are different, and to understand this I also have to mention that I joined a few other communities through the years, but none ever fully accepted me, and one even did not let me keep coming when they found out I was a former convict.</p>\n</blockquote>\n\n\n\n<p>Although most people in the WordPress community never knew about my past, I never felt they would kick me out even if they did find out. Actually, I felt the community leaders honestly didn’t care at all about your past, culture, identity, etc., but rather just wanted you to love (or at least like) WordPress.</p>\n\n\n\n<p>And I did love WordPress. Still do.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Redemption and Acceptance</h2>\n\n\n\n<p>WordPress unexpectedly led me down a path of redemption and acceptance. For a long time I was angry at the world (especially corporate America) for not accepting me, and in those times of anger I would seek out WordPress people. No one even knew, but they were helping me nonetheless, always there when I needed, always a shiny light in the darkness.</p>\n\n\n\n<p>I’ve traveled the world with WordPress. Making WordPress friends in Asia, Australia, Europe, North &amp; South America and beyond. I love the WordPress community, and want to continue watching it flourish and grow. Every time I visit a WordCamp, I get to make new friends, see new faces, and meet awesome people of WordPress. I was able to build meaningful business and personal relationships, joining WordPress communities, attending and hosting WordPress events, and even speaking at several WordCamps across the World.</p>\n\n\n\n<p>Most of the WordPress companies for which I have worked had such amazing leaders, knowing about my past yet still giving me the opportunity to continue to demonstrate my new self. Two of which deserve an honorable mention: Cory Miller of Post Status (formerly iThemes) and <a href=\"https://10up.com/blog/author/10up/\">Jake Goldman</a> of <a href=\"https://10up.com/\">10up</a>. Both of these leaders embraced me wholly, and the things Jake said to when I mentioned my criminal past before my background check continue to give me confidence in knowing there are amazing leaders working in WordPress.</p>\n\n\n\n<p>The WordPress Community has proven itself to be more than just a platform for a tool. In my personal journey, I discovered that it represents a beacon of hope, a testament to what can be achieved when diverse minds come together under the banner of openness and collaboration. </p>\n\n\n\n<blockquote class=\"wp-block-quote\">\n<p>Albeit unknowingly, this community handed me a new lease on life, providing me with opportunities to learn, grow, and reinvent myself.</p>\n</blockquote>\n\n\n\n<p>Its core values of openness and inclusiveness aren&#8217;t just buzzwords but are deeply rooted in the ethos of every member who contributes, either by writing code, designing themes, or even just by sharing experiences. It&#8217;s a reminder that every individual, irrespective of their background or skillset, has the potential to add value to this thriving ecosystem. As beneficiaries of this incredible community, it falls upon us to ensure that we not only appreciate these values but also embody them. We must commit to fostering an environment where every decision we make, every action we undertake, further deepens the culture of inclusivity and collaboration.</p>\n\n\n\n<p>Thank you WordPress, and the WordPress Community. <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/2764.png\" alt=\"❤\" class=\"wp-smiley\" /></p>\n<p>The post <a rel=\"nofollow\" href=\"https://heropress.com/essays/wordpress-is-my-ball-and-chain/\">WordPress Is My Ball And Chain</a> appeared first on <a rel=\"nofollow\" href=\"https://heropress.com\">HeroPress</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 06 Sep 2023 12:26:44 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"Justin Kopepasah\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:6;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:136:\"WPTavern: WooCommerce Blocks 11.0.0 Adds Product Collection Block in Beta, 10.9.0 Integrates Product Button with the Interactivity API\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=148515\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:144:\"https://wptavern.com/woocommerce-blocks-11-0-0-adds-product-collection-block-in-beta-10-9-0-integrates-product-button-with-the-interactivity-api\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4015:\"<p>WooCommerce is experimenting with improving the store experience through the <a href=\"https://github.com/woocommerce/woocommerce-blocks/issues/8219\">addition of the Interactivity API</a> to the WooCommerce Blocks plugin. The new API, which was announced earlier this year, will allow developers to build interactive blocks that support frontend experiences where visitors can interact with content without having to refresh the page. The WordPress contributors working on the API are <a href=\"https://wptavern.com/start-testing-wordpress-new-interactivity-api\">encouraging developers to test it</a> with their own blocks.</p>\n\n\n\n<p><a href=\"https://developer.woocommerce.com/2023/08/16/woocommerce-blocks-10-9-0-release-notes/?mc_cid=b50d0ff43c&mc_eid=68ffa9a210\">WooCommerce Blocks 10.9.0</a>, released in mid-August, integrated the Product Button with the Interactivity API to support real-time counter updates for the mini-cart, smoother animations, and better transitions from ‘Add to Cart’ to ‘Loading’ status to show the quantity in the cart when a product is added. </p>\n\n\n\nWooCommerce Blocks <a href=\"https://github.com/woocommerce/woocommerce-blocks/pull/10006\">PR #10006</a>\n\n\n\n<p>The difference is subtle but creates a much smoother shopping experience with nearly instantaneous feedback for the user. Contributors are also exploring how the Interactivity API can be used to improve frontend filters, including the rating, price, stock, and attributes filters. The API will eventually land in Gutenberg and WordPress in the future, but in the meantime WooCommerce is experimenting to see how the plugin&#8217;s blocks can benefit from it.</p>\n\n\n\n<p><a href=\"https://developer.woocommerce.com/2023/08/31/woocommerce-blocks-11-0-0-release-notes/\">Version 11.0.0</a> was released last week introducing the new Product Collection block in beta:</p>\n\n\n\n<blockquote class=\"wp-block-quote\">\n<p>Like the Products block, you can choose what criteria affect the list of blocks displayed to shoppers and control the product layout in the list/grid by the various element blocks.</p>\n\n\n\n<p>Unlike the Products block, which is a Query loop block variation, this block is a standalone block, enabling us to tailor the block further to better meet the merchant’s needs.</p>\n</blockquote>\n\n\n\n<p>The Product Collection block is very similar to the Products block from which it was forked, except it is not built as a variation of the Query Loop. It comes with improvements around Inspector controls as compared to the current Products block, as well as a basic set of patterns. The block already has the <a href=\"https://github.com/woocommerce/woocommerce-blocks/issues/10328\">Interactivity API integrated</a> for the same improved frontend performance.</p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<img width=\"2047\" height=\"1584\" src=\"https://149611589.v2.pressablecdn.com/wp-content/uploads/2023/09/product-collection.webp\" alt=\"\" class=\"wp-image-148556\" />Product Collection block &#8211; image source: <a href=\"https://developer.woocommerce.com/2023/08/31/woocommerce-blocks-11-0-0-release-notes/\">WooCommerce Blocks 11.0.0 release post</a>\n\n\n\n<p>Version 11.0.0 also enables manual migration of Products to Product Collection. An upgrade notice will appear in the Inspector Controls, informing users that they will get more features with the Product Collection block:</p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<img width=\"500\" height=\"466\" src=\"https://149611589.v2.pressablecdn.com/wp-content/uploads/2023/09/products-update-to-product-collection-500x466.png\" alt=\"\" class=\"wp-image-148557\" />\n\n\n\n<p>As the Product Collection block is still in beta, WooCommerce Blocks has not yet changed existing templates that have Product blocks. The development team is looking for more feedback on this block before moving it out of beta. Check out the <a href=\"https://developer.woocommerce.com/2023/08/31/woocommerce-blocks-11-0-0-release-notes/\">release post</a> for more enhancements and bug fixes.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 06 Sep 2023 03:59:22 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:7;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:96:\"WPTavern: Human Made to Host “AI: The Next Chapter” Virtual Conference on September 14, 2023\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=148507\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:99:\"https://wptavern.com/human-made-to-host-ai-the-next-chapter-virtual-conference-on-september-14-2023\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3753:\"<p>Human Made, a leading enterprise WordPress agency, is organizing a followup event to the community&#8217;s first ever <a href=\"https://wptavern.com/human-made-to-host-ai-for-wordpress-event-may-25-2023\">AI for WordPress</a> virtual conference that it hosted in May 2023. The second edition is called &#8220;<a href=\"https://hello.humanmade.com/ai-the-next-chapter\">AI: The Next Chapter</a>&#8221; and will take place online on September 14, 2023, at 10AM EST.</p>\n\n\n\n<p>The first event had 13 speakers and drew more than 600 attendees. It focused on WordPress and AI tools that people are building with the emerging technology. (Videos of all the sessions are <a href=\"https://www.youtube.com/playlist?list=PL1H81eN4d97iRNVivTvkWBdEr_3YTzZLc\">available on YouTube</a>.) This next edition will explore some of the wider societal, ethical, and tech issues related to the subject. </p>\n\n\n\n<p>The keynote and intro will feature Matt Mullenweg on &#8220;AI and the future of WordPress,&#8221; along with Human Made CEO Tom Willmot. Dr. Eleanor Drage, a senior research fellow at the University of Cambridge and co-host of The Good Robot podcast, will be speaking about AI and gender. Open source LLM researchers from Georgian will also join for a panel discussion on why they believe open source AI is the best way for companies to leverage this technology.</p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<img width=\"1956\" height=\"1310\" src=\"https://149611589.v2.pressablecdn.com/wp-content/uploads/2023/09/Screen-Shot-2023-09-05-at-5.44.14-PM.png\" alt=\"\" class=\"wp-image-148538\" />\n\n\n\n<p><a href=\"https://hello.humanmade.com/ai-the-next-chapter\">Registration</a> is free and participants can sign up on the event&#8217;s website. A confirmation email is sent out to registrants and more information will follow via email.</p>\n\n\n\n<p>Human Made has developed a keen interest in fostering exploratory dialogue through these events, as the company is working on AI products and <a href=\"https://humanmade.com/ai-for-wordpress/\">custom implementations for clients</a>. At the first event, the agency showcased some early work in the <a href=\"https://www.altis-dxp.com/accelerate/\">Altis Accelerate</a> plugin and have been working with clients to determine how AI can augment existing marketing and editorial workflows. </p>\n\n\n\n<p>&#8220;The progress and innovation we’re seeing in AI is so rapid at the moment that it kind of demands you stay close to it, keep following what’s happening, and keep learning,&#8221; Human Made Marketing Director Alex Aspinall said. &#8220;AI is one of our core areas of focus, across all parts of the business, so we’ll definitely be building, sharing, and hosting more in the space in the months to come. Doing all this in the open is really important to us, so the events are a great platform.&#8221;</p>\n\n\n\n<p>During the first event, Aspinall reports that Human Made saw registrations and participation across a wide range of business verticals and role disciplines, with conversations continuing months after the first event. <br /><br />&#8220;While there are a few businesses and individuals building things, experimenting, and commercializing their work in the area, the vast majority are still finding their way through, figuring out how best to implement AI to deliver tangible benefit to their companies, their clients, their teams, and their day-to-day lives,&#8221; Aspinall said.<br /><br />&#8220;Despite the level of advancement we’ve already seen, we’re still right at the start of this thing, which is really exciting. There’s a lot to learn, and considerable edge available for those experimenting and putting things in place. Imagine what we’ll be talking about this time next year!&#8221;</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 05 Sep 2023 22:09:23 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:8;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:50:\"Do The Woo Community: WordCamp US, the First Recap\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"https://dothewoo.io/?p=76362\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:48:\"https://dothewoo.io/wordcamp-us-the-first-recap/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:362:\"<p>BobWP and some attendees share a few highlights of WordCamp US 2023 as well as some WordPress origin stories.</p>\n<p>&gt;&gt; The post <a rel=\"nofollow\" href=\"https://dothewoo.io/wordcamp-us-the-first-recap/\">WordCamp US, the First Recap</a> appeared first on <a rel=\"nofollow\" href=\"https://dothewoo.io\">Do the Woo - a WooCommerce Builder Community</a>	.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 05 Sep 2023 13:23:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"BobWP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:9;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Matt: Techcrunch with Gutenberg\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:22:\"https://ma.tt/?p=96577\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:48:\"https://ma.tt/2023/09/techcrunch-with-gutenberg/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:245:\"<p>Jamie Marsland has this great YouTube video where he rebuilds <a href=\"https://techcrunch.com/\">TechCrunch.com</a> just using core blocks in WordPress 6.3 in 30 minutes. Worth checking out!</p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n\n</div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 05 Sep 2023 06:59:11 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:10;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:22:\"https://ma.tt/?p=96532\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:27:\"https://ma.tt/2023/09/fear/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:358:\"<p>Zeynep Tufekci has a great article, <a href=\"https://www.nytimes.com/2023/09/03/opinion/columnists/burning-man-rain-mud.html\">One Thing Not to Fear at Burning Man</a>, that covers well what I have experienced as well growing up in Houston through hurricanes and other natural disasters—that in times of need people help each other in ingenious ways.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 04 Sep 2023 21:18:48 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:11;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:87:\"WordPress.org blog: WP Briefing: Episode 61: Community, Summit, all at  Washington D.C.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"https://wordpress.org/news/?post_type=podcast&p=15911\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:85:\"https://wordpress.org/news/2023/09/episode-61-community-summit-all-at-washington-d-c/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:17592:\"<p>Join WordPress Executive Director Josepha Haden Chomphosy as she discusses the latest from the Community Summit and her takeaways from the 2023 event in Washington, D.C.</p>\n\n\n\n<p><em><strong>Have a question you’d like answered? You can submit them to&nbsp;<a href=\"mailto:wpbriefing@wordpress.org\">wpbriefing@wordpress.org</a>, either written or as a voice recording.</strong></em></p>\n\n\n\n<h2 class=\"wp-block-heading\">Credits</h2>\n\n\n\n<p>Host: <a href=\"https://profiles.wordpress.org/chanthaboune/\">Josepha Haden Chomphosy</a><br />Editor: <a href=\"https://profiles.wordpress.org/dustinhartzler/\">Dustin Hartzler</a><br />Logo: <a href=\"https://profiles.wordpress.org/javiarce/\">Javier Arce</a><br />Production: <a href=\"https://profiles.wordpress.org/bjmcsherry/\">Brett McSherry</a><br />Song: Fearless First by Kevin MacLeod</p>\n\n\n\n<h2 class=\"wp-block-heading\">Show Notes</h2>\n\n\n\n<ul>\n<li>The 2023 <a href=\"https://communitysummit.wordcamp.org/2023/\">Community Summit</a> in Washington, DC</li>\n\n\n\n<li><a href=\"https://wordpress.org/news/2023/02/episode-49-everything-you-need-to-know-about-the-community-summit/\">WP Briefing Episode 49</a>: Everything You Need to Know About the Community Summit!</li>\n\n\n\n<li><a href=\"https://href.li/?https://make.wordpress.org/community/2023/05/08/the-next-generation-of-wordcamps/\">The Next Generation of WordCamps</a></li>\n\n\n\n<li><a href=\"https://href.li/?https://make.wordpress.org/community/2023/05/24/idea-generation-next-gen-wordcamps/\">Idea generation: Next Gen WordCamps!</a></li>\n\n\n\n<li><a href=\"https://pressnomics.com/\">PressNomics</a></li>\n\n\n\n<li><a href=\"https://loopconf.io/\">LoopConf</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/summit/\">WordPress Community Summit</a></li>\n\n\n\n<li><strong>A small list of big things</strong>\n<ul>\n<li><a rel=\"noreferrer noopener\" href=\"https://make.wordpress.org/community/2023/08/23/call-for-ideas-new-features-for-our-nexgen-wp-events-central-page/\" target=\"_blank\">Call for ideas: new features for our NexGen WP events central page</a>&nbsp;&#8211; Open call for ideas to find the most desirable features for a future homepage that would host a list of all NextGen WordPress events. </li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/08/24/introducing-twenty-twenty-four/\">Introducing Twenty Twenty-Four</a>&nbsp;&#8211; Announced at Contributor Day, this new theme will be part of the 6.4 release. </li>\n\n\n\n<li>With the release of 6.3 behind us,&nbsp;<a rel=\"noreferrer noopener\" href=\"https://make.wordpress.org/core/6-4/\" target=\"_blank\">we are working hard on bringing 6.4</a>&nbsp;to the community. You can get involved with the development of this important release. </li>\n\n\n\n<li>A successful WCUS is behind us, and if you missed the event, we have you covered. <a href=\"https://wordpress.org/news/2023/08/the-future-of-wordpress-whats-next-for-gutenberg/\">Here is a recap of the event</a>.</li>\n</ul>\n</li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\">Transcript</h2>\n\n\n\n<span id=\"more-15911\"></span>\n\n\n\n<p>[00:00:00] <strong>Josepha:</strong>&nbsp;Hello everyone, and welcome to the WordPress Briefing, the podcast where you can catch quick explanations of the ideas behind the WordPress open source project, some insight into the community that supports it, and get a small list of big things coming up in the next two weeks. I&#8217;m your host, Josepha Haden Chomphosy. Here we go.</p>\n\n\n\n<p>[00:00:28] (Intro Music)&nbsp;</p>\n\n\n\n<p>[00:00:39] <strong>Josepha:</strong>&nbsp;We are back and catching up from our midyear break. And in true WordPress fashion, we&#8217;re just going to start off running. The WordPress Community Summit happened a couple of weeks ago. I&#8217;ve been talking about it on this podcast for a few months now, but if you&#8217;ve missed it and you want a refresher, go ahead and give episode 49 a listen.</p>\n\n\n\n<p>At the Community Summit, there were 125 people, if I remember correctly. And we covered a wide array of topics that were brought to us directly from the community itself. While the event is small, it is specifically designed for gathering and sharing information. So, I&#8217;ve got some top-level trends that I noticed that I&#8217;m going to share with you all today, as well as just like a reminder of what happens after a Community Summit.</p>\n\n\n\n<p>[00:01:27] <strong>Josepha:</strong>&nbsp;So there are three, maybe four, big trends that I noticed. The first one that I noticed is that we have a lot of discussions right now about contributor acknowledgment. That also, for what it&#8217;s worth, came with an unresolved question around whether acknowledgment and recognition are the same. I don&#8217;t think they are the same.</p>\n\n\n\n<p>But it also was part of a conversation around whether we treat those two things the same. And if they are not the same, should we treat them differently? And et cetera, et cetera, et cetera. For folks who&#8217;ve been around for a bit, you know, that we spent a lot of time working on our contributor recognition a few years back and had really made quite a bit of difference in just reported feelings about how the community felt they were being recognized for their contributions.</p>\n\n\n\n<p>And so a lot of the conversations that we ended up having were around whether or not the project as a whole has changed the way that we provide that recognition or acknowledgment. Or, as an alternative, if the community that is supporting WordPress has changed how they would like to be recognized.</p>\n\n\n\n<p>[00:02:32] <strong>Josepha:</strong>&nbsp;There were also some questions about whether or not making sure that contributors can see their impact. Like they can say, I contributed 10 hours last month, and these are the two things that I got accomplished over there, and that everyone else can see those things too. So, how we can do that more easily while also not having so many metrics and making the metrics so prevalent that we start to close out the people who are truly just doing this for fun.</p>\n\n\n\n<p>Like many of the problems that we have at the Community Summit, this is a bunch of pretty much unsolved mysteries at the moment. But it did; it came up across probably five or six different sessions that I heard about, quite a few that I went to myself, and so contributor acknowledgment and recognition is on our minds again.</p>\n\n\n\n<p>A second thing that I noticed across multiple sessions, and this one honestly is not a surprise at all, is that there were a lot of questions about what the next big thing is after Gutenberg. I always love when people are asking big questions about what comes next because it means that we all still believe that there will be a next.</p>\n\n\n\n<p>[00:03:43] <strong>Josepha:</strong>&nbsp;And so I never hesitate when I hear these questions to give some ideas about what I think might be coming. But a lot of the discussions that we were having were around, we think this is coming, but now that we think this is coming, what should we do now to make sure that we are ready for it? One of the biggest assumptions that we all had is that for the CMS, for the software itself, probably our next big area after Gutenberg is going to be something about artificial intelligence.</p>\n\n\n\n<p>Matt pointed out in his presentation that he has told us twice to learn something deeply. One was in 2016 when he said, learn JavaScript Deeply. And then one was in 2022 when he said to learn AI deeply. And so we all kind of are guessing that that is our future area. And so that&#8217;s an area for everyone to spend some time in. Make sure you understand it. Make sure you know it a bit.&nbsp;</p>\n\n\n\n<p>The second thing that came up as like a future, where are we going here? It was kind of on the business-y side. It was on a lot of questions about enterprise and are we selling properly to enterprise. Can we sell, can we appeal to enterprise? Whose job is it to sell any of these things? Questions like that. So, lots of business questions again. This is not something that I have any concerns about. I&#8217;m very excited to see that people are talking about it. That&#8217;s been a topic of conversation since, I want to say, February of this year. And so it also wasn&#8217;t a surprise inclusion today. And, and I was excited to see, am excited to see what we get out of those conversations over time.&nbsp;</p>\n\n\n\n<p>[00:05:17] <strong>Josepha:</strong>&nbsp;As far as like questions around what&#8217;s next for the community, I&#8217;m going to address that separately because it was a huge question for everyone. So I&#8217;m going to discuss that as soon as we get finished with this chunk about like the big thing that, that is coming after Gutenberg.</p>\n\n\n\n<p>But, from an ecosystem perspective. Like a WordPress project operations perspective, this came up a couple of times. Never in as clear a word, a set of words as that, but the question about, like, what are we doing with our tools? Are we making sure that we are keeping the tools that our contributors use maintained and still in an excellent space with features that are useful and, necessary, and requested?</p>\n\n\n\n<p>And so that is a big question. I do have a lot of questions about that. Also, there are so many tools that I have wanted in order to make organizing the WordPress community better and easier, but also making contributing better and easier. And hopefully, here soon, we have an opportunity to get to some of those.</p>\n\n\n\n<p>[00:06:16] <strong>Josepha:</strong>&nbsp;So, the third big trend that I kept seeing at the Community Summit is actually about the community itself, specifically about events. So I was part of or listened to many, many, many conversations over the course of the week that were specifically focused on what we&#8217;re going to do with the future of our events. Like are meetups still sustainable? Are WordCamps still sustainable? And that&#8217;s from not only the idea of sustainability that we all tend to know from like an ecological standpoint but also, you know, checking in on the resources. So the kinds of questions that folks had were, is it time to continue having many small events, or is it time to move to a few giant events?</p>\n\n\n\n<p>Should we bring back midsized, WP-adjacent events like PressNomics or LoopConf? And if we are bringing those back, do we want to have them be part of a semi-official thing along with a clearly WordPress event and like do joint sales in there? Try to figure out how to get people from one to the other, so that it&#8217;s not just WordPress people that we&#8217;re talking to, but also business people and advanced developers, things like that.</p>\n\n\n\n<p>There was also a lot of discussion about whether or not we have gotten too big, should we double down on our grassroots efforts? Just go all the way back to, like, BarCamp style, WordPress in a forest kind of thing.&nbsp;</p>\n\n\n\n<p>[00:07:46] <strong>Josepha:</strong>&nbsp;And yeah, and among all of these conversations, there were questions about the resources that we need. Do we have what we need now? Do we have plans for how to maintain those resources in the future? Do we have enough time? Do we have enough money? Do we have an expertise? The people? So many questions, so many questions. And on the community side of things, we also had a lot of questions that are routine in open source. Like, do we have a pipeline for future maintainers, for future team reps, for future leaders in the project? All of the questions.&nbsp;</p>\n\n\n\n<p>So, those are the three slash four, depending on how you break it out, really big trends that I saw across the conversation at the Community Summit. And I don&#8217;t necessarily know the answers to all of these things. Like, I know what my gut tells me, I know what I believe the answer to be. From my own perspective, but as you&#8217;ve been told many times with many eyes, all bugs are shallow. And so here is what happens next with a Community Summit. So we&#8217;ve gathered all of these things together. We&#8217;ve had these conversations, and now all of the notes from every conversation that we had will be put on make.wordpress.org/summit.&nbsp;</p>\n\n\n\n<p>[00:09:10] <strong>Josepha:</strong>&nbsp;There, you can do any of the following three things, but at least do one before we get any further. I think it&#8217;s important to remind everyone that no decisions were made at the Community Summit. There are a few things that will come out of the Community Summit where the answer the way forward is really obvious. And so those probably will get done quickly thereafter because it&#8217;s just an obvious thing to do. It makes sense for everyone in the project. It makes sense for everyone who&#8217;s using WordPress. Whatever reason.&nbsp;</p>\n\n\n\n<p>So those things will probably move quickly, but mostly not even mostly there were no decisions made. And so if it looks like something is moving quickly there, it is because it makes sense after the fact. So there&#8217;s that. But the three things that you can do in order to take part in this information gathering and sharing that happened at the Community Summit.&nbsp;</p>\n\n\n\n<p>Number one, head over to make.wordpress.org/summit and just read the notes. There are a lot of them you can pick and choose based on the teams you contribute to or the topics that are specifically interesting. Or if you have been assigned to read one of these things, obviously, go ahead and read that. But find the notes read them. Take a look at the discussion as far as you can tell it happened and get a sense for what the essential question is.</p>\n\n\n\n<p>The second thing that you can do while you&#8217;re there is that you can join in that discussion right there in the comments if you would like to. You can, if you feel like your perspective is not quite accounted for in that, obviously leave some comments and let folks know. But also, if you feel like your perspective was accounted for, but there&#8217;s also a very specific question that was not necessarily answered or not even brought up, share those as well. That&#8217;s stuff that we would like to know as we are working through this.&nbsp;</p>\n\n\n\n<p>And then the third thing that you can do is you can take those conversations, and if there&#8217;s anything that looks like it&#8217;s particularly relevant to your local WordPress community, absolutely take those there and have those conversations with them.</p>\n\n\n\n<p>[00:11:23] <strong>Josepha:</strong>&nbsp;And once you&#8217;ve had those conversations, let us know what you thought also in those comments, or take it directly into your weekly teams&#8217; chat, either way. We want to hear what you think about the questions that were brought because you brought them to us. And so you should have an opportunity to tell us what you think.</p>\n\n\n\n<p>[00:11:39] (Music Interlude)&nbsp;</p>\n\n\n\n<p>[00:11:48] <strong>Josepha:</strong>&nbsp;That brings us now to our small list of big things. My friends, there&#8217;s nothing but big things left for the rest of the year. And so here we go. Number one, uh, I mentioned it quite a bit. There&#8217;s a conversation, an ongoing conversation about the future of events for our community. Right now, there is an open call for ideas, new features for our NextGen WordPress events, especially on the page that exists on WordCamp Central.</p>\n\n\n\n<p>So, we want to find the most useful and desirable features for a future homepage on central.wordcamp.org that would host a list of all of our upcoming WordPress events. And so we want your opinion there. Please let us know what would be especially useful to you as you are looking for WordPress events to attend.</p>\n\n\n\n<p>The second thing is that we introduced 2024, the default theme that is coming with WordPress 6.4, was announced. We have had, I think, 32 contributors to it at the time of this recording. And yeah, it&#8217;s beautiful. It&#8217;s got a lot of different implementation options, a lot of default patterns, and curated patterns so that you can get exactly what you want out of that theme. I think it&#8217;s going to make a great default theme, a great starter theme for our final release of the year.&nbsp;</p>\n\n\n\n<p>And then, speaking of 6.4, with the release of 6.3 behind us, we are working hard on bringing 6.4 to the community. You can get involved with the development of that. There is a core chat every Wednesday. It happens. I want to say at 21:00 UTC, but I don&#8217;t actually know off the top of my head. I just go when my calendar tells me to go, and I live in the central time zone. And so, my UTC conversion is not the best, but we will leave the actual information about that in the show notes so that you can see it. But you can also go over to make.wordpress.org, and then there&#8217;s a little card on that homepage that tells you exactly when those core meetings are, including the new contributor meeting, which happens every two weeks.&nbsp;</p>\n\n\n\n<p>And then the fourth thing is that there is a successful WordCamp US behind us. That is our final flagship event of the year, which is always exciting. If you missed it, for one, we missed you. And for two, we have you covered. We&#8217;ve got a recap of the event. There is a link to that in the show notes as well.&nbsp;</p>\n\n\n\n<p>[00:14:05] <strong>Josepha:</strong> And that, my friends, is your small list of big things. Thanks for tuning in today for the WordPress Briefing. I&#8217;m your host, Josepha Haden Chomphosy, and I&#8217;ll see you again in a couple of weeks.</p>\n\n\n\n<p>[00:14:15] (Music Outro)&nbsp;</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 04 Sep 2023 12:00:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Brett McSherry\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:12;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:132:\"Gutenberg Times: Talks at WordCamp US, Notes from the Community summit. A wishlist, reflections and a preview –Weekend Edition 266\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://gutenbergtimes.com/?p=25401\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:137:\"https://gutenbergtimes.com/talks-at-wordcamp-us-notes-from-the-community-summit-a-wishlist-reflections-and-a-preview-weekend-edition-266/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:20644:\"<p>Howdy, </p>\n\n\n\n<p>Apart from <a href=\"https://wordpress.org/news/2023/08/the-future-of-wordpress-whats-next-for-gutenberg/\">The Future of WordPress &amp; What’s Next for Gutenberg</a> with the keynotes by Josepha Haden Chomphosy and Matt Mullenweg, including Q &amp; A, I still haven&#8217;t caught up with the videos from WordCamp US. Below is a list with links to the talks I want to see and hopefully catch up over this weekend. </p>\n\n\n\n<p>Then the <a href=\"https://make.wordpress.org/summit/\">Community Summit discussion notes</a> are also posted, I haven&#8217;t digested any of them yet. This part of my todo-list is also below. </p>\n\n\n\n<p>And I hear you say: Who has time for all this? Well, that is a good question. The project has some great teams, that do outstanding work! And that&#8217;s the underlying reason why I only curate news about the block editor. No one can keep track of it all. ?</p>\n\n\n\n<p>And I leave you to the rest of the newsletter. Enjoy, learn and share! </p>\n\n\n\n<p>Yours, ?<br /><em>Birgit</em></p>\n\n\n\n\n<div class=\"wp-block-group has-light-background-background-color has-background is-layout-flow wp-block-group-is-layout-flow\"><div class=\"wp-block-group__inner-container\">\n<p><strong>Table of Contents</strong></p>\n\n\n\n<div class=\"wp-block-sortabrilliant-guidepost\"><ul><li><a href=\"https://gutenbergtimes.com/feed/#0-word-camp-us-talks\">WordCamp US Gutenberg Talks</a></li><li><a href=\"https://gutenbergtimes.com/feed/#0-word-press-release-information\">Developing Gutenberg and WordPress</a><ul><li><a href=\"https://gutenbergtimes.com/feed/#2-community-summit\">Community Summit</a></li></ul></li><li><a href=\"https://gutenbergtimes.com/feed/#0-p\">Plugins, Themes, and Tools for #nocode site builders and owners</a></li><li><a href=\"https://gutenbergtimes.com/feed/#2-word-press-6-0-1-and-6-1-scheduled\">Theme Development for Full Site Editing and Blocks</a></li><li><a href=\"https://gutenbergtimes.com/feed/#3-building-themes-for-fse-and-word-press\">Building Blocks and Tools for the Block editor. </a></li></ul></div>\n</div></div>\n\n\n\n\n<h2 class=\"wp-block-heading\" id=\"0-word-camp-us-talks\">WordCamp US Gutenberg Talks</h2>\n\n\n\n<p>The full playlist of recorded talks is available on YouTube: <a href=\"https://www.youtube.com/playlist?list=PL4KP0VZtEI8rBpssGbR0E0wcBqeNeGEWT\"><strong>WordCamp US 2023</strong></a></p>\n\n\n\n<p>? <a href=\"https://www.youtube.com/watch?v=ZZq9WBqlKW8\">The Independent Theme Developer’s Field Guide to Modern WordPress</a> with <a href=\"https://us.wordcamp.org/2023/speaker/michelle-schulp-hunt/\">Michelle Schlup Hunt</a> (<a href=\"https://us.wordcamp.org/2023/session/the-independent-theme-developers-field-guide-to-modern-wordpress/\">Session description</a>, <a href=\"https://speakerdeck.com/marktimemedia/field-guide-2023\">slides</a>) </p>\n\n\n\n<p>? <a href=\"https://www.youtube.com/watch?v=9UYzZzb-LaU\"><strong>Building a thoughtful block editing experience</strong></a> with Aurooba Ahmed (<a href=\"https://us.wordcamp.org/2023/session/building-a-thoughtful-block-editing-experience/\">Session description</a>)</p>\n\n\n\n<p>? <strong><a href=\"https://www.youtube.com/watch?v=c0BbXaZqQAo&\">For All Userkind: NASA Web Modernization and WordPress</a></strong> with <a href=\"https://us.wordcamp.org/2023/speaker/abby-bowman/\">Abby Bowman</a><a href=\"https://us.wordcamp.org/2023/speaker/j-j-toothman/\">J.J. Toothman</a> (<a href=\"https://us.wordcamp.org/2023/session/friday-keynote/\">Session description</a>)</p>\n\n\n\n<p>? <strong><a href=\"https://www.youtube.com/watch?v=581pE25vAGQ\">Hands on with NASA’s new digital platform NASA Workshop</a></strong> with <a href=\"https://us.wordcamp.org/2023/speaker/abby-bowman/\">Abby Bowman</a> and <a href=\"https://us.wordcamp.org/2023/speaker/j-j-toothman/\">J.J. Toothman</a> (<a href=\"https://us.wordcamp.org/2023/session/hands-on-with-nasas-new-digital-platform/\">Session description</a>)</p>\n\n\n\n<p>? <strong><a href=\"https://www.youtube.com/watch?v=O8r06QETAlw\">Ford Foundation: Audio Described Video Plugin</a></strong> with <a href=\"https://us.wordcamp.org/2023/speaker/vajaah-e-parker/\">Vajaah E Parker</a><a href=\"https://us.wordcamp.org/2023/speaker/kurtis-shaner/\">Kurtis Shaner</a> (<a href=\"https://us.wordcamp.org/2023/session/ford-foundation-audio-described-video-plugin/\">Session description</a>)</p>\n\n\n\n<p>? <a href=\"https://www.youtube.com/watch?v=bbQNheCHjTk\"><strong>All the President&#8217;s Websites </strong></a>with <a href=\"https://us.wordcamp.org/2023/speaker/andrew-nacin-helen-hou-sandi/\">Andrew Nacin, Helen Hou-Sandí</a></p>\n\n\n\n<p>? <strong><a href=\"https://www.youtube.com/watch?v=8DbEsBzMaWA\">Anatomy of an Accessible Navigation Menu</a></strong> with <a href=\"https://us.wordcamp.org/2023/speaker/steve-jones/\">Steve Jones</a> (<a href=\"https://us.wordcamp.org/2023/session/anatomy-of-an-accessible-navigation-menu/\">session description)</a></p>\n\n\n\n<p>? <a href=\"https://www.youtube.com/watch?v=uehAKO6zwkQ\"><strong>The Headless Block Editor</strong></a> with <a href=\"https://us.wordcamp.org/2023/speaker/sean-blakeley/\">Sean Blakeley</a> (<a href=\"https://us.wordcamp.org/2023/session/the-headless-block-editor/\">session description</a>)</p>\n\n\n\n<p>? <a href=\"https://www.youtube.com/watch?v=gDi7n9XcVKM\"><strong>The Future of WordPress</strong></a> with <a href=\"https://us.wordcamp.org/2023/speaker/josepha-haden-chomphosy/\">Josepha Haden Chomphosy</a> (<a href=\"https://us.wordcamp.org/2023/session/josepha-haden-chomphosy-on-the-future-of-wordpress/\">Session description</a>)</p>\n\n\n\n<p>? <a href=\"https://www.youtube.com/watch?v=yDbASG9KOaE\"><strong>Gutenberg Next</strong> </a>with <a href=\"https://us.wordcamp.org/2023/speaker/matt-mullenweg/\">Matt Mullenweg</a> </p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"0-word-press-release-information\">Developing Gutenberg and WordPress</h2>\n\n\n\n<p><a href=\"https://github.com/WordPress/gutenberg/releases/tag/v16.6.0-rc.1\"><strong>Gutenberg 16.6 RC</strong></a> is available now for testing, and the stable release is scheduled for September 6th, 2023. I took a peak at the <a href=\"https://github.com/WordPress/gutenberg/releases/tag/v16.6.0-rc.1\">changelog</a> to prepare for the next episode of the Gutenberg Changelog #89 with <strong>Nadia Maya Ardiani</strong> as a special guest. </p>\n\n\n\n<div class=\"wp-block-group has-light-background-background-color has-background is-layout-flow wp-block-group-is-layout-flow\"><div class=\"wp-block-group__inner-container\">\n<p class=\"is-style-no-vertical-margin\"><strong>?️ </strong> Latest episode:  <a href=\"https://gutenbergtimes.com/podcast/gutenberg-changelog-88-wordpress-6-4-and-gutenberg-16-5/\">Gutenberg Changelog #88 – WordPress 6.4 and Gutenberg 16.4 and 16.5.</a>with Ellen Bauer as special guest, hosted by Birgit Pauli-Haack</p>\n</div></div>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"2-community-summit\">Community Summit</h3>\n\n\n\n<p>Below you find a short list of discussion notes from the <strong>Community Summit</strong> directly connected with contributing to core and Gutenberg. When you read notes on the Make Summit blog, keep in mind that two important guidelines governed the Community Summit:  <a href=\"https://make.wordpress.org/summit/2023/08/16/non-attribution/\">no attribution</a> and no decisions. </p>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/summit/2023/08/23/community-summit-discussion-notes-addressing-backwards-compatibility-in-gutenberg/\">Addressing backwards compatibility in Gutenberg</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/summit/2023/08/22/community-summit-discussion-notes-aligning-processes-and-contributions-between-wordpress-core-and-gutenberg/\">Aligning processes and contributions between WordPress Core and Gutenberg</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/summit/2023/08/22/community-summit-discussion-notes-accessibility-in-the-wordpress-project/\">Accessibility in the WordPress Project</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"0-p\">Plugins, Themes, and Tools for #nocode site builders and owners</h2>\n\n\n\n<p><strong>Jamie Marsland</strong> recreated TechCrunch&#8217;s Website in 30 minutes and shows you in <a href=\"https://www.youtube.com/watch?v=RghKQZmYwYI\">this 15-minute video</a> how he did it. <a href=\"https://www.youtube.com/watch?v=RghKQZmYwYI\"><strong>WOW! I rebuilt TechCrunch.com in only 30 mins with WordPress</strong></a>. You&#8217;ll also learn a few things: How to have a sticky header, how to create pro-post layouts, how to change your Global style, how image ratio features work and how to use templates. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong><a href=\"https://twitter.com/JMartellaWebDev\">Jacob Martella</a> </strong> posted his <a href=\"https://jacobmartella.me/web-development/wordpress/wishlist-for-the-wordpress-site-editor-as-it-heads-to-phase-3/\"><strong>Wishlist for the WordPress Site Editor as it Heads to Phase 3</strong></a>. He explains a few missing items in broad strokes: better responsive controls, more inline options, continued improvement on accessibility and more of the Block Visibility plugin features. The latter is a nice shoutout to <a href=\"https://wordpress.org/plugins/block-visibility/\">Nick Diego&#8217;s plugin </a>that has been available in the plugin repo for three years, and shows 10,000 + active installations. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong><a href=\"https://twitter.com/karmatosed\">Tammie Lister</a>,</strong> co-tech lead for WordPress 6.4 had thoughts and published them: <strong><a href=\"https://presselements.com/reflections-on-the-admin-design-proposal/\">Reflections on the admin design proposal</a>.</strong> On the way from old to new, it needs opinions, listening, documenting, and considering accessibility and extensibility. Implementation of the proposal requires all WordPress teams to become part of the revamp. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong><a href=\"https://twitter.com/codenex\">Niels Lange</a> </strong>published the <a href=\"https://developer.woocommerce.com/2023/08/16/woocommerce-blocks-10-9-0-release-notes/\"><strong>WooCommerce Blocks 10.9.0 Release&nbsp;Notes</strong></a>. He listed as notable that the team uses the Interactivity API together with the Product Button block and Pagination, which improves user experience considerably.  In this version, the team continued making  performance improvement to the plugin. You can also find improvements to patterns for footer and features products, and with every release fixed a few bugs. The <a href=\"https://wordpress.org/plugins/woo-gutenberg-products-block/\">WooCommerce Blocks plugin </a>is available in the WordPress repository</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"2-word-press-6-0-1-and-6-1-scheduled\">Theme Development for Full Site Editing and Blocks</h2>\n\n\n\n<p><strong><a href=\"https://twitter.com/mattmedeiros\">Matt Medeiros</a></strong> took a peak at the early version of the new default theme and shared his thoughts in <strong><a href=\"https://thewpminute.com/previewing-the-upcoming-twenty-twenty-four-theme-for-wordpress/\">Previewing the Upcoming Twenty Twenty-Four Theme for WordPress</a></strong>. &#8220;With a focus on versatility, ease of use, and multiple website types, Twenty Twenty-Four is shaping up to be one of the best and most flexible default starter themes WordPress has released in years&#8221; he wrote. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong><a href=\"https://twitter.com/karks88\">Eric Karkovack</a></strong> asked <strong>Brian Gardner </strong>in his interview &#8220;<a href=\"https://thewpminute.com/will-there-ever-be-a-market-for-commercial-block-themes/\"><strong>Will There Ever Be a Market for Commercial Block Themes?</strong></a>&#8221; Tl:DR: &#8220;I’m incredibly optimistic. Having been instrumental in molding the premium WordPress theme market in the late 2000s, we stand at the precipice of a new renaissance, much like before.&#8221; was Brian Gardner&#8217;s answer. Read more about the challenges and opportunities of Block Themes in WordPress. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong>Justin Tadlock</strong>&#8216;s latest tutorial covers  <a href=\"https://developer.wordpress.org/news/2023/08/adding-and-using-custom-settings-in-theme-json/\"><strong>Adding and using custom settings in theme.json</strong></a>. Custom settings are &#8220;one of the most powerful ways to build on top of the block system but is often underutilized by the theming community.&#8221; he wrote. </p>\n\n\n\n<a href=\"https://developer.wordpress.org/news/2023/08/adding-and-using-custom-settings-in-theme-json/\"><img src=\"https://i0.wp.com/gutenbergtimes.com/wp-content/uploads/2023/09/Screenshot-2023-09-02-at-17.30.53.png?resize=652%2C242&ssl=1\" alt=\"\" class=\"wp-image-25421\" width=\"652\" height=\"242\" /></a>Code example of custom settings in theme.json. <a href=\"https://developer.wordpress.org/news/2023/08/adding-and-using-custom-settings-in-theme-json/\">Read what happens then </a>\n\n\n\n\n<p><strong>&nbsp;<a href=\"https://make.wordpress.org/core/handbook/references/keeping-up-with-gutenberg-index/\" target=\"_blank\" rel=\"noreferrer noopener\">&#8220;Keeping up with Gutenberg &#8211; Index 2022&#8221;</a>&nbsp;</strong><br />A chronological list of the WordPress Make Blog posts from various teams involved in Gutenberg development: Design, Theme Review Team, Core Editor, Core JS, Core CSS, Test and Meta team from Jan. 2021 on. Updated by yours truly.  <a href=\"https://make.wordpress.org/core/handbook/references/keeping-up-with-gutenberg-index/keeping-up-with-gutenberg-index-2020/\"><em>The index 2020 is here</em></a></p>\n\n\n\n\n<h2 class=\"wp-block-heading\" id=\"3-building-themes-for-fse-and-word-press\">Building Blocks and Tools for the Block editor. </h2>\n\n\n\n<p><a href=\"https://twitter.com/aurooba\"><strong>Aurooba Ahmed</strong> </a>and <strong><a href=\"https://twitter.com/briancoords\">Brian Coords</a></strong> created a couple of tools for block development and made them publically available: </p>\n\n\n\n<ul>\n<li>The <strong><a href=\"https://wphelpers.dev/blocks\">WordPress Core Blocks Explorer</a></strong> is a searchable guide to all the&nbsp;core blocks&nbsp;and their properties. You can also obtain a complete&nbsp;<a href=\"https://wphelpers.dev/api/core-blocks\">JSON object of all the core blocks</a>&nbsp;and their properties instead. </li>\n\n\n\n<li>The <a href=\"https://wphelpers.dev/icons\"><strong>WordPress Icon Library,</strong></a> a searchable guide to the complete&nbsp;WordPress Icon Library&nbsp;package from the Gutenberg repository </li>\n</ul>\n\n\n\n<p>Both worth a browser bookmark ? Ahmed and Coords also finished their first season of their <a href=\"https://viewsource.fm/\">ViewSource</a> podcast. If you want to give it a binge listen, just search for View Source on your favorite podcast app or download it from the <a href=\"https://viewsource.fm/\">website</a>. </p>\n\n\n\n<img width=\"652\" height=\"443\" src=\"https://i0.wp.com/gutenbergtimes.com/wp-content/uploads/2023/09/Screenshot-2023-09-02-at-17.41.25.png?resize=652%2C443&ssl=1\" alt=\"\" class=\"wp-image-25423\" />Example:<a href=\"https://wphelpers.dev/icons/blockDefault\"> Icon information for blockDefault</a> \n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p>If you missed last week&#8217;s Developer Hours, the recording is now available on WordPressTV: <a href=\"https://wordpress.tv/2023/08/31/developer-hours-introduction-to-the-html-api/\"><strong>Developer Hours: Introduction to the HTML&nbsp;API</strong></a> with <strong>Michael Burridge</strong> and <strong>Dennis Snell</strong>. The show started with some quick demos of using the new HTML APIs, then briefly discussed the limits of the new systems, and finished with a time for questions and discussion with participants. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong><a href=\"https://twitter.com/vmwocto\">Angel De Miguel</a></strong>, staff engineer at VM ware working on the WebAssembly, his colleague <strong><a href=\"https://twitter.com/ereslibre\">Rafael Fernández López</a></strong> and Automattic&#8217;s <strong><a href=\"https://twitter.com/adamzielin\">Adam Zieliński</a></strong> co-authored  this post for the WordPress Developer blog: <a href=\"https://developer.wordpress.org/news/2023/08/exploring-the-future-of-web-development-with-webassembly-and-php/\"><strong>Exploring the future of web development with WebAssembly and PHP</strong></a>. &#8220;Imagine that you can now&nbsp;run PHP code in a new set of environments like a browser, serverless, edge, and even embedded&nbsp;in a different application. That opens a new set of possibilities for PHP.&nbsp; At this point is when PHP meets WebAssembly.&#8221; the wrote. You&#8217;ll learn what WebAssembly is, how it makes PHP portable like JavaScript, how it is the foundation of WordPress Playground, about sharing libraries across languages and so much more. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong><a href=\"https://twitter.com/Gtarafdarr\">Gobinda Tarafdar</a> </strong>started a new project, <strong><a href=\"http://csscrafter.com\">CSS Crafter</a> </strong>&#8211; a CSS Library for Gutenberg Blocks with premade CSS-styled blocks. Select the style and copy/paste the CSS + Block code for patterns or your custom blocks. Some of them also include pure CSS animations. It&#8217;s a fun project, that might shorten the creation time considerably. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p>You don&#8217;t have to create custom blocks to customize the editor for your clients. <strong>Nick Diego</strong> posted an<a href=\"https://developer.wordpress.org/news/2023/08/an-introduction-to-block-variations/\"> </a><strong><a href=\"https://developer.wordpress.org/news/2023/08/an-introduction-to-block-variations/\">introduction to block variations</a>,</strong> and you will learn how to create block variations effectively and discover ways to incorporate them into your workflows. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n\n<p><strong><a href=\"https://gutenbergtimes.com/need-a-zip-from-master/\">Need a plugin .zip from Gutenberg&#8217;s master branch?</a></strong><br />Gutenberg Times provides daily build for testing and review. <br />Have you been using it? Hit reply and let me know.</p>\n\n\n\n<p><img alt=\"GitHub all releases\" src=\"https://img.shields.io/github/downloads/bph/gutenberg/total?style=for-the-badge\" /></p>\n\n\n\n\n<p class=\"has-text-align-right has-small-font-size\"><em>Questions? Suggestions? Ideas? Don&#8217;t hesitate to send <a href=\"mailto:pauli@gutenbergtimes.com\">them via email</a> or send me a message on WordPress Slack or Twitter @bph</em>. </p>\n\n\n\n<p class=\"has-text-align-right has-small-font-size\">For questions to be answered on the <a href=\"http://gutenbergtimes.com/podcast\">Gutenberg Changelog</a>, send them to <a href=\"mailto:changelog@gutenbergtimes.com\">changelog@gutenbergtimes.com</a></p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n\n<p>Featured Image: Roof of the Stefan&#8217;s Cathedral in Vienna 2023 &#8211; Photo by Birgit Pauli-Haack</p>\n\n\n\n<hr class=\"wp-block-separator has-css-opacity is-style-wide\" />\n\n\n\n<p class=\"has-text-align-left\"><strong>Don&#8217;t want to miss the next Weekend Edition? </strong></p>\n\n\n\n<form class=\"wp-block-newsletterglue-form ngl-form ngl-portrait\" action=\"https://gutenbergtimes.com/feed/\" method=\"post\"><div class=\"ngl-form-container\"><div class=\"ngl-form-field\"><label class=\"ngl-form-label\" for=\"ngl_email\"><br />Type in your Email address to subscribe.</label><div class=\"ngl-form-input\"><input type=\"email\" class=\"ngl-form-input-text\" name=\"ngl_email\" id=\"ngl_email\" /></div></div><button type=\"submit\" class=\"ngl-form-button\">Subscribe</button><p class=\"ngl-form-text\">We hate spam, too and won&#8217;t give your email address to anyone except Mailchimp to send out our Weekend Edition</p></div><div class=\"ngl-message-overlay\"><div class=\"ngl-message-svg-wrap\"></div><div class=\"ngl-message-overlay-text\">Thanks for subscribing.</div></div><input type=\"hidden\" name=\"ngl_list_id\" id=\"ngl_list_id\" value=\"26f81bd8ae\" /><input type=\"hidden\" name=\"ngl_double_optin\" id=\"ngl_double_optin\" value=\"yes\" /></form>\n\n\n\n<hr class=\"wp-block-separator has-css-opacity is-style-wide\" />\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sun, 03 Sep 2023 10:16:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"Birgit Pauli-Haack\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:13;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"BuddyPress: BP Attachments 1.1.0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"https://buddypress.org/?p=331082\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:52:\"https://buddypress.org/2023/09/bp-attachments-1-1-0/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3399:\"<p>Immediately available is <a href=\"https://downloads.wordpress.org/plugin/bp-attachments.1.1.0.zip\" target=\"_blank\" rel=\"noreferrer noopener\">BP Attachments 1.1.0</a>. This BuddyPress Add-on maintenance release main goal is to make it <strong>ready for the next BuddyPress major release (12.0)</strong>. If you haven&#8217;t read about the important change BuddyPress 12.0.0 will introduce, please read this post about its <a href=\"https://buddypress.org/2023/08/buddypress-12-0-0-beta1/\">first beta version</a>.</p>\n\n\n\n<span id=\"more-331082\"></span>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<h2 class=\"wp-block-heading\">Showing the way to BuddyPress third party Plugins/Add-ons</h2>\n\n\n\n<p>The BP Attachments 1.1.0 maintenance release is the opportunity the BuddyPress development team chose to demonstrate how third party BuddyPress Plugins/Add-ons can adapt their code to be compatible with BuddyPress 12.0.0 as well as with previous versions of BuddyPress. It&#8217;s very important to us, as a community, we all take a few actions &#8211; during the next 2 months &#8211; to prepare the BuddyPress next major version release (slated to October 30).</p>\n\n\n\n<p>In addition to <a href=\"https://github.com/buddypress/buddypress/tree/master/docs/developer#buddypress-add-ons-handbook\" target=\"_blank\" rel=\"noreferrer noopener\">documentation resources</a> Third party BuddyPress Plugin/Add-on authors can read, they can now <a href=\"https://github.com/buddypress/bp-attachments/pulls?q=is%3Apr+is%3Aclosed+label%3Aresource+sort%3Acreated-asc\" target=\"_blank\" rel=\"noreferrer noopener\">learn from a real use case</a> thanks to this BP Attachments new maintenance release.</p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<h2 class=\"wp-block-heading\">The other changes</h2>\n\n\n\n<ul>\n<li>The experimental avatar UI is now disabled by default. If you want to experiment it, you&#8217;ll need to use this piece of code:<br /> <code>add_filter( \'bp_attachments_use_experimental_features\', \'__return_true\' );</code></li>\n\n\n\n<li>When enabled this experimental UI now includes a link to delete the existing avatar.</li>\n\n\n\n<li>If you&#8217;re not happy with how Media Attachments are rendered inside the Activity updates, you can use a filter to reorganize Activity blocks<strong>*</strong>. There&#8217;s an exemple of use <a rel=\"noreferrer noopener\" href=\"https://github.com/buddypress/bp-attachments/pull/82\" target=\"_blank\">here</a>.</li>\n</ul>\n\n\n\n<p><code><strong>*</strong></code> ICYMI: since BuddyPress 11.0.0, as you can opt-in to use Blocks inside BP Activity content using the filter below, BP Attachments is enjoying this feature and use it to attach Media to Activity updates.</p>\n\n\n\n<p><code>add_filter( \'bp_is_activity_blocks_active\', \'__return_true\' );</code></p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<h2 class=\"wp-block-heading\">Please upgrade to 1.1.0 !</h2>\n\n\n\n<div class=\"wp-block-columns is-layout-flex wp-container-6 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\"></div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"wp-embedded-content\"><a href=\"https://wordpress.org/plugins/bp-attachments/\">BP Attachments</a></blockquote>\n</div>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\"></div>\n</div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 02 Sep 2023 11:34:21 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"Mathieu Viet\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:14;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:72:\"Do The Woo Community: A DevChat on WooCommerce Support with Andrew Wikel\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"https://dothewoo.io/?p=70794\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"https://dothewoo.io/a-devchat-on-woocommerce-support/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:408:\"<p>Andrew Wikel shares thoughts and insights working on WooCommerce support specifically for builders and developers of Woo shops. </p>\n<p>&gt;&gt; The post <a rel=\"nofollow\" href=\"https://dothewoo.io/a-devchat-on-woocommerce-support/\">A DevChat on WooCommerce Support with Andrew Wikel</a> appeared first on <a rel=\"nofollow\" href=\"https://dothewoo.io\">Do the Woo - a WooCommerce Builder Community</a>	.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 02 Sep 2023 10:30:28 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"BobWP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:15;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:103:\"WPTavern: Patchstack Reports 404 Vulnerabilities Affecting 1.6M+ Websites to WordPress.org Plugins Team\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=148460\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:113:\"https://wptavern.com/patchstack-reports-404-vulnerabilities-affecting-1-6m-websites-to-wordpress-org-plugins-team\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4214:\"<p>After an accumulation of undisclosed and unpatched vulnerabilities in plugins hosted on WordPress.org, Patchstack has reported 404 plugins to WordPress&#8217; Plugin Review Team. </p>\n\n\n\n<p>&#8220;This situation creates a significant risk for the WordPress community, and we decided to take action,&#8221; Patchstack researcher Darius Sveikauskas said. &#8220;Since these developers have been unreachable, we sent the full list of those 404 vulnerabilities to the plugins review team for processing.&#8221;</p>\n\n\n\n<p>Ordinarily, reporting plugins to WordPress.org is a last resort for challenging cases after Patchstack fails to find a way to contact the vendors. In this case, many of these plugin authors have included zero contact information in their extensions or are not responding to communication attempts. Patchstack has characterized it as a &#8220;<a href=\"https://patchstack.com/articles/the-wordpress-zombie-plugins-pandemic-affects-1-6-million-websites/\">zombie plugins pandemic</a>&#8221; due to the overwhelming number of abandoned plugins affecting more than 1.6 million sites.</p>\n\n\n\n<p>The WordPress.org Plugins Team has acted on the report by closing more than 70% of the plugins. In June, the team <a href=\"https://wptavern.com/wordpress-plugin-review-team-adds-6-new-sponsored-volunteers-opens-applications\">added six new sponsored volunteers</a> and opened applications for more team members but have <a href=\"https://wptavern.com/wordpress-plugin-review-team-addresses-backlog-of-900-plugins-implements-strategies-to-improve-approval-process\">struggled with managing a formidable backlog</a> of plugins waiting to be reviews. The <a href=\"https://wordpress.org/plugins/developers/add/\">backlog</a> is climbing higher and is now over 1,119 plugins with a 71-day wait time. </p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<img width=\"1776\" height=\"676\" src=\"https://149611589.v2.pressablecdn.com/wp-content/uploads/2023/09/Screen-Shot-2023-09-02-at-12.01.40-AM.png\" alt=\"\" class=\"wp-image-148469\" />\n\n\n\n<p>Adding plugin vulnerability issues, where hundreds have to be closed, only adds to how long developers have to wait to get new plugins reviewed.</p>\n\n\n\n<p>As of August 31, 2023, Patchstack reports the following stats associated with these reports to WordPress.org:</p>\n\n\n\n<ul>\n<li>404 vulnerabilities</li>\n\n\n\n<li>358 plugins affected</li>\n\n\n\n<li>289 plugins (71,53%) – Closed</li>\n\n\n\n<li>109 plugins (26,98%) – Patched</li>\n\n\n\n<li>6 plugins (1,49%) – Not closed / Not patched</li>\n\n\n\n<li>Up to 1.6 million active installs affected</li>\n\n\n\n<li>Average installs per plugin 4984</li>\n\n\n\n<li>Highest install count 100000 (two plugins)</li>\n\n\n\n<li>Highest CVSS 9.1</li>\n\n\n\n<li>Average CVSS 5.8</li>\n\n\n\n<li>“Oldest” plugin – 13 years since the last update</li>\n</ul>\n\n\n\n<p>Patchstack is urging developers to add their contact details to their plugins&#8217; <a rel=\"noreferrer noopener\" href=\"https://developer.wordpress.org/plugins/wordpress-org/how-your-readme-txt-works/\" target=\"_blank\">readme.txt</a> and/or <a rel=\"noreferrer noopener\" href=\"https://docs.github.com/en/code-security/getting-started/adding-a-security-policy-to-your-repository\" target=\"_blank\">SECURITY.md</a> files. To streamline security issue management, the company has created the Patchstack <a rel=\"noreferrer noopener\" href=\"https://patchstack.com/for-plugins/\" target=\"_blank\">mVDP (managed vulnerability disclosure program)</a> project, which is free for developers to join. Patchstack validates the reports that come through, rewards the researchers, and passes them to the vendor to be addressed.</p>\n\n\n\n<p>The company is also <a href=\"https://core.trac.wordpress.org/ticket/30465\">advocating for a dashboard alert</a> when a plugin or theme is removed due to security reasons, as WordPress does not currently give the user this information. Their researchers will soon be submitting more reports that may result in closed extensions.</p>\n\n\n\n<p>&#8220;We are preparing more similar lists for the WordPress.org themes repository and repositories focused on premium products,&#8221; Sveikauskas said. &#8220;We are currently processing about extra 200+ similar vulnerabilities.&#8221;</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 02 Sep 2023 04:31:27 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:16;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:95:\"WPTavern: Review Signal Publishes 2023 WordPress and WooCommerce Hosting Performance Benchmarks\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=148317\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:106:\"https://wptavern.com/review-signal-publishes-2023-wordpress-and-woocommerce-hosting-performance-benchmarks\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:11138:\"<p>Kevin Ohashi from Review Signal has published his <a href=\"https://wphostingbenchmarks.com/\">2023 WordPress and WooCommerce hosting performance benchmarks</a>. This is his 10th round of capturing performance data from hosting companies that opt into the testing. Ohashi&#8217;s <a href=\"https://wphostingbenchmarks.com/methodology/\">methodology</a> tests two metrics through a variety of methods: peak performance and consistency. </p>\n\n\n\n<p>The benchmarks include a LoadStorm test designed to simulate real users visiting the site, logging in, and browsing (uncached performance). They also test cached performance, SSL, WP queries per second, performance on some computational and database operations, and a WebPageTest that fully loads the homepage and records how long it takes from 12 different locations around the world. As part of the consistency testing, Ohashi also measures uptime using <a rel=\"noreferrer noopener\" href=\"https://hetrixtools.com/uptime-monitor/166399.html\" target=\"_blank\">HetrixTools</a> and <a rel=\"noreferrer noopener\" href=\"https://uptimerobot.com/\" target=\"_blank\">Uptime Robot</a> for a minimum of three months.</p>\n\n\n\n<p>Participants pay a standard, publicly documented fee, based on the price tier of the product being tested, to cover the costs. Ohashi does not accept sponsorships for the tests, and has become one of the most trusted sources for unbiased performance reviews of WordPress hosting plans.</p>\n\n\n\n<p>In 2023, Ohashi tested 31 companies across 72 plans and seven pricing tiers, with tests nearly identical to previous years. He made minimal adjustments to the LoadStorm test script to improve performance and make it compatible with newer versions of k6.</p>\n\n\n\n<p>The website makes it easy to review results at a glance by using a star system. Hosts that achieve &#8220;Top Tier&#8221; status receive a full star:</p>\n\n\n\n<blockquote class=\"wp-block-quote\">\n<p>This is awarded to companies who maintain 99.9% uptime throughout the entire testing and show little to no performance degradation during load testing, primarily focused on error rate and consistent response times. Error rates above 0.1% and response times above 1000ms* will keep a company away from achieving Top Tier marks.</p>\n</blockquote>\n\n\n\n<p>The half star indicates &#8220;Honorable Mention&#8221; status, which is given to companies that came close to Top Tier but fell just short, such as struggling slightly on a load test.</p>\n\n\n\n<p>Among budget hosts in the <a href=\"https://wphostingbenchmarks.com/benchmark/2023-25-wordpress/\">&lt;$25/month category</a>, the majority of hosts (16/21) rang in at the Top Tier level. Those who did not earn Top Tier status were held back by inferior performance on the the LoadStorm test for the most part, even though several still took top scores in other aspects of the testing. </p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<img width=\"1222\" height=\"1194\" src=\"https://149611589.v2.pressablecdn.com/wp-content/uploads/2023/09/Screen-Shot-2023-09-01-at-11.58.44-AM.png\" alt=\"\" class=\"wp-image-148428\" />\n\n\n\n<p>There are fewer participants at the $25-50 plan (and other more expensive plans) but the results are similar to the budget hosts, with A2 Hosting, Cloudways, and Stromonic edged out of contention for Top Tier. All three failed to achieve Top Tier for any of the plans tested this year. </p>\n\n\n\n<p>In the <a href=\"https://wphostingbenchmarks.com/benchmark/2023-enterprise-wordpress/\">Enterprise tier ($500+)</a>, the majority of participants handled the LoadStorm test without issue. When testing cached performance, Ohashi found that the overall field of participants is getting faster: </p>\n\n\n\n<blockquote class=\"wp-block-quote\">\n<p>Excluding Seravo, every company was 33ms average or below and 43ms p95 or below. Compared to last year where the fastest average was 6.4 ms and p95 was 20ms. There are four companies this year below both of those levels. The performance at the Enterprise tier is mind bogglingly fast and getting even faster which is hard to comprehend when last year&#8217;s 6.4ms was beaten by 4 plans this year.</p>\n</blockquote>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<img width=\"2094\" height=\"1304\" src=\"https://149611589.v2.pressablecdn.com/wp-content/uploads/2023/09/Screen-Shot-2023-09-01-at-1.13.36-PM.png\" alt=\"\" class=\"wp-image-148433\" />\n\n\n\n<p>Most of the entrants in the <a href=\"https://wphostingbenchmarks.com/benchmark/2023-woocommerce/\">WooCommerce category</a> earned Top Tier status, with the exception of Blallo and Cloudways, both of which stumbled on the LoadStorm test. The hosting plans tested range from $25.95/month &#8211; $99/month. The WooCommerce-specific tests collect average response times, total requests, errors, and other metrics across four different profiles:</p>\n\n\n\n<ul>\n<li>Profile 1 (20%): Buyer – Homepage, add item to cart, go to cart, checkout (doesn’t submit order)</li>\n\n\n\n<li>Profile 2 (10%): Customer (existing) – Homepage, login, view orders, view account details</li>\n\n\n\n<li>Profile 3 (20%): Browser – Homepage, visit 5 random product pages</li>\n\n\n\n<li>Profile 4 (50%): Home – Homepage only</li>\n</ul>\n\n\n\n<p>A more detailed breakdown is available on the WooCommerce benchmarks results page.</p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<img width=\"2350\" height=\"1208\" src=\"https://149611589.v2.pressablecdn.com/wp-content/uploads/2023/09/Screen-Shot-2023-09-01-at-2.56.46-PM.png\" alt=\"\" class=\"wp-image-148441\" />\n\n\n\n<p>It&#8217;s important to note that the tests do not clearly identify a winner or top performer. They also don&#8217;t take into account other aspects of the WordPress hosting experience, like reviews, support, and features. Ohashi tests the defaults for all of these plans, but if there are more optimization features that can be customized for sites (which are not clearly outlined in the initial setup) then those are also not taken into account. The methodology simply focuses on performance, so it&#8217;s just one factor of hosting, albeit a very important one.</p>\n\n\n\n<p>&#8220;As far as surprising results, I keep thinking &#8216;Are we nearing the point that we won&#8217;t see much improvement?&#8217; and each year the whole field gets faster and faster,&#8221; Ohashi said. &#8220;Even improving on sub 10ms times between years. For example, in the &lt;$25/month tier, in 2022 there were 3 companies with &lt;50ms average response time on the Static k6 test. This year there are 10. I also saw 100ms+ improvements from the other (slower) side bringing up the whole field a meaningful amount. Everyone is getting faster and faster.&#8221;</p>\n\n\n\n<h3 class=\"wp-block-heading\">Why Are Some Managed WordPress Hosting Companies Missing?</h3>\n\n\n\n<p>There are many leading WordPress managed hosts that are notably absent from Ohashi&#8217;s benchmarks, whose inclusion would be helpful for a deeper understanding of market. I asked him about a handful of them and he reported that WP Engine, Dreamhost, and Kinsta declined to participate this year, to name a few. GoDaddy took a year off but may be back next year.</p>\n\n\n\n<p>The major reasons for hosts not wanting to participate fall into a few categories, and bad performance is chief among them.</p>\n\n\n\n<p>&#8220;Some companies perform poorly or poorly relative to price and don&#8217;t want to participate anymore,&#8221; Ohashi said. &#8220;They usually talk about other &#8216;intangible&#8217; values that you can&#8217;t measure. I think good performance should be a default for every hosting company, and good companies shouldn&#8217;t be afraid of bad results &#8211; if they actually plan on improving their services. </p>\n\n\n\n<p>&#8220;But some would probably rather spend fortunes on marketing instead of better engineering, and bad results aren&#8217;t going to help their marketing. I personally love seeing companies who participate year after year despite mixed results. I respect the companies who consistently earn Top Tier are doing a great job. But there&#8217;s something special about companies willing to put themselves out there regardless of the results, because it&#8217;s a public and open commitment to improving.&#8221;</p>\n\n\n\n<p>Ohashi said that occasionally the timing doesn&#8217;t work out where a host is going through a major engineering overhaul during the testing and doesn&#8217;t want the platform benchmarked when they are about to release a new one. In this case some opt to skip a year. </p>\n\n\n\n<p>The costs of the benchmarking can also be prohibitive for some smaller hosting companies. Ohashi raised prices by $250 across all tiers this year (eg. $100->$350, $500->$750) to cover his costs. Although this doesn&#8217;t seem like much for a hosting company, they also have to pay for the servers for four months, and have the staff/resources available to work with Ohashi on organizing, executing, and debugging issues. 20i, Krystal Hosting, Nexcess, and Pressable agreed to sponsor upstart companies in the space for 2023.</p>\n\n\n\n<p>Another reason some hosts don&#8217;t participate is a lack of interest or value. They don&#8217;t see how they can use the benchmark results to their advantage.</p>\n\n\n\n<p>&#8220;Some companies don&#8217;t get as much value from the benchmarks as others,&#8221; Ohashi said. &#8220;Performance across the board has gone way up. It&#8217;s harder and harder to stand out. </p>\n\n\n\n<p>&#8220;I think some companies may view it as an instant validation and reason for customers to come busting down the doors. But there are a lot of great companies offering great performance. Earning Top Tier status means you&#8217;ve got a performant hosting platform. It&#8217;s great, and it can help validate some customer needs/desires in the decision making funnel, but it won&#8217;t magically generate tons of sales.&#8221;</p>\n\n\n\n<p>Ohashi said he has put together notes for hosting companies that earned Top Tier status to help them leverage more value this year from a marketing perspective, based on what he has seen some companies do with their results. Creating more value for participating companies is something he is actively working to improve upon.</p>\n\n\n\n<p>Although Review Signal had approximately 35,000 people visit in the past year, Ohashi doesn&#8217;t think the traffic captures the full value of the benchmarks very well. The people who dig into these metrics are those who have a large impact on where their WordPress clients host their websites.</p>\n\n\n\n<p>&#8220;The people who care about the benchmarks are seriously into WordPress / hosting / performance,&#8221; Ohashi said. &#8220;It&#8217;s a lot of agencies, developers, large website owners and hosting people. One way I&#8217;ve measured impact is by going to the major WordCamps (EU/Asia/US) and talking to people. The number of folks who are aware of the benchmarks there was surprisingly high to me. The people who are interested enough to spend time at WordCamps are the same folks interested in reading the benchmarks. It&#8217;s not the largest number of people who read them, but it is the largest impact people who read and value them.&#8221;</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 01 Sep 2023 21:17:38 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:17;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:55:\"Do The Woo Community: WooBits Hits the Air Waves, Again\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"https://dothewoo.io/?p=76231\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"https://dothewoo.io/woobits-hits-the-air-waves-again/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:341:\"<p>WooBits takes another twist and turn and introducing Global Community Friends.</p>\n<p>&gt;&gt; The post <a rel=\"nofollow\" href=\"https://dothewoo.io/woobits-hits-the-air-waves-again/\">WooBits Hits the Air Waves, Again</a> appeared first on <a rel=\"nofollow\" href=\"https://dothewoo.io\">Do the Woo - a WooCommerce Builder Community</a>	.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 01 Sep 2023 11:30:27 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"BobWP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:18;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:62:\"Do The Woo Community: What Was Your Takeaway from WordCamp US?\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"https://dothewoo.io/?p=76204\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:60:\"https://dothewoo.io/what-was-your-takeaway-from-wordcamp-us/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:385:\"<p>For an upcoming show, tell us what your takeaway was from WordCamp US or why did you attend Contributor Day.</p>\n<p>&gt;&gt; The post <a rel=\"nofollow\" href=\"https://dothewoo.io/what-was-your-takeaway-from-wordcamp-us/\">What Was Your Takeaway from WordCamp US?</a> appeared first on <a rel=\"nofollow\" href=\"https://dothewoo.io\">Do the Woo - a WooCommerce Builder Community</a>	.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 30 Aug 2023 14:11:37 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"BobWP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:19;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:71:\"WPTavern: Performant Translations Plugin Now Available on WordPress.org\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=148364\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:82:\"https://wptavern.com/performant-translations-plugin-now-available-on-wordpress-org\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2844:\"<p>After an in-depth performance analysis earlier this year revealed that <a href=\"https://wptavern.com/wordpress-performance-analysis-finds-translations-may-significantly-slow-down-sites\">translations can impact server response times</a>, WordPress contributors <a href=\"https://make.wordpress.org/core/2023/07/24/i18n-performance-analysis/\">proposed</a> half a dozen technical solutions for consideration to improve performance for the ~56% of sites that use translations.</p>\n\n\n\n<p><a href=\"https://wordpress.org/plugins/performant-translations/\">Performant Translations</a>, a feature project by the core Performance Team, is now available as a plugin on WordPress.org. It incorporates some of the proposed solutions and speeds up translations by converting <code>.mo</code> files to <code>.php</code> files, allowing them to be parsed faster and stored in <a href=\"https://www.php.net/manual/en/book.opcache.php\">OPcache</a>.</p>\n\n\n\n<p>It supports multiple file formats (<code>.mo</code>, <code>.php</code>, and <code>.json</code>) and multiple text domains and locales loaded at the same time. Existing <code>.mo</code> files get converted to <code>.php</code> files which are then loaded by WordPress.  </p>\n\n\n\n<p>A chart included on the plugin&#8217;s details page shows a significant page load time reduction when using the plugin, as compared to sites with translations that don&#8217;t use the plugin. The plugin brings translations very close to the same page load times as English (non-translated) sites.</p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<img width=\"1658\" height=\"1200\" src=\"https://149611589.v2.pressablecdn.com/wp-content/uploads/2023/08/performant-translations.png\" alt=\"\" class=\"wp-image-148367\" />\n\n\n\n<p>&#8220;With enough testing and feedback, we hope to eventually merge this plugin into WordPress core,&#8221; Performance Team contributor Pascal Birchler said when announcing the plugin on X.</p>\n\n\n\n<p>&#8220;In the coming weeks and months we will share more testing instructions and continue to improve the plugin. This will be made available via Performance Lab, too.&#8221;</p>\n\n\n\n<p>Users who are testing the plugin can <a href=\"https://wordpress.org/support/plugin/performant-translations/#new-topic-0\">report issues on the support forum</a> or create an issue on the <a href=\"https://github.com/swissspidy/performant-translations\">GitHub repository</a>.</p>\n\n\n\n<p>Performant Translations is considered to be a beta testing plugin but can be tested and used in production at your own risk. It doesn&#8217;t require any changes to settings or configuration after installation. The plugin can be safely removed after testing, because it essentially cleans up after itself. All <code>.php</code> files it generates will be removed by the server once the plugin is deactivated and uninstalled. </p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 30 Aug 2023 01:39:18 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:20;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:84:\"WPTavern: Top Agencies Join Forces to Publish Free Guide on WordPress for Enterprise\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=148240\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:95:\"https://wptavern.com/top-agencies-join-forces-to-publish-free-guide-on-wordpress-for-enterprise\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2611:\"<p>A collection of leading WordPress agencies have launched a collaborative project to promote the platform to large-scale organizations.  Big Bite, in partnership with 10up, Alley, Human Made, Inpsyde, and XWP, have published a free <a href=\"https://bigbite.net/wordpress-for-enterprise/\">WordPress for Enterprise guide</a> that includes contributions from Google and WordPress VIP.</p>\n\n\n\n<p>The guide highlights many high profile companies and organizations using WordPress, including CNN, Vogue, Google, The Wall Street Journal, Spotify, Harvard University, the White House, Meta, PlayStation, and many more.</p>\n\n\n\n<p>Even after 20 years of unprecedented growth and adoption across major brands, the misconception that WordPress is just a blogging platform persists among many who don&#8217;t keep up to date with open source software.  </p>\n\n\n\n<p>“Despite being the number one CMS, many people still associate WordPress solely with bloggers and small businesses, and are surprised to learn that it powers sites for some of the biggest brands on the planet,&#8221; Big Bite CEO Iain McPherson said. &#8220;By coming together to create this guide, we’re aiming to change that perception and highlight the many advantages it offers to enterprise organizations that have lots of contributors, lots of content, and lots of challenges.”</p>\n\n\n\n<p>The guide offers an easy-to-read overview of how well-suited WordPress is for the enterprise market and the possibilities for creating a customized platform to fit any organization. It includes short chapters on the following topics:</p>\n\n\n\n<ul>\n<li>From small blogs to big brands </li>\n\n\n\n<li>Open source advantages </li>\n\n\n\n<li>Platform security&nbsp;</li>\n\n\n\n<li>Scalability and internationalization</li>\n\n\n\n<li>Solution cost and value&nbsp;</li>\n\n\n\n<li>Editorial experience&nbsp;</li>\n\n\n\n<li>Performance matters </li>\n\n\n\n<li>Feature extensibility</li>\n\n\n\n<li>Headless capabilities</li>\n</ul>\n\n\n\n<p>“While smaller brands are able to switch CMS platforms fairly easily, for large-scale enterprises it’s often a major undertaking, so we hope this guide makes the decision process much easier for those exploring open source options,&#8221; WordPress VIP Director of Product Marketing Michael Khalili said.</p>\n\n\n\n<p>The guide is a useful resource for large organizations examining WordPress as a platform or for small agencies looking to pitch WordPress to larger clients. It&#8217;s free and does not require you to enter your email address or other contact information to <a href=\"https://bigbite.net/wordpress-for-enterprise/\">download</a> it.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 29 Aug 2023 22:08:36 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:21;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:55:\"WordPress.org blog: WordPress 6.3.1 Maintenance Release\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=15886\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:71:\"https://wordpress.org/news/2023/08/wordpress-6-3-1-maintenance-release/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:5028:\"<h2 class=\"wp-block-heading\">WordPress 6.3.1 is now available!</h2>\n\n\n\n<p>This minor release features&nbsp;<a href=\"https://core.trac.wordpress.org/query?status=closed&milestone=6.3.1&group=status&col=id&col=summary&col=owner&col=type&col=priority&col=component&col=version&col=keywords&order=priority\">4 bug fixes in Core</a>&nbsp;and&nbsp;<a href=\"https://github.com/orgs/WordPress/projects/103/\">6 bug fixes for the block editor</a>. You can review a summary of the maintenance updates in this release by reading the&nbsp;<a href=\"https://make.wordpress.org/core/2023/08/23/wordpress-6-3-1-rc1-is-now-available/\">Release Candidate announcement</a>.</p>\n\n\n\n<p>WordPress 6.3.1 is a short-cycle release. The next major release will be&nbsp;<a href=\"https://make.wordpress.org/core/6-4/\">version 6.4</a>&nbsp;planned for November 2023.</p>\n\n\n\n<p>If you have sites that support automatic background updates, the update process will begin automatically.</p>\n\n\n\n<p>You can&nbsp;<a href=\"https://wordpress.org/wordpress-6.3.1.zip\">download WordPress 6.3.1 from WordPress.org</a>, or visit your WordPress Dashboard, click “Updates”, and then click “Update Now”.</p>\n\n\n\n<p>For more information on this release, please&nbsp;<a href=\"https://wordpress.org/support/wordpress-version/version-6-3-1\">visit the HelpHub site</a>.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Thank you to these WordPress contributors</h2>\n\n\n\n<p>This release was led by&nbsp;<a href=\"https://profiles.wordpress.org/audrasjb\">Jb Audras</a> and <a href=\"https://profiles.wordpress.org/azaozz/\">Andrew Ozz</a>, with the help of <a href=\"https://profiles.wordpress.org/SergeyBiryukov\">Sergey Biryukov</a>&nbsp;on mission control, and <a href=\"https://profiles.wordpress.org/isabel_brison/\">Isabel Brison</a> who worked on Gutenberg backports.</p>\n\n\n\n<p>WordPress 6.3.1 would not have been possible without the contributions of the following people. Their asynchronous coordination to deliver maintenance fixes into a stable release is a testament to the power and capability of the WordPress community.</p>\n\n\n\n<p class=\"is-style-wporg-props-medium\"><a href=\"https://profiles.wordpress.org/antonvlasenko/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>antonvlasenko</a>, <a href=\"https://profiles.wordpress.org/audrasjb/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>audrasjb</a>, <a href=\"https://profiles.wordpress.org/austinginder/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>austinginder</a>, <a href=\"https://profiles.wordpress.org/azaozz/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>azaozz</a>, <a href=\"https://profiles.wordpress.org/dd32/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>dd32</a>, <a href=\"https://profiles.wordpress.org/dlh/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>dlh</a>, <a href=\"https://profiles.wordpress.org/frankit/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>frankit</a>, <a href=\"https://profiles.wordpress.org/get_dave/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>get_dave</a>, <a href=\"https://profiles.wordpress.org/hellofromtonya/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>hellofromTonya</a>, <a href=\"https://profiles.wordpress.org/khokansardar/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>khokansardar</a>, <a href=\"https://profiles.wordpress.org/mathsgrinds/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>mathsgrinds</a>, <a href=\"https://profiles.wordpress.org/mukesh27/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>mukesh27</a>, <a href=\"https://profiles.wordpress.org/peterwilsoncc/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>peterwilsoncc</a>, <a href=\"https://profiles.wordpress.org/presskopp/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>Presskopp</a>, <a href=\"https://profiles.wordpress.org/rajinsharwar/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>rajinsharwar</a>, <a href=\"https://profiles.wordpress.org/ravanh/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>RavanH</a>, <a href=\"https://profiles.wordpress.org/sergeybiryukov/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>sergeybiryukov</a>, and <a href=\"https://profiles.wordpress.org/tmatsuur/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>tmatsuur</a>.</p>\n\n\n\n<h2 class=\"wp-block-heading\">How to contribute</h2>\n\n\n\n<p>To get involved in WordPress core development, head over to Trac,&nbsp;<a href=\"https://core.trac.wordpress.org/report/6\">pick a ticket</a>, and join the conversation in the&nbsp;<a href=\"https://wordpress.slack.com/archives/C02RQBWTW\">#core</a> and <a href=\"https://wordpress.slack.com/archives/C055Y7FKS7N\">#6-4-release-leads</a> channels. Need help? Check out the&nbsp;<a href=\"https://make.wordpress.org/core/handbook/\">Core Contributor Handbook</a>.</p>\n\n\n\n<p class=\"has-text-align-right\"><em>Thanks to&nbsp;<a href=\"https://profiles.wordpress.org/jeffpaul/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>jeffpaul</a> for proofreading.</em></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 29 Aug 2023 14:43:11 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:9:\"Jb Audras\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:22;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:74:\"WPTavern: WordPress.com Launches 100-Year Domain and Hosting Plan for $38K\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=148273\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:84:\"https://wptavern.com/wordpress-com-launches-100-year-domain-and-hosting-plan-for-38k\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3961:\"<p>WordPress.com is now selling a <a href=\"https://wordpress.com/100-year/\">100-year plan</a>, one of the longest available in the industry, for a one-time payment of $38,000. It includes managed WordPress hosting (whatever that looks like in 100 years), multiple backups across geographically distributed data centers, submission to the Internet Archive if the site is public, 24/7 dedicated support, and a domain that doesn&#8217;t need to be renewed by the customer for a century.</p>\n\n\n\n<p>ICANN, the Internet Corporation for Assigned Names and Numbers, limits domain registration to a maximum of 10 years. Auto-renewing after this time requires the customer to renew on time and keep their payment method updated. A 100-year plan removes these uncertainties but still hinges on the registrar staying in business into the next century.</p>\n\n\n\n<p>Customers who buy into the plan will need to have superior confidence in WordPress.com, coupled with the belief that domain names will still be important to the fundamental architecture of the web decades from now.</p>\n\n\n\n<p>Automattic CEO Matt Mullenweg commented on the difficulties in pricing the 100-year plan during his presentation at WordCamp US 2023, while simultaneously discouraging WordPress product owners from offering lifetime licenses. The distinction here is that the 100-year plan has a finite length of time, even if its future support seems unfathomable at the moment. </p>\n\n\n\n<p>&#8220;It also got me thinking about lifetime licenses, which I think we should stop doing in the WordPress world,&#8221; Mullenweg said. </p>\n\n\n\n<p>&#8220;If you&#8217;ve ever worked with an accountant or an acquirer they don&#8217;t like when you have those because it&#8217;s essentially an open ended commitment, including often with support. How do you recognize that revenue? Offer a 20 year plan or something. I think when you&#8217;re saying &#8216;lifetime,&#8217; it sort of cheapens the word. If we&#8217;re really thinking long-term, what promises we&#8217;re making to our customers, I think we should re-examine those practices.&#8221;</p>\n\n\n\n<p>Mullenweg also said he was inspired by the <a href=\"https://longnow.org/\">Long Now Foundation</a>, a non-profit established to foster long term thinking. The organization&#8217;s first project is the &#8220;Clock of the Long Now,&#8221; a mechanical monument designed to keep accurate time for the next 10,000 years:</p>\n\n\n\n<blockquote class=\"wp-block-quote\">\n<p>It is still being assembled deep inside a mountain in west Texas. The Clock provides a rare invitation to think and engineer at the timescale of civilization. It offers an enduring symbol of our personal connection to the distant future.</p>\n<cite><a href=\"https://longnow.org/\">The Long Now website</a></cite></blockquote>\n\n\n\n<p>WordPress.com is building something parallel to this in the digital world, enabling people to create their own virtual, lasting monuments and preserve their homes on the web. </p>\n\n\n\n<p>Embedded in the new offering is also a poignant reminder that WordPress.com is a domain registrar, as the company recently <a href=\"https://wptavern.com/wordpress-com-makes-a-bid-for-google-domains-customers-offering-1-million-free-transfers\">made a bid to capture Google Domain customers</a> ahead of their domains being sold off to Squarespace. Even if the new 100-year hosting plan is too expensive for 99.9% of prospective customers, it gives the impression that the company is capable of hosting entrusted domains for the long term. </p>\n\n\n\n<p>Nobody, not even WordPress.com, knows what that will look like in 50 years, but it&#8217;s an ambitious, thought-provoking offering. What resources will a URL (Uniform Resource Locator) point to 50 years from now? Or will URLs be discarded into the scrap pile of obsolete building blocks as soon as there&#8217;s a better, more efficient way to identify web addresses? What does longevity look like in the digital world?</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 29 Aug 2023 04:25:16 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:23;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:81:\"WPTavern: Video: WordPress Leaders Discuss Project’s Future at WordCamp US 2023\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=148270\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:88:\"https://wptavern.com/video-wordpress-leaders-discuss-projects-future-at-wordcamp-us-2023\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3006:\"<p>WordCamp US concluded this weekend after gathering nearly 2,000 attendees in National Harbor, Maryland, for the Community Summit, Contributor Day, and main conference days. For the majority of people in the WordPress world who were unable to attend, the recordings of the presentations from project leadership will give you an idea of what to expect in the near future and beyond. These videos were <a href=\"https://wordpress.org/news/2023/08/the-future-of-wordpress-whats-next-for-gutenberg/\">published</a> right away and are embedded below.</p>\n\n\n\n<p>WordPress Executive Director Josepha Haden Chomposy spoke on &#8220;The Future of WordPress,&#8221; with an emphasis on how the project can continue to thrive, build resilience, and outlast its current contributors. She encouraged the community to be proactive about expanding their learning and connections. She also reaffirmed the importance of the project&#8217;s mission to democratize publishing and the impact that can have in the world.</p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n\n</div>\n\n\n\n<p>WordPress co-creator Matt Mullenweg capped off the event with a presentation titled &#8220;What&#8217;s Next for Gutenberg,&#8221; followed by a Q&amp;A. He highlighted a few features coming in 6.4, including font management, an image lightbox, and the new Twenty Twenty Four default theme.</p>\n\n\n\n<p>As WordPress is moving into the Collaboration phase of the Gutenberg project, which will enable multiple authors to edit simultaneously, Mullenweg highlighted the importance of redesigning the admin. This will be the first major redesign since MP6 and is also aimed at improving workflows for administrators.</p>\n\n\n\n<p>Mullenweg announced that WordPress has launched a new LMS (Learning Management System) working group. He commented on the benefits and drawbacks of having multiple plugins in the ecosystem that do the same thing. Although the competition can encourage more innovation, it can also lock users into one solution if they aren&#8217;t built to be interoperable. </p>\n\n\n\n<p>Representatives from Tutor LMS, Learndash, LifterLMS, and Sensei met to discuss using common data models so users can easily switch between solutions. They are working in a new #LMS slack channel to establish industry standards that will preserve user freedom and choice through practical interoperability changes to their products.</p>\n\n\n\n<p>Mullenweg also said he would like to see more plugins, such as those handling SEO or site builders, to agree on some data models so that products can operate in a more standardized and performant way, serving users better in the long term.</p>\n\n\n\n<p>Check out the presentation below, along with the Q&amp;A that followed. There were more than 80 questions submitted, and those that were missed during Q&amp;A will have answers published to in a future post on WordPress.org.</p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n\n</div>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n\n</div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 28 Aug 2023 22:15:14 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:24;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:87:\"Gutenberg Times: Gutenberg Changelog #88 – WordPress 6.4 and Gutenberg 16.4 and 16.5.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"https://gutenbergtimes.com/?post_type=podcast&p=25373\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:91:\"https://gutenbergtimes.com/podcast/gutenberg-changelog-88-wordpress-6-4-and-gutenberg-16-5/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:83824:\"<p>Ellen Bauer and Birgit Pauli-Haack discuss WordPress 6.4 and Gutenberg 16.4 and 16.5 and proposed wp-admin changes. </p>\n\n\n\n<p><a href=\"https://gutenbergtimes.com/podcast/gutenberg-changelog-88-wordpress-6-4-and-gutenberg-16-5#shownotes\">Show Notes</a> / <a href=\"https://gutenbergtimes.com/podcast/gutenberg-changelog-88-wordpress-6-4-and-gutenberg-16-5#transcript\">Transcript</a></p>\n\n\n\n<ul>\n<li>Music:&nbsp;<a href=\"https://soundcloud.com/xirclebox\">Homer Gaines</a></li>\n\n\n\n<li>Editor:&nbsp;<a href=\"https://www.linkedin.com/in/sandy-reed/\">Sandy Reed</a></li>\n\n\n\n<li>Logo:&nbsp;<a href=\"https://markuraine.com/\">Mark Uraine</a></li>\n\n\n\n<li>Production:&nbsp;<a href=\"https://icodeforapurpose.com\">Birgit Pauli-Haack</a></li>\n</ul>\n\n\n\n<p class=\"has-larger-font-size\" id=\"shownotes\"><strong>Show Notes</strong></p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Ellen Bauer</strong>, co-founder Elma Studio</h3>\n\n\n\n<ul>\n<li>WordPress <a href=\"https://profiles.wordpress.org/elmastudio/\">@elmastudio</a></li>\n\n\n\n<li>Twitter/X <a href=\"https://twitter.com/ellenbauer\">@ellenbauer</a></li>\n\n\n\n<li><a href=\"https://www.elmastudio.de/en/\">Elma Studio</a></li>\n\n\n\n<li><a href=\"https://ainoblocks.io/\">Aino Blocks</a></li>\n\n\n\n<li><a href=\"https://profiles.wordpress.org/elmastudio/#content-themes\">Themes by Elmastudio </a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\">WordPress 6.4 and more</h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2023/08/22/roadmap-to-6-4/\">Roadmap 6.4</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/06/05/wordpress-6-4-development-cycle/\">WordPress 6.4 Development Cycle</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/08/24/introducing-twenty-twenty-four/\">Introducing Twenty Twenty-Four</a></li>\n\n\n\n<li>&nbsp;<a href=\"https://make.wordpress.org/core/2023/08/23/whats-new-for-navigation-in-wordpress-6-2-and-6-3/\">What’s new for Navigation in WordPress 6.2 and 6.3</a>&nbsp;</li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\">Gutenberg </h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2023/08/10/whats-new-in-gutenberg-16-4-9-august/\">What’s new in Gutenberg 16.4? (9 August)</a></li>\n\n\n\n<li>WPTavern: <a href=\"https://wptavern.com/gutenberg-16-4-introduces-experimental-auto-inserting-blocks\">Gutenberg 16.4 Introduces Experimental Auto-Inserting Blocks</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/08/23/whats-new-in-gutenberg-16-5-23-august/\">What’s new in Gutenberg 16.5? (23 August)</a></li>\n\n\n\n<li>WPTavern: <a href=\"https://wptavern.com/gutenberg-16-5-adds-new-commands-to-the-command-palette\">Gutenberg 16.5 Adds New Commands to the Command Palette</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\">Phase 3: Collaboration &amp; Workflow</h2>\n\n\n\n<p><a href=\"https://make.wordpress.org/design/2023/08/10/admin-design-kickoff/\">Admin Design Kickoff</a></p>\n\n\n\n<p></p>\n\n\n\n<p class=\"has-large-font-size\">Stay in Touch</p>\n\n\n\n<div class=\"wp-block-group is-layout-flow wp-block-group-is-layout-flow\"><div class=\"wp-block-group__inner-container\">\n<ul>\n<li>Did you like this episode? <a href=\"https://lovethepodcast.com/gutenbergchangelog\"><strong>Please write us a review </strong></a></li>\n\n\n\n<li>Ping us on Twitter or send DMs with questions. <a href=\"https://twitter.com/gutenbergtimes\">@gutenbergtimes </a>and <a href=\"https://twitter.com/bph\">@bph</a>.</li>\n\n\n\n<li><em>If you have questions or suggestions, or news you want us to include, send them to <a href=\"mailto:changelog@gutenbergtimes.com\">changelog@gutenbergtimes.com</a>. </em></li>\n\n\n\n<li><em>Please write us a review on iTunes! <a href=\"https://gutenbergtimes.com/itunes/\">(Click here to learn how)</a></em></li>\n</ul>\n</div></div>\n\n\n\n<p class=\"has-large-font-size\" id=\"transcript\"><strong>Transcript</strong></p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Hello and welcome to our 88th episode of the Gutenberg Changelog podcast. In today&#8217;s episode, we will talk about the releases of WordPress 6.3 and 6.4, Gutenberg 16.3 and 16.4, and I&#8217;m your host, Birgit Pauli-Haack, curator at the Gutenberg Times and full-time core contributor for the WordPress Open Source project on the Automattic Five for the Future Program. And it&#8217;s a great pleasure for me to have with me today, Ellen Bauer. She&#8217;s a theme developer and 6.4 co-design lead on the release board. She&#8217;s also a co-founder of Elma Studio, a theme development shop and AinoBlocks is one of their products. Ellen has been a very early adopter of blocks and block themes and provided a ton of feedback to the core team. Thank you for joining me today, Ellen. Good evening to New Zealand. How are you?</p>\n\n\n\n<p><em>Ellen Bauer</em>: Thank you very much, Birgit. I&#8217;m very good. Yeah, I&#8217;m just excited to be here. And actually, coming on here has helped me a lot to catch up with all the things that are happening and it&#8217;s so exciting to see it all coming together. Yeah, I&#8217;m just really, really excited for 6.4 and to be part of it and all the things that are coming to WordPress. It&#8217;s really, really cool.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Excellent, excellent. So how is AinoBlocks doing? Do you have a theme and separate blocks for it?</p>\n\n\n\n<p><em>Ellen Bauer</em>: So yeah, yeah, we do have blocks like block collection or single blocks. It was mainly we started that AinoBlocks to experiment with building blocks and bring blocks into our workflow and to make things happen that weren&#8217;t possible for a long time with just the default blocks. That&#8217;s just how it started, just to build the designs out that we wanted. And we still love to use a lot of the blocks there, especially we have an advanced grid block and things like that. We need to catch up on the spacing and things like that that came into default.</p>\n\n\n\n<p>I&#8217;m planning to do that within the next one or two months to have a bigger update because what we&#8217;ve also been doing is building more block themes, coming back to our roots and back to themes because yeah, it&#8217;s now possible to build block themes and bring the two worlds together and just designing. We missed that with all just block building, we missed doing cool designs, but we didn&#8217;t want to build classic themes, too. So yeah, we were on hold for a long time. And now, we are really, really excited to get back into designing and we have a few cool new designs in the works and it&#8217;s just a lot of fun now to bring the worlds together and really create advanced and modern designs at WordPress. It&#8217;s really cool.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah, I&#8217;m looking forward to your new designs and what you and Manu will come up with. So for our listeners, the last Changelog was a little bit was about four weeks ago, and a lot has happened in those four weeks. We will not cover it all and we hope you can catch up on the other news outlets on those 6.3 came out and 6.3.1, the release candidate was just released this week, will come out next week. We are recording this on August 25th, 2023, and 6.3.1 is scheduled to come out on August 29th. So for those who are binge listening to this at a later date, if you haven&#8217;t upgraded yet, do that now. 6.3.1 is coming out with some bug fixes for some of the features that surface quite late in the release cycle.&nbsp;</p>\n\n\n\n<h3 class=\"wp-block-heading\">Announcements &#8211; WordPress 6.3 and 6.4</h3>\n\n\n\n<p>Speaking of 6.3 or WordPress release, the roadmap for 6.4 was also just published this week.</p>\n\n\n\n<p>It&#8217;s a tight release cycle with the first beta scheduled just four weeks from now, September 26 I think, and this makes it an ambitious list of features and updates. The release is set to be scheduled for November 7th, so there&#8217;s always the two months between beta or six weeks. No, it&#8217;s only five weeks, six weeks, five weeks between beta one and final release. So this one is quite special because the release was, is all about underrepresented gender people that lead the release in all release categories. And you are on design team, Ellen, I&#8217;m on the editor triage team with Anne McCarthy together, each of the release teams of two or three people deep. So what is the design team going to do in this release?</p>\n\n\n\n<p><em>Ellen Bauer</em>: So yeah, I&#8217;m just starting to get really into the work and kindly, Anne has, we have created a side channel in the Slack community for the design team and Estella did actually take the initiative on that. And kindly, Anne has posted and put together a list of tickets and things we are going to get into and some more people shared tickets and issues there. And then of course, the about page and yeah, we&#8217;re just getting started on that. It&#8217;s really exciting, I&#8217;m excited to be on the design team again and it&#8217;s really cool. Tammie Lister also is helping out and Rich put together a to-do list in the beginning, which was cool because last time, I joined for 5.6. Also for the underrepresented gender release, I was struggling at some points like what I&#8217;m supposed to do and when.</p>\n\n\n\n<p>So yeah, this is way more organized now and yeah, it&#8217;s really cool to do it a second time and have a group of people who have also done it before and let&#8217;s just know more what is happening. And I&#8217;m really excited about the new default theme, too. That&#8217;s really cool that this is going to be added for 6.4 because we also had a new default theme released with 5.6 back then. I can&#8217;t believe it&#8217;s already two or three, I think last podcast, you said it&#8217;s three years ago. I was like, what? It&#8217;s crazy, but I guess it is. Yeah, so that&#8217;s really exciting and-</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah. So the default theme leads are Jessica Lyschik and Maggie Cabrera.</p>\n\n\n\n<p><em>Ellen Bauer</em>: Maggie. Yep.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: And they just introduced the designs for the theme on a separate post and we will certainly share that in the show notes as well, as well with the roadmap, but that&#8217;s only one thing on the roadmap. The others are that there are two new features coming in. Well, at least one of them is the font library.</p>\n\n\n\n<p><em>Ellen Bauer:</em> Yes. So excited for that.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah, that independent from themes, you can now have fonts on your site and manage them, or that&#8217;s the goal for it. So you&#8217;re not tied to a theme with the font, how your site looks and how your text is displayed independent from the theme. And there will be the backend is already working for that. That comes in in Gutenberg 16.5, so that is one of them. And Anne McCarthy&#8217;s post, she also had some designs already added to it, some pictures of it. Another part is the revisions for the styles were new in 16.3, but there were no revisions for templates and template parts and those will come with 16.4 there on the list.</p>\n\n\n\n<p>We will have new blocks where a table of contents block has been long time in experimental, but it&#8217;s slated now to be released into core. There&#8217;s still a discussion about the time to read block because there is some, well, if you say okay, you have 30 minutes to read, that&#8217;s a normal, it normalizes how the reading capabilities, but if you are dyslexic or in other ways have accessibility issues, it&#8217;s ableism to give you how long you can read about this, that you&#8217;re not normal.</p>\n\n\n\n<p>And that is definitely a discussion to have if we want to have that in core. So the discussion is ongoing. Another block would be the scrolling key block, which it comes out of the &#8217;90s and will never leave us scrolling.</p>\n\n\n\n<p><em>Ellen Bauer</em>: Yeah, I actually felt, I mean, we&#8217;ve seen that a lot in designs being trendy, but I was also surprised to see that as a core block in discussion. I mean, it&#8217;s cool that we don&#8217;t have to have custom solutions, but yeah, I&#8217;m most excited about the table of contents block. I remember last year, I was about to like, okay, should I have a custom block? Should I do that? And then I read, okay, it&#8217;s being done. So it&#8217;s cool to finally see that being added. Can&#8217;t wait for it.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah. And I was playing around with it or testing it, playing around equals testing and I always found it in the previous versions limiting because if I have a table of contents, I want to style it, I want to have some maybe different fonts, maybe different backgrounds, maybe different titles, a control over which heading goes in or out. I&#8217;m not sure that all my expectations will come in. So there is definitely room for a custom table of contents block, but I really don&#8217;t like when a table of contents that&#8217;s only 10 or 15 items long that has all the numbers and the indenting numbers in addition, that&#8217;s not additional information, any distracts, is this a priority or not. So I wasn&#8217;t really able to make it a bullet list, but I think that those things will be fixed definitely.</p>\n\n\n\n<p>Then there&#8217;s also the image lightbox or each image block will have a feature that you can, with light box, zoom in on it or have a larger version on it on your screen. If you click on the image, that has been experimental in the Gutenberg for a while. I&#8217;m very excited about the order insert blocks because that is a piece that has been missing for since the beginning. I think that you can add something to a block that is not in the interface, like what would it be?</p>\n\n\n\n<p>So the example is a like button to add it to a comment, or another heading link or maybe just a citation or anything that you can put in dynamically that the user doesn&#8217;t have to control it. So I was thinking sometimes for the click to tweet, can we do this on a block? And it doesn&#8217;t have to be in a separate block, you can just put it in a paragraph or in a heading, or have an additional anchor on a heading without having to do a table of contents to get them automatically built. All these, they&#8217;re all different. I&#8217;m sure there are a lot of use cases for that, too, but I&#8217;m really excited that that is coming to the editor.</p>\n\n\n\n<p><em>Ellen Bauer</em>: Yeah, I think so too. It&#8217;s, like you said, been missing for forever, just like you said, a like button or tweet button that yeah, it just makes it more attractive and easy to use blocks if you have these things auto inserted. Yeah, you don&#8217;t want to tweak around with these little items. I think that&#8217;s pretty cool. And I was surprised about the next one, the post formats. That&#8217;s pretty cool to come back to these ones. We have an old theme that&#8217;s like a post format Tumblr-style theme and it&#8217;s been ongoing popular with post formats, so it&#8217;s cool. We can maybe do a block version redesign for that theme, that would be amazing.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah, and post formats weren&#8217;t really tended to in the block editor at all.</p>\n\n\n\n<p><em>Ellen Bauer</em>: Yeah, not at all.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: So bringing that in, it&#8217;s definitely there has been some feedback that this is missing and some theme developers actually didn&#8217;t switch because it wasn&#8217;t available. So that is a good thing for adaptability, but it&#8217;s also with all the insecurities around the social networks and the fragmentation of it that many content creators are thinking about maybe building their own and just giving them post formats. And one of them is actually the non-title post that you just like a tweet, you get just 280 characters and put it in a post and you don&#8217;t need a title for it, and you have it on your website and then you can share it via an ActivityPub process with any of the social networks that you wanted to do. And you don&#8217;t have to go out and go directly to the social networks.</p>\n\n\n\n<p><em>Ellen Bauer</em>: I always love that so much and I&#8217;m already excited to actually build a theme for these kind of purposes. And yeah, like you said, with Twitter not being there anymore, it&#8217;s sad. I feel for the first time actually really excited to start blogging again, and I think it will do that, just like a private blog because I don&#8217;t feel there&#8217;s the right home anymore on any social platform. And yeah, I really miss something and I&#8217;m really excited to use WordPress as not only for business websites and things like that, but actually for blogging again, which is funny and cool to come back to that.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah.</p>\n\n\n\n<p><em>Ellen Bauer</em>: I haven&#8217;t felt the urge to just blog for such a long time and now, I want to blog again. So yeah, that&#8217;s really exciting to see that. And I&#8217;m already seeing some new block themes come out of that project as well, which is pretty cool and creative.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: And it&#8217;s certainly for writers and blogging, but it&#8217;s also for if you cherish Instagram just to share one photo and be done with it from your mobile phone and now you could do this with your own website, I think it would be just as well, but people who are interested in would follow your blog and your pictures on the blog. And if it has a nice theme that highlights that similar to Instagram or something like that, then and people can follow with a Jetpack or wordpress.com account, they can follow any blog they want. And I know that the ActivityPub plugin is now sponsored by Automattic and so we can create WordPress so it can actually push things into those social networks and even people following on the social networks, but you don&#8217;t have to create on those social networks, you are in control of your own posts and pages and pictures. And so I&#8217;m really, I think this is the most important thing for the web, for the independent web in the future.</p>\n\n\n\n<p><em>Ellen Bauer</em>: I think so, too. I think so, too.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: So I&#8217;m really, really great.</p>\n\n\n\n<p><em>Ellen Bauer</em>: Yeah. Seeing what can happen to these network, it just doesn&#8217;t feel right to just post your&#8230; Yeah, I feel exactly the same. I was like yeah, even Instagram, it doesn&#8217;t really feel good to post your content there. I was like, &#8220;I want to do it on my own website and still share there&#8221;, but yeah, I think yeah, we really make these experiences now and it&#8217;s cool. Yeah, it&#8217;s really exciting.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: All right, yeah. And then also 6.4, the writing experience will have a focus on that. So the content creation flow on the writing part, like the distraction-free writing, list items, quotes and navigation items, getting additional capture toolbars and all this nice things. Then interfaces and tools like list view, top toolbars, command palette, they&#8217;re all getting additional enhancements or expansions. Site editing will get definitely additional UX polish and quality of life and also additional features.</p>\n\n\n\n<p><em>Ellen Bauer</em>: I love the list view.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Oh yeah.</p>\n\n\n\n<p><em>Ellen Bauer</em>: It&#8217;s my favorite thing. So having the group locks, custom naming is like yeah, I mean, we have been asking for that for quite a while and it&#8217;s coming up. And now having that, it will be so cool.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah, yeah, and then this…</p>\n\n\n\n<p><em>Ellen Bauer</em>: I mean for designing, the list view is just&#8230; We need to be in control.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Right, right, right. And if it&#8217;s just a group, group, group group, you don&#8217;t know where you are.</p>\n\n\n\n<p><em>Ellen Bauer</em>: Yeah, it&#8217;s awful and it will be cool. And for page patterns, having them like the sections ready with naming and stuff to get out to your customers and theme users, that will be just improving the whole experience because at the moment, it doesn&#8217;t look great, but I still love to use the list view.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah, yeah. And yeah, there will be an expansion on the box shadow component, which is in the Gutenberg plugin. It&#8217;s also I think for one or two blocks available, but now it will be available for more blocks, of course. And then custom CSS enhancements are coming, more support for elements for individual blocks, and all these little but important things will get a refinement and enhancements. The same for the global styles, the style book especially, which is such a great help in previewing themes in designing, seeing how the style variations change your sites and all that.&nbsp;</p>\n\n\n\n<p><em>Ellen Bauer</em>: I love that, too.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah, that&#8217;s actually one of the big features in 6.2 and 6.3. 6.2 only was a little bit hidden in the global styles, but it brought forefront in 6.3 for the site editor in the site editor so you can directly access it. And another focus for 6.4 is the pattern, realm of patterns like the ability to set categories to update the inserter experience to improve the compatibility with non-block themes, which is still an issue. And another idea might not work with 6.4, but there&#8217;s definitely a stretch goal there to have partially synced patterns. Right now, we have either sync patterns or unsynced patterns, but sometimes you want to have update the style of a pattern and that replicate through previous posts or pages, but not the content. So you couldn&#8217;t do that right now, but there&#8217;s an effort to do that. Depending on how the testing goes and how easy it is to work with, it might make it into 6.4, it might not make it, but that is still&#8230; So there&#8217;s quite more navigation creation and management. Now that there&#8217;s the base is done, there&#8217;s some additional…</p>\n\n\n\n<p><em>Ellen Bauer</em>: It&#8217;s like never ending. It&#8217;s so cool.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: No ending, no.</p>\n\n\n\n<p><em>Ellen Bauer</em>: I saw the poster, I was like, &#8220;What is happening? This is so cool.”</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah.</p>\n\n\n\n<p><em>Ellen Bauer</em>: I mean, it&#8217;s a lot of work. We will see how much we can get into with not a lot of time, but it&#8217;s exciting. I mean, at one point, these things will get added to the core, so very exciting to see that.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah. So when you go, dear listeners, to look at that roadmap post that will be linked in the show notes, you&#8217;ll also see links to the current GitHub issue or PR that is in the works about the certain items and you can then gauge how far it is along, how long it is, and also chime in and help with the testing. That would be really good. Another way of it is we will have a separate, there is a separate project board for 6.4 with quite a few items on it. More will be added to it of course, from this and from some of the tracking issues, and there you can follow along on the progress of in the next five weeks until we get to Beta 1. So all new enhancements, new things need to be in the release that are supposed to be in the release by Beta 1.</p>\n\n\n\n<p>Then it’s new feature freeze. And then after that, there&#8217;s only bug fixing in the beta cycle to release candidate one. There&#8217;s even possible to do some bug fixing afterwards, but then there&#8217;s also release candidate one string-free. So if there&#8217;s anything, user interfaces or something like that won&#8217;t get into the release after that because the translators are working on the translation of the new release. And so yes, it&#8217;s a long list for such a short turnaround time, but well, we don&#8217;t know where the boundaries are until we get to them. So we will report of course on the progress on things. We mentioned already the introducing of 2024, we will share the link in the show notes as well. What do you think?</p>\n\n\n\n<p><em>Ellen Bauer</em>: So I read the post that was posted yesterday by Jessica and maybe I think what we didn&#8217;t mention yet is so Maggie and Jessica are leading the theme development, but Beatriz actually did the design work for it. And yeah, I checked out the Figma file today this morning and I think it&#8217;s really, really amazing. I&#8217;m really excited. It seems like a lot of work, but I think a lot of people are already helping out with creating patterns and stuff. I hope maybe I have the chance to do one or two patterns as well if I find the time, or style variations I think is a topic that people can help out with creating and contributing like we did with the last default theme. But yeah, I think it&#8217;s beautiful, it&#8217;s very sophisticated, and I like that they&#8217;re working on different user cases. So I think there&#8217;s a blogger writer category and business, small business portfolio type or small business and yeah, and portfolio.</p>\n\n\n\n<p>I think the three are the main topics they want to cover with that theme and yeah, it looks beautiful. It makes me really excited and I think it fits to WordPress and the new WordPress we see. It&#8217;s really, really beautiful, I love it. And I think yeah, it&#8217;s really exciting to see all the patterns and page templates and all the things you can do because the last team had style variations, but not a lot of a layout building included so that&#8217;s going to be exciting. And that, combined with the free font library and the options there, really, really cool to see that.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah. I think we&#8217;re getting to a place where when you install WordPress for the first time and you use the default theme out of the box there that you have a headstart on getting your website finished just with the tools that come from the default theme. So there are two things that are not possible now, but that they&#8217;re working on for the 2024 that is that you can have templates, more than one template for a homepage. Right now, you can only have one. Well, the front page and yeah. And then if you create another one, it overrides that and it doesn&#8217;t give you a choice.</p>\n\n\n\n<p>So that&#8217;s one thing, that would cover all the three use cases that you mentioned. And the other part is to actually also provide designs for the various post formats. And when you look into the post, there is one section there that shows you, or in the Figma file, there&#8217;s one section there that shows you just a mason gallery how the posts are, the different post formats are displayed. And I think that&#8217;s what you mentioned with your older theme, Ellen, that it&#8217;s still very attractive for people and I&#8217;m glad that we might have that out of the box.</p>\n\n\n\n<p><em>Ellen Bauer</em>: Yeah, it&#8217;s really, really exciting. Yeah, and you can do so much with this theme. And I think, yeah, we never had that before, that default theme was really that flexible and people can really&#8230; Very usable, it looks very usable for the first time. I&#8217;m really, really excited. And the design is I think really fits to what WordPress has to offer. I think it&#8217;s a really great work, very exciting.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: And I&#8217;m looking forward to also seeing the page patterns. So when you create a new page that you can have a series of right now, you have to assemble the page yourself with various different patterns that might fit together or not. And with the page patterns, you have a single page fully created and you just need to change your content, the pictures and the content, but that it already gives you a blueprint for single pages, be it a service page or be it an about page or even the homepage. So I think that gives any user a head start with a new site or with an existing site that decides to have that theme.</p>\n\n\n\n<p><em>Ellen Bauer</em>: So true. And yeah, I remember really advocating for&#8230; We need page templates, page patterns, whatever we call it, but ready-to-go pages pre-designed for users to choose and have multiple options. We can imagine three or five about pages and they can choose because yeah, putting the patterns together is for, like a lot of users, still like a daunting idea and it&#8217;s overwhelming and why not provide it? We have patterns, we can do that. And yeah, we&#8217;ve also been doing that with our themes quite a lot and I think it&#8217;s really, really attractive to have that come together.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah. I have to say that, yeah, you have the feedback loop directly with your customers, so I&#8217;m glad that WordPress is on the right track there.</p>\n\n\n\n<p><em>Ellen Bauer</em>: Yeah, I think so because patterns just in general, it&#8217;s still, I mean, people getting more used to it but it&#8217;s really hard to understand for a lot of people, like what is that? It&#8217;s just a section? I want a page, and providing ready-to-go pages is just so much easier. It&#8217;s really, really cool to see that and have more themes, have that available. Maybe even, I remember saying that last year, even already discussing that, that we have next to a pattern library, like pattern directory, have a page pattern or maybe even there&#8217;s a new word that needs to be created for these patterns. Maybe not, maybe they can live in the pattern preview but they could be too long maybe for preview, I don&#8217;t know. But you have a library for that to theme independent available. I think that&#8217;s really, would be really attractive.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah, and that&#8217;s I think where the pattern category work comes in where you can categorize those patterns and also the browsing the previews. So if you have a bigger screen, you get a two-column preview of patterns that are under a certain category so you get a thumbnail view, how they&#8217;re big, and that works nicely, but those underpinnings had to first be built. Yeah.</p>\n\n\n\n<p><em>Ellen Bauer</em>: Yep. Yeah, yeah, yeah. It really comes together and I love what I see, yeah. It&#8217;s so funny that things, like I said last year, it felt like so much struggle to get people excited about block themes and site editing and now it&#8217;s coming together. I think with a little bit more practice, users will really just love it and forget about what we had before. It&#8217;s really cool.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah. Well, it also comes in handy that the navigation block editor has gotten a lot of improvements in 6.2 and 6.3.</p>\n\n\n\n<p><em>Ellen Bauer</em>: So true.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Community Contribution</h3>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah. And Dave Smith, a core Gutenberg contributor, posted an update on it so you can read up about it, how it&#8217;s going to work, but because to be honest, I personally struggled after the first year trying to make navigation work beyond a simple navigation with pages to add a site logo to it or to add a search bar to it or something like that. It was definitely a struggle and it was not thought through, and I wanted to have multiple menus and now, that all came together in 6.3 with the site editor where you have multiple places where you can tap into the navigation and make adjustments, be it providing navigation places and just switch out the menu for that, that was not possible. Before, you had to remove the navigation block and add it again and then yeah, it was yeah, the…</p>\n\n\n\n<p><em>Ellen Bauer</em>: Yeah, yeah, it was the biggest blocker I think for users to get into, they&#8217;re like, &#8220;It&#8217;s not working&#8221;. And yeah, like you said, very simple sites and then it ended. Yeah, very, very exciting to see that. I think now, yeah, just with that, people can really start building entire websites, block themes and stuff, it&#8217;s really tremendous work. And I can imagine it was difficult to get that right, or it&#8217;s still an ongoing process. But yeah, I&#8217;m really happy to see that, too.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah, and that is, we&#8217;re just, it&#8217;s all I wanted to point out from hosts, from the themes and then now, we get into what is actually happening in the Gutenberg plugin.&nbsp;</p>\n\n\n\n<h3 class=\"wp-block-heading\">Gutenberg 16.3 and 16.4</h3>\n\n\n\n<p>So Gutenberg 16.4 was released on August 9th, so right after 6.3 was released, and certain items from the Gutenberg 6.4 release actually made it into 6.3. There were actually quite a few, I think 20 to 25 items. I have not identified them, but you will see it in the PR if you follow through the Changelog and click on one of the PRs and you want to know, it had a back port to WordPress release candidate labor that was added and then once it was back ported removed, you see that in the history of the PR. So Sarah Norris was the lead manager for the release manager for 16.4 and she wrote that it introduces exciting new features, including both a new experimental feature and a new component, and we will talk about what those are alongside many enhancement and bug fixes.</p>\n\n\n\n<p>Bug fix highlights include many improvements to the recently added footnotes block and enhancements to patterns. The footnotes block, most of the bug fixes actually made it into 6.3 major release, WordPress release and some of the enhancement for patterns, too. Those were the two areas where there were last minute bug fixes that made it into the release. There were in total 184 pull requests authored by 60 contributors, including two new contributors, and the release has a list of all of them.&nbsp;</p>\n\n\n\n<h3 class=\"wp-block-heading\">Features</h3>\n\n\n\n<p>One of the features that she mentioned, the new component was a basic progress bar component and in the release note, she also, Sarah also has some notes to that.</p>\n\n\n\n<p>And it&#8217;s a horizontal progress bar component that can be used in various places and it replaces the spinner component for the site editor loading experience. Of course, these are public components that can also be used in third party or custom blocks or custom plugins, so there was that. It also gets some design tools with it as well. And it can be tested in the Storybook, which is other, it&#8217;s a different thing than the Style Book. The Storybook is for developers and on the WordPress GitHub repo, you can see the Storybook of all the components with all the attributes and you can test around just in isolation and then grab the code and add it to your own code base.</p>\n\n\n\n<p><em>Ellen Bauer</em>: Yeah, I&#8217;ve just looked at that the other day with the progress bar and yeah, I think it&#8217;s definitely an improvement. And I&#8217;ve actually just opened the Storybook for the first time.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Oh, really?</p>\n\n\n\n<p><em>Ellen Bauer</em>: It&#8217;s pretty cool to have.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah.</p>\n\n\n\n<p><em>Ellen Bauer</em>: Yeah. I&#8217;ve never seen that. But I used lots of these items for our blocks before, but I&#8217;ve never seen that. That&#8217;s great to know. It&#8217;s new to me.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah, I think we need to…</p>\n\n\n\n<p><em>Ellen Bauer</em>: Was it? Yeah, no.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: It has been there since a long time.</p>\n\n\n\n<p><em>Ellen Bauer</em>: I think it&#8217;s a long time, yeah. Maybe I have been there, I forgot about it. Maybe I have seen it, but pretty cool.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: If you click on the introduction, it says how the site works and the resources to learn more. And also, it has the code that you can add. It shows you different variables on things, attributes and how they look, so and so, and it also has, there is a section there for components experimental. If you go there, just be aware that it might, and progress bar is one of them, just it might change slightly of the course of development. We definitely need to promote that more that people can go through the Storybook and test some of the components and see how they work, what the documentation is about.&nbsp;</p>\n\n\n\n<h3 class=\"wp-block-heading\">Enhancements</h3>\n\n\n\n<p>So the next item on the Changelog is that now the keyboard shortcut for the command palette is now visible in the side view, it&#8217;s command K or control K, but I never remember keyboard shortcuts, so I&#8217;m glad that it&#8217;s now displayed in the header section of the site editor and so you can know it, too.</p>\n\n\n\n<p><em>Ellen Bauer</em>: I actually love shortcuts, but I also tend to forget them. So that&#8217;s handy because there are some cool ones and you can really speed up your workflow, especially if you&#8217;re really designing in WordPress, so that&#8217;s really cool. Yeah, I love to have the shortcut. Okay.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah, I think you would really love to use the command palette for these quick steps things because you don&#8217;t have to click through all the menus to get there. So the command palette is a open page or add page and then you get a … or open page and then you get a list of the pages that are on the site and then you can select them without going to out of the site editor into the pages or from wherever you are and go to pages and then go down the menu items. So I really like the command palette, and that will definitely speed up content creation.</p>\n\n\n\n<p><em>Ellen Bauer</em>: Oh, true. Yeah, it&#8217;s really powerful.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: What also comes with enhancement on the site editor, there are quite a few, but I&#8217;m only pointing out to that one. The pattern library, it switches to a three-column layout on use screen, so that is definitely&#8230;</p>\n\n\n\n<p><em>Ellen Bauer</em>: I love that.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: That fills it all up. Yeah.</p>\n\n\n\n<p><em>Ellen Bauer</em>: Yes, I love that because we are building a lot of patterns and I was always like, can we just preview more?</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah, yeah.</p>\n\n\n\n<p><em>Ellen Bauer</em>: One thing I noticed with the pattern, like the explore all patterns view, I feel weird and I wonder if it&#8217;s just temporary or so because the two-column layout is like a light gray background because most of the patterns are most likely with a white background, in most themes at least. And then explore all patterns is a white background and it doesn&#8217;t look great. Have you noticed that? And I wonder, is that an error or is it just…</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: I think it would be something to make an issue out of on GitHub, but what you are referring to is the inserter.</p>\n\n\n\n<p><em>Ellen Bauer</em>: Yeah, yeah, yeah, that&#8217;s true.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: And the switch to three-column layout on your screen, that&#8217;s on the site editor.</p>\n\n\n\n<p><em>Ellen Bauer</em>: In the site editor, okay, I get it. I get it.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: In the patterns section of the site editor where you have the menu on the left-hand side.</p>\n\n\n\n<p><em>Ellen Bauer</em>: Okay, okay. Yeah, of course, where on the site editor. Oh, yeah.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: In the site editor, yeah.</p>\n\n\n\n<p><em>Ellen Bauer</em>: But yeah, in the site editor, I have the dark background as I can see here.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah.</p>\n\n\n\n<p><em>Ellen Bauer</em>: Yeah. Okay, that makes sense. I have to test that out again.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah, but it&#8217;s definitely worth I think creating an issue for the inserter to maybe also recognize some of the dark light contrast there.</p>\n\n\n\n<p><em>Ellen Bauer</em>: Yeah. I haven&#8217;t checked if there&#8217;s an issue and it&#8217;s also not consistent, why I have this light gray and then switch to white? Yeah, I will check it out if there maybe is an issue already or what&#8217;s going on there because yeah, it doesn&#8217;t really make sense.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah.</p>\n\n\n\n<p><em>Ellen Bauer</em>: And I tested a few themes just to see if it was me, if I had it, but they all had the same issue. Maybe it&#8217;s temporary.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: And it might be even a good way to say that the browse all patterns goes to the site editor if it&#8217;s a block theme. With the classic theme, that wouldn&#8217;t work, but yeah. But to have that, that would go site editor. Yeah.</p>\n\n\n\n<p><em>Ellen Bauer</em>: That makes sense, yeah. So true. Yeah, I mean, we just want to stay in the site there because it looks so nice and polished. That is true. It would be cool. I will test that out, maybe I can create an issue.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: I&#8217;m just making a note there.</p>\n\n\n\n<p><em>Ellen Bauer</em>: So now, we go into the post editing.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah, we are now here at the post editor. There are new commands available now to show or hide the block breadcrumbs. That&#8217;s I think on the bottom of things to get into switching off settings. So enable pre-published checklist or disable the pre-published checklist or change into, or just make a preview in the new tab. Those new commands for the power users there to switch off, on and off the settings so you don&#8217;t have to go through the menu items to go to the options bar and then change the settings for certain things. Even if you just want to toggle on and off and not have it permanently done, changed for your session.</p>\n\n\n\n<p><em>Ellen Bauer</em>: I love all the fine-tuning we are now at. It&#8217;s incredible to see that. Oh my god, all these little things happening that do make a difference, it&#8217;s so cool.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah. Speaking of, there&#8217;s the footnotes received in 16.4, add link background and text color support. So now, you can not only create the footnotes and they take on any styling from the theme, but now you can as a user also change the text color background and all that for your footnotes. That&#8217;s actually a very interesting new block, I really love it and I&#8217;m glad that it&#8217;s now in core to test it further on various use cases.</p>\n\n\n\n<p><em>Ellen Bauer</em>: So true.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: And then also, the…</p>\n\n\n\n<p><em>Ellen Bauer</em>: And then you have the pre-formatted.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah.</p>\n\n\n\n<p><em>Ellen Bauer</em>: Get spacing support.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah. In 16.4, there were more additional enhancements to the blocks performance, you got the spacing support you said, yeah. And then in the words block, you can have now and even the line breaks so you can, instead of paragraph, you also can have line breaks there. Social links get the threads icon so you can have in your list of social profiles that you point people to also go to the new Threads environment of Facebook.</p>\n\n\n\n<p><em>Ellen Bauer</em>: That is good to have. I&#8217;ve yet to check out Threads. I mean, it&#8217;s good to have it. I think especially that since we don&#8217;t have Twitter anymore really, I&#8217;m excited. I want to try it. Have you tried it yet?</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: No, and I&#8217;m also hesitant. It&#8217;s not rolled out to all Instagram users. So you need to have an Instagram account and what I saw…</p>\n\n\n\n<p><em>Ellen Bauer</em>: Yeah, that&#8217;s true.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: &#8230; on certain platforms when people tried it was if you wanted to delete it again, you actually needed to delete your Instagram account…</p>\n\n\n\n<p><em>Ellen Bauer</em>: Oh, wow.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: &#8230; and I wouldn&#8217;t want to go there.</p>\n\n\n\n<p><em>Ellen Bauer</em>: That&#8217;s not nice. Oh yeah, that&#8217;s not nice.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: So I wouldn&#8217;t going to go there.</p>\n\n\n\n<p><em>Ellen Bauer</em>: That&#8217;s true.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Well, but on the other hand, yeah, maybe I should delete my Instagram account already.</p>\n\n\n\n<p><em>Ellen Bauer</em>: You can delete everything. Yeah, I mean, we don&#8217;t need more social platforms to be honest, I feel. But I&#8217;m always keen to check something new out.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah, we do. Me, too.</p>\n\n\n\n<p><em>Ellen Bauer</em>: It looks nice, it looks nice and simple and while you&#8217;re already at Instagram, but yeah, I think it&#8217;s weird that it&#8217;s connected with Instagram because I know how they&#8230; Maybe.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: I didn&#8217;t get it offered yet, so maybe because I&#8217;m not on Facebook, I&#8217;m only on Instagram, so I don&#8217;t know.</p>\n\n\n\n<p><em>Ellen Bauer</em>: Oh well, was it that maybe or could it be that this had something to do with European Union holding back with it? I think I have no clue. I didn&#8217;t follow it, but I think Manu mentioned something like that.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yes. Yes, you&#8217;re right.</p>\n\n\n\n<p><em>Ellen Bauer</em>: So I think that&#8217;s it.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: It&#8217;s only for US Americans and not for EU people. So that&#8217;s another reason.</p>\n\n\n\n<p><em>Ellen Bauer</em>: Yeah. New Zealand somehow, we got lucky. We can use it, but I just didn&#8217;t have time yet.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah.</p>\n\n\n\n<p><em>Ellen Bauer</em>: Yeah. I think that&#8217;s the problem, which is actually good that they&#8230; But yeah, I don&#8217;t know where that will go, but it&#8217;s good to have the icon at least.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Yeah. Yeah, so true. Yeah. I just started being on Bluesky, I just got my invite so I just set it up. So I&#8217;m wondering if there&#8217;s actually a Bluesky icon already, so we&#8217;ll see. If not, I&#8217;m going to create an issue about it.</p>\n\n\n\n<p><em>Ellen Bauer</em>: Yeah. Historically, I think I remember WordPress being always super late to add icons, so it&#8217;s cool that they&#8217;re faster now.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah. So next thing on our list is that unsync patterns didn&#8217;t come into the quick inserter. So if you started slash and started typing, you didn&#8217;t get a selection of your patterns. That is now&#8230; You can now do that. You find your patterns in there if you use the quick inserter. So that is&#8230; Also, if you search for it, you find them in the quick inserter. So I think that&#8217;s a really good enhancement. I was always wondering why I needed to go to the big blue button to get to my patterns.</p>\n\n\n\n<p><em>Ellen Bauer</em>: That&#8217;s another big improvement with the sync patterns, unsync.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Definitely quality of life improvement. Yeah.</p>\n\n\n\n<p><em>Ellen Bauer</em>: It&#8217;s so helpful for a user.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah, absolutely. So we are almost at the end of what I wanted to point out as enhancements. Go and read the post release. I wanted to point out also that with this release, the plugin minimum supported PHP version is 7.0. I don&#8217;t think that anybody who uses a Gutenberg plugin is actually on 5.6, but just so if you are, now is the time and you want to be in touch with all the future releases, make sure that you upgrade your site to at least a 7.x version of PHP. That coincides with the WordPress 6.3 release that also bumps the minimum supported PHP version for WordPress to a 7.x PHP version. So 6.3 is the first version that does not support 5.6 anymore, PHP 5.5 versions, 5.x versions.&nbsp;</p>\n\n\n\n<h3 class=\"wp-block-heading\">Bug Fixes</h3>\n\n\n\n<p>In the bug fixes, I found a few things that I wanted to point out because there were bugs that we had to deal with and we don&#8217;t, or maybe not.</p>\n\n\n\n<p>So the cover block ContrastChecker, or the ContrastChecker that is in the sidebar to give a hint when your contrast between the foreground and the background color was not accessible or not high enough to be accessible, that algorithm didn&#8217;t work well with the cover block because of the combination between text, image, alpha overlay color and all that, that was way too much for the algorithm. So they disabled it for the cover block. They didn&#8217;t disable it for the InnerBlocks. So if you have InnerBlock a paragraph and you change the background color there and the text color of that doesn&#8217;t match, it still works. But for the cover block itself, it&#8217;s disabled because it had too many false positives and it was just the algorithm doesn&#8217;t go far enough. And then it&#8217;s better to not have it than having false positives in there. There&#8217;s, in the release in the PR, there&#8217;s also some discussion in there on why the team came to that decision.</p>\n\n\n\n<p><em>Ellen Bauer</em>: It could be that it&#8217;s maybe temporary or…</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah, I don&#8217;t know if there&#8217;s a focus on improving the ContrastChecker because that was an external tool, but it&#8217;s definitely just the nature of the cover block just has too many variables in there. So the image block finally got a fix on the image sides for the all wide and full width alignments. Sometimes that wouldn&#8217;t fill it all up or grab the wrong size, so this is now fixed. It has multiple variations there and it&#8217;s definitely a better feel for the image block when you add alignments there. And then the last one is that the video block got a fix for the styling. For the vertical alignment of the video, there was always a little gap on top of it. That was hard coded and they removed it. So if you fix it locally on your own theme or in your own site, you might need to look at it.</p>\n\n\n\n<p><em>Ellen Bauer</em>: I think I saw that. Oh, I have to check that out. I haven&#8217;t used the video block quite often, but I mean, it is handy. I have to test it. I think I saw that once that it has this gap. I remember, I think.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah. Any spacing is now with the space. So from the beginning, the spacer block was one of the most used blocks amongst the top five most used blocks.</p>\n\n\n\n<p><em>Ellen Bauer</em>: Oh my god, I never liked it.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah, but it helps. So made it easy for content creators to…</p>\n\n\n\n<p><em>Ellen Bauer</em>: That is true.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: &#8230; just adjust things, yeah. And now with dimensions controls, with padding and margin, it still is probably easier to use than figuring out, okay, what is padding and what is margin again? Is it inside or outside or what? Yeah, but it&#8217;s not that necessary anymore, especially when you have patterns and theme templates that actually took care and all of them put together. Yeah.</p>\n\n\n\n<p><em>Ellen Bauer</em>: I&#8217;m not sure, but the problem was also that it was fixed, like a hundred pixels stayed a hundred pixels. Is it still like that? I don&#8217;t even know why.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: The spacer block? No, no.</p>\n\n\n\n<p><em>Ellen Bauer</em>: Yeah, the spacer block.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: It can say four, four pixels, 15 pixels, 150 pixels. Yeah.</p>\n\n\n\n<p><em>Ellen Bauer</em>: No, I mean, does it responsive? The spacing, is it like fluid?</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Is it fluid? I&#8217;m not quite sure. That&#8217;s a good question. I think it is.</p>\n\n\n\n<p><em>Ellen Bauer</em>: Because that was the main reason why I never used it.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Because it wasn&#8217;t fluid, yeah. Yeah, I think it is.</p>\n\n\n\n<p><em>Ellen Bauer</em>: I haven&#8217;t checked that.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: &#8230; it&#8217;s definitely a good question.</p>\n\n\n\n<p><em>Ellen Bauer</em>: Maybe we can&#8230; Now, we have spacing way better.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: And that&#8217;s fluid. So then on the post editor, you can allow styles to be changed dynamically through the editor settings. That is a PR that refers to the theme JSON. So you can I think, or to block extenders. Yeah, that&#8217;s for the extenders to update editor settings. Now you can make them dynamically. So you can have theme styles and then react to that, have through the editor provider. That&#8217;s highly technical and there is in the PR some example code for the experiments, but it helps theme developers or plugin developers to also change some of the styling dynamically, CSS or any other means. I think I&#8217;ll put that on the list of what&#8217;s new for developers on the developer blog. Where else? I think that we are on the end of 16.4 except for one more. There is an experiment for auto inserting blocks on the front end and the editor wire REST API. And the release post has an unusual amount of information about that, which is actually almost a… but it&#8217;s really cool how you can auto insert the&#8230; We talked about it, right?</p>\n\n\n\n<p>We talked about it here at the&#8230; It&#8217;s the experimental auto insert on the block JSON file where you can then say, okay, on the core common template for instance, add as last. And you have before, you can add blocks before, after the block you added to or as a first child or last child through the block on the front end. So yeah, definitely try that out, test it. And definitely, there&#8217;s a tracking issue also linked in the release post so you can see what other plans are there for this feature because it&#8217;s still, as I said, experimental.&nbsp;</p>\n\n\n\n<h3 class=\"wp-block-heading\">Documentation</h3>\n\n\n\n<p>The documentation had a ton of changes, updates, and if you are struggling with some of the things because the documentation is not going far enough or deep enough, I would think that going through the release Changelog and look at the documentation issues to see what all changed.</p>\n\n\n\n<p>So there is an API reference documentation for the interactivity API, which still is, it&#8217;s probably not coming for 6.4, but it&#8217;s definitely already in the Gutenberg plugin as a private API right now so core blocks can use it. There&#8217;s an update on the Gutenberg release process documentation. So if you are a contributor and you think about, &#8220;Oh, maybe I want to lead one of those Gutenberg plugin releases&#8221;, it&#8217;s definitely worth looking into it because it made it more fluid for new people that have had an experience with GitHub and Gutenberg, but they haven&#8217;t done a release yet. There&#8217;s also a getting startup guide for the interactivity API, started the block API version three has been documented now, and the create block package received support, for example, property and template defaults. So the scaffolding tool create-block is now a little bit more comprehensive in what it offers as a tool. I think that&#8217;s it. Any comments on those last three, four things that we talked about, I talked about?</p>\n\n\n\n<p><em>Ellen Bauer</em>: Not too much. I need to check out the&#8230; That&#8217;s exciting that you mentioned the create-block tool because I love to use that. I haven&#8217;t used it for a while. Now, I need to come up with a new block idea.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah, yeah.</p>\n\n\n\n<p><em>Ellen Bauer</em>: Maybe not. I was so excited to do more design and theming again. I&#8217;m holding off with new block ideas.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah, you mentioned that you&#8230; Yeah, after creating so many custom blocks.</p>\n\n\n\n<p><em>Ellen Bauer</em>: Yeah, it&#8217;s a little bit&#8230; I loved it, but just working with customers that people, I think maybe because for us, knowing that we come from design and theme worlds, they get just way more excited about design and themes and patterns compared to blocks, the people who follow us in our work.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah, definitely, because you see something…</p>\n\n\n\n<p><em>Ellen Bauer</em>: Yeah, yeah, visually.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: It&#8217;s haptical, yeah. I think the barrier for entry for custom blocks is sometimes a little harder. I can see that.</p>\n\n\n\n<p><em>Ellen Bauer</em>: Yeah, it was really good for me to get into it and having that skill and I enjoyed it, but it&#8217;s a lot of work with you really have to put a lot of effort into your block to make them work and make them competitive. And yeah, at the moment, I don&#8217;t know if we want to do that.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> We don&#8217;t do it because it&#8217;s easy, we do it because it&#8217;s hard, right?</p>\n\n\n\n<p><em>Ellen Bauer</em>: It is true, but it needs to make sense too. We just started building blocks because there was so much missing. And at the moment, we are fine with what we have. I mean, there are a few ideas we have maybe for blocks, but at the moment, we can build the designs we want to build with the blocks available and with our custom blocks so it works. And yeah, if we ever run into something we can&#8217;t do, then we will just create a block. Actually, if you get into it, it&#8217;s not, like for most of the blocks, for most things, it&#8217;s not so hard, it&#8217;s actually pretty easy now. It&#8217;s cool.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah, and the create-block scaffolding tool has been worked on quite a lot in the last year and a half or so.</p>\n\n\n\n<p><em>Ellen Bauer</em>: Yeah. Yeah, it&#8217;s amazing. Yeah. In the beginning, I used to not like, I didn&#8217;t even have that available. Since we have that available, it&#8217;s really easy to, actually, it&#8217;s really easy to build custom blocks.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah. And now, it&#8217;s a little bit more flexible as well because sometimes you, especially for agency developers who roll out just one plugin with all the blocks, you can now tell the scaffolding tool to just not create the whole plugin to just create a directory for one block and have the rest of it there. You can also distinguish between static block and dynamic block just with a command there or a flag respectively, and you can create your own templates. So if you have a process for creating blocks, you can make the tool work with your process as well with creating templates.&nbsp;</p>\n\n\n\n<h3 class=\"wp-block-heading\">Gutenberg 16.5</h3>\n\n\n\n<p>So Gutenberg 16.5 was released this week, actually yesterday, and the release was done by Sioban Bamber and her release post is also online. And this version is again, bug fixes and had a focus on enriching the command palette even more and customized some more of the blocks that had it featured 219 pull requests by 63 contributors, including five new.</p>\n\n\n\n<p>So we are not talking through 219 line items with you, we only pick a few and that is the command. And that is getting to through the features. There was added new block related commands again to the palette, which was the add block selection, block transforms, block duplicate, copy, remove, edit commands like that. So when you highlight something, you can then have a command that transform to, and then it gives you a list of blocks that you can. So it&#8217;s quite an interesting push on those command, creating new commands for that. If you want to follow along and you have plugins that use the block editor and the site editor, there is some documentation in the dev notes for 6.3 on how to create new commands that you can then add to your plugin. So definitely something to look into. There were also fixes to make it render well in smaller view ports and support the commands without icons and make it update the preview in new tab command to reuse the right module for that.</p>\n\n\n\n<p>Yeah, and so those were some of the items that enhances the command palette. It also, in 16.5, there were some components updates and one of them is, we talked in 16.4 about the progress bar that also get additional update with this release 16.5, but there&#8217;s also an update to the modal component that it adds now a header action prompt to enable buttons or other elements to be injected into the header, which is pretty cool. And then enhances the overlay into action as well. So that is of course so much more interesting for developers, but it also is developers for blocks as well as for plugin developers because they can reuse the WordPress components.</p>\n\n\n\n<p>The column block received two enhancements. One is a stretch option for the blocks vertical alignment options, meaning that if a two-stretch through the full column, even if the others were longer. So if you have a three-column block, then one column can be shorter or longer than the other columns. And that was hard to correct with a spacer block, we talked about it, but that of course what a spacer block was good for. And now, you have a vertical alignment option where you say, okay, just stretch this to the full space. And then especially when you have backgrounds on them, it looks much nicer when the backgrounds are all in the same length of that.</p>\n\n\n\n<p><em>Ellen Bauer</em>: That&#8217;s very helpful. I haven&#8217;t actually tested that, but it sounds very helpful. I have to retest it.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah. Well, anybody should test it to see it actually does what you want it to do.&nbsp;</p>\n\n\n\n<p><em>Ellen Bauer</em>: That sounds really helpful.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah, I&#8217;ve struggled with that every time when I use a columns block that my columns are not lined up and then I fiddle 90% there and then the last 10%, I fiddle a half an hour with a spacer block to get it all matching up in that, yeah. And the second enhancement I wanted to mention is that now, if you press enter on an empty paragraph at the end, then you get exit out of the columns block. There was no way to, with a keyboard, to get out of the columns block. Now you can when you&#8217;re done writing and then you hit enter on an empty paragraph at the end of the block that you get out of it.</p>\n\n\n\n<p><em>Ellen Bauer</em>: That also makes a lot of sense.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah.</p>\n\n\n\n<p><em>Ellen Bauer</em>: Yeah. I haven&#8217;t used the columns like that much, to be honest, myself. I have to check it out again.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah, it&#8217;s much more versatile now, especially with the different backgrounds for each column, different&#8230; You can do all kind of different&#8230; The single column has now so many design tools that it&#8217;s really helpful for your designs. There was some lacking design tools. They were only available for the full, for the columns block.</p>\n\n\n\n<p><em>Ellen Bauer</em>: For the main.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah, for the main column and now, it&#8217;s all you get…</p>\n\n\n\n<p><em>Ellen Bauer</em>: For the…</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: &#8230; yeah, for the single column. Yeah, we always have to distinguish between the columns block and the column block. Yeah, and then other block updates like the file block got spacing options, the image block got aspect ratio support for the light box, the post content block got color controls. And this is the last one I wanted to mention is that the block titles have been changed to remove posts from it. So those are the ones like post author, post title, post content, post&#8230; Yeah. So because they&#8217;re pretty redundant, if it&#8217;s a title.</p>\n\n\n\n<p><em>Ellen Bauer</em>: Yeah, there were a lot.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: &#8230; can be a post title and a page title and then it&#8217;s the author, but it&#8217;s the post author block on a page, why would I do that? So it makes more sense, but it also changes the alphabetical list of things. So if you wanted to look for titles, you always put title in and it gave you in the inserter the post title, but now it just says title. So some people are all very tuned in into what they see in the inserter and this makes the visual inserter a little bit different when it doesn&#8217;t have posts in it, yeah. They might not recognize it.</p>\n\n\n\n<p>Yeah. So the global styles now got a feature to reset to the default global styles revision thing, and then also reduce the visibility check on two to one revision. So you don&#8217;t&#8230; Yeah, if you only have one revision, there is no visibility check there. That&#8217;s just one of the refinements of things. On the block editor, there&#8217;s now a…</p>\n\n\n\n<p><em>Ellen Bauer</em>: That is the&#8230; I haven&#8217;t actually looked into that, allow the layout controls to be disabled per block from theme JSON, but that sounds very helpful. But the next one, the fluid typography at minimum and maximum view port for that, like the theme JSON we can, in a theme, can configurate that ourselves. That&#8217;s what it means, right?</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Right, right. Yeah.</p>\n\n\n\n<p><em>Ellen Bauer</em>: Yeah, that&#8217;s so helpful because yeah, that&#8217;s something that didn&#8217;t really work for now, like creating designs with especially a larger typography sometimes. You only want that obviously in larger screens and you couldn&#8217;t really control it. That&#8217;s really, really helpful to have. I love that.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah. There was also a bug fix in an earlier version, I don&#8217;t know it was 16.2 or 16.1 where you could also, it changed the progression from screen size, a big font down to smaller screen sizes, it now has a different algorithm to do that, so it actually works. So it actually goes smaller on a smaller screen. Sometimes when you have, I don&#8217;t know, 160 big letters, even if you scroll them down to a minimum size, it wouldn&#8217;t scroll down. But now, you can also hard code those minimum and maximum with the theme JSON. So it&#8217;s even more control now than you just rely on the algorithm to do that.</p>\n\n\n\n<p><em>Ellen Bauer</em>: Yeah, and also the layout controls. I mean, from my perspective, anything that we can get control of where theme JSON is amazing because yeah, it just makes it so much more flexible to have everything there. So to disable the layout controls per block basis I think is also pretty neat. I love to see that. Yeah, it&#8217;s really cool to see that there&#8217;s just more fine control and yeah, things just start to work way better.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: So what else is in there? I&#8217;m scrolling, scrolling through that what I wanted to do. But in the block editor, there&#8217;s also one PR that didn&#8217;t get any notice anywhere else except here in the Gutenberg Changelog, but also in Gutenberg Changelog podcast that there&#8217;s now support for container queries in editor CSS. Container queries means okay, if the container is something, the CSS changes in opposed to view port or media queries. And what happened was when if you enqueued a CSS file that used container queries, there would be an error message on the block editor. And that has been fixed and now, theme developers and designers can now use container queries in their CSS files without any problems with the block editor. I think that&#8217;s a step in the right direction because container queries are the new thing with CSS for, well, I don&#8217;t know how long, but I think it&#8217;s a better way to make a website or design flexible on screen size or container size rather than&#8230; The browser size rather than the screen size.</p>\n\n\n\n<p>So that is definitely a step in the right direction to be a little bit updated with the modern CSS. For developers, again, interesting that the style engine now includes namespace in layout class names for non-core blocks. So it&#8217;s a very slight change, but it makes it so much more controllable that you now can use a theme slugs namespace on your class names for your core blocks and it&#8217;s still for your blocks, your custom blocks, and it will be in the style engine and you can use your CSS. It&#8217;s consistent, you don&#8217;t have to&#8230; It&#8217;s not so arbitrary anymore. And you can override your other people&#8217;s stuff when you can add your namespace there. It looks a little bit unwieldy when you look at the CSS class name, but it&#8217;s definitely like so before, it only said my block, my test block is layout-constrained and now, my block, create-block, my test block is layout-constrained. So it adds the namespace just after the WP block in your CSS automatically.</p>\n\n\n\n<p><em>Ellen Bauer</em>: Wow. Yeah, that makes sense. It just gives you more control.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Gives you more control and isolate certain CSS in class names. Yeah. All right.&nbsp;</p>\n\n\n\n<h3 class=\"wp-block-heading\">Experiments</h3>\n\n\n\n<p>There are two, no three experiments now in Gutenberg. One is the backend for the fonts library is now in the plugin, and then there is also a feature to connect a paragraph to a meta custom field. So there is an effort to have a user interface to connect certain blocks attributes to a custom field, and this is the first test. It&#8217;s very early, there is a little UI with it, but that is definitely something for extensibility for plugin developers to test out that you can, when you register your meta field, that you also can add them to the sidebar and allow connections to certain blocks with it. I think that&#8217;s a terrific idea and it fills a gap that is missing, and it helps with implementers when they use something like ACF to create meta fields and then they can just add them to a decent blocks, but it&#8217;s very early stages so it needs people to be testing but also to discuss that with the core developers.</p>\n\n\n\n<p>And then the last one is a bootstrap minimal sync package. Well, it doesn&#8217;t, the name of the PR doesn&#8217;t really tell you what it actually is, but it&#8217;s part of the real-time collaboration efforts for phase three. Riad has put in little experiments and it&#8217;s really just a prototype or a proof of concept where you can have multiple people work on posts at the same time and see how that works. It uses the team has decided or thinks that the best external library to use is the Yjs library that uses web sockets and other in the pipeline tools. And yeah, it&#8217;s just the beginning of that little piece of it. And if you read through the PR, you hear a lot that&#8217;s not working, but the things, the main thing should be working. So test it out, try it out and just see how it feels.</p>\n\n\n\n<p><em>Ellen Bauer</em>: I mean, that&#8217;s exciting to be able to start looking into it. I want to try it out.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah, I think Riad did two years ago, already had a site that&#8217;s called asblocks.com where he tested some of that already. So this is bringing it into the Gutenberg repo and see how it works with actually a real implementation, yeah. So I&#8217;m just looking also at the fonts library. There is in the PR, it&#8217;s a backend test, but in the PR, there is a video where you can see how it would fit into front end view as well. I don&#8217;t think there&#8217;s UI yet in there, but the experiment is you need to turn it on so you as a developer can use the REST endpoints to figure out how you can include it into your plugin. If you are a plugin developer that works with fonts and has some of the functionality in there, it&#8217;s probably good to start working with it.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Documentation</h3>\n\n\n\n<p>And then there we are again, a ton of updates in the documentation, especially I just want to point out one page and that&#8217;s the page curating the editor experience because it also now includes how to include the starter patterns for templates and that it&#8217;s documented now, but that page is something I point many people to when they say, &#8220;Well, I don&#8217;t want our users to have access to this, that and other&#8221; and I said, &#8220;Well, you have tools to make them disappear, to disable things or to curate that a little bit further&#8221; and that&#8217;s the page that I point people to when they need to explore how they can switch off some of the functionality or some of the features of the design controls and global styles as well. Do you have any&#8230; Oh no, no, one more. I&#8217;m sorry, one more for the benefits and…</p>\n\n\n\n<p><em>Ellen Bauer</em>: It&#8217;s a lot, I mean…</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: It&#8217;s a lot, yeah.</p>\n\n\n\n<p><em>Ellen Bauer</em>: It&#8217;s a lot.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah.</p>\n\n\n\n<p><em>Ellen Bauer</em>: For Node and NPM, no?</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah.</p>\n\n\n\n<p><em>Ellen Bauer</em>: For the building tool update, get update?</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah. The Gutenberg repo now update the minimum node version to 16 and NPM version to eight. Up until now, I was still working on minimum version 14 and I think six for NPM, but now you need at least be on 16 and on eight for NPM to build with Gutenberg and to, in some of the packages, require now the higher versions. It was mainly updated for I think the fund&#8217;s API, well, I&#8217;m not quite sure, I&#8217;m sorry. I might be misleading. There was a reason why it was happening now because one of the features, either the interactivity API or the fonts API or something like that, required a higher version of it. And so now, yeah, all the build processes now. So on the repo, you might want to rebase them and update your node install. Yeah, other external libraries also got updates like the Storybook or Learner or TypeScript Storybook is now on version 7, Learners on 7.14 and Typescript on 5.1, but that&#8217;s all for now. Now, we are at the end of it. Did you see anything that you wanted to explore that we overlooked?</p>\n\n\n\n<p><em>Ellen Bauer</em>: No, I got a bit more quiet to the end of it. I&#8217;m sorry. It&#8217;s like I&#8217;m sliding into bed time time-wise, sadly.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: So what time is it there?</p>\n\n\n\n<p><em>Ellen Bauer</em>: My energy level goes a little bit down. Yeah, it&#8217;s not that late. It&#8217;s just like toddler mom late. It&#8217;s 10:00.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Oh, yeah. No, it&#8217;s getting close to my bedtime too. So I only have one more thing on the agenda for today and that is the admin design kickoff post that was posted by section. And we only can, our listeners certainly need to go there and read it themselves, but yeah, dear listeners but also go there especially…</p>\n\n\n\n<p><em>Ellen Bauer</em>: Very exciting.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: &#8230; it&#8217;s very exciting and it shows you where the site editor design can merge into WP admin in various different ways. And which part of it excites you most? You read through it?</p>\n\n\n\n<p><em>Ellen Bauer</em>: The merge part because yeah, this side editor, it just looks like yeah, so it&#8217;s more modern and I can&#8217;t wait for it to merge as much as possible, as fast as possible. Just yeah, because it just represents what WordPress has to offer way more, like coming from a design background myself too. Yeah, we just want to see, see it more clean and modern and just more exciting to work in it, I think, and just more attractive, to make it more attractive to new users and it&#8217;s just beautiful.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah. And I like…</p>\n\n\n\n<p><em>Ellen Bauer</em>: And I love the site editing.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Yeah. Design?</p>\n\n\n\n<p><em>Ellen Bauer</em>: Yeah, the design of the site editing. So I can&#8217;t wait to have all of WordPress look like that.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Oh, I think you need to have some patience because…</p>\n\n\n\n<p><em>Ellen Bauer</em>: I know.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: &#8230; it&#8217;s going to take many, many major releases.</p>\n\n\n\n<p><em>Ellen Bauer</em>: I know. Yeah, sadly. If it would be up to me, we would do tomorrow.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah, you and me both. I know. But what I like about it is that it&#8217;s more contained. So when you have a plugin right now, a plugin can put itself into the menus on the left-hand side and it.</p>\n\n\n\n<p><em>Ellen Bauer</em>: Yeah, yeah, that surround it. Yeah.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: But now, you have a plugin section and then a plugin, and then whenever you click on it, the plugin takes over your screen, but it&#8217;s all plugin-oriented. So you have your tabs, you have your everything. And if you want to get out of the setting, you just do the back button and you&#8217;re back to the WordPress part. I really like those.</p>\n\n\n\n<p><em>Ellen Bauer</em>: That&#8217;s true. Yeah. I mean, that&#8217;s the biggest complaint too. We hear from people that it&#8217;s like if a plugin can take over WordPress, it looks wild and it&#8217;s sad for WordPress when that happens. And all the promotions and whatever some people put in there, we don&#8217;t want to have that. And also finding plugin settings because some put them there and others there, and I think it just grew organically and we have to now improve that.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah. And I think it&#8217;s also…</p>\n\n\n\n<p><em>Ellen Bauer</em>: Just for users, I mean, it&#8217;s for the users. We do it not to punish people, but to make it a better user experience because at the moment, it&#8217;s just suffering.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: But I also can see that it&#8217;s so much helpful for the plugin developers to have a coherent WordPress design system that they can rely on and don&#8217;t have to come up with all the interfaces themselves because that code needs to be managed and maintained.</p>\n\n\n\n<p><em>Ellen Bauer</em>: I like that you say that. And probably at the moment, a lot of people won&#8217;t agree, but I think too, you have to control that experience. I like it.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah. Well, then the control of the experience you still have, just the design. So the user sees the same components over and over again and knows what to do with them. And what they do is the plugins definitely have a freedom on there, but I think if some of the plugins that are really big plugins can rely. And we had a live Q&amp;A on the Gutenberg Times about that with the people from the developers from GiveWP, they do their whole revamp of their plugin based on the WordPress packages and components so that the open source project is actually maintaining their code. And they did additional of course customization on that, but they only have to maintain those instead of the whole plugin.&nbsp;</p>\n\n\n\n<p><em>Ellen Bauer</em>: Makes their life easier. Yeah, makes everyone&#8217;s lives easier.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah, and also the…</p>\n\n\n\n<p><em>Ellen Bauer</em>: I think so, too.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: &#8230; and also the feedback loop is now about WordPress&#8217; core elements and not about what the plugin can do and the bug fixes can be in core. It&#8217;s fixed upstream instead of just in the plugin, if there is something there that needs to be fixed.</p>\n\n\n\n<p><em>Ellen Bauer</em>: That makes sense. Yeah, I love that. I can&#8217;t wait.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah. Dear listeners, I don&#8217;t know if I shared that post with you, but I will post it again in the show notes with the live Q&amp;A with the GiveWP developers, Jason Adams and John Weinstein probably yeah, it was the beginning of July. We had that live Q&amp;A and we have the transcript and the video and all the resources there, so you can follow up on that. Anyway, well, it was so great to walk with you through those Changelog items.&nbsp;</p>\n\n\n\n<p>Ellen, thank you so much. And before we come to the end, do you have any announcements or comments that you will like our listeners know? And if people want to get in touch with you, where is a good spot to find you?</p>\n\n\n\n<p><em>Ellen Bauer</em>: So first of all, thank you for having me. Yeah, I hope I could contribute a little bit to this episode.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: A lot, a lot. Yes, no.</p>\n\n\n\n<p><em>Ellen Bauer</em>: Yeah, so getting in contact with&#8230; So we have our website, ElmaStudio on AinoBlocks both work. And yeah, I&#8217;m still on, I still call it Twitter, I don&#8217;t care. Instagram and YouTube. I actually just about to get into creating a few new YouTube videos, so it&#8217;s all Elma Studio there on all the socials, except Twitter is my name, Ellen Bauer. Yeah, just on our website. And news is just that we are about to finish a new free theme and it&#8217;s inspired by the statement I made earlier that I just wanted to blog again. So we&#8217;re going to do a little blog theme that was just a design idea we had, Manu and I had and we are like, &#8220;Just, let&#8217;s do it.”</p>\n\n\n\n<p>And I&#8217;m actually excited to create a little private blog on this design and we have it almost ready, I think. I hope it will land in the WordPress arc repository within the next four weeks or so, depending on what we still need to do. And then there&#8217;s a second one in the works as well that is just a wrap up of a redesign we did, and we had all these materials and patterns and templates ready and we&#8217;re like, &#8220;Let&#8217;s do a theme out of that&#8221;. So that&#8217;s going to be another free theme coming as well. Yeah, just fun projects we did over the last month.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: I&#8217;m looking so much forward to that. Yeah.</p>\n\n\n\n<p><em>Ellen Bauer</em>: Yeah. We just wanted to create something simple for a change and we&#8217;re like, &#8220;Let&#8217;s do that, just simple block themes or easy smaller themes, make them free themes&#8221;. So that&#8217;s what we did just out of fun, which is cool to do that too. Yeah, so that&#8217;s coming from us. Others, I don&#8217;t have anything else to say except thank you for having me. It was really exciting and it helped me a lot to catch up on things actually, which is so cool.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Oh, good.</p>\n\n\n\n<p><em>Ellen Bauer</em>: And yeah, I&#8217;m just amazed and excited about all the changes coming and all the fine-tuning. It&#8217;s really so, so cool to see WordPress coming together in that way. Like you said, with the admin and stuff, it&#8217;s still a way to go, but I mean, we can see the first glimpses of that and really beautiful to see WordPress going into that direction. I&#8217;m really excited.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah. Well, I&#8217;m glad to be working with you on the 6.4 release. And dear listeners, before we end the show, I want to remind everyone the show notes will be published on gutenbergtimes.com/podcast. This is episode 88. And if you have questions or suggestions or news that you want us to include in the next show, send them to <a href=\"mailto:changelog@gutenbergtimes.com\">changelog@gutenbergtimes.com</a>, that&#8217;s <a href=\"mailto:changelog@gutenbergtimes.com\">changelog@gutenbergtimes.com</a>. Thank you all for listening. And in two weeks, we have Nadia Maya from Hostinger. She&#8217;s a content creator on Hostinger and she will go with us through the Changelog. Thank you so much, Ellen, and hope all will be well. Until the next time, bye-bye.</p>\n\n\n\n<p><em>Ellen Bauer</em>: Thank you. Bye.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 28 Aug 2023 12:14:13 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:19:\"Gutenberg Changelog\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:25;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:77:\"WordPress.org blog: The Future of WordPress &amp; What’s Next for Gutenberg\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=15879\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:84:\"https://wordpress.org/news/2023/08/the-future-of-wordpress-whats-next-for-gutenberg/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:5046:\"<p>Nearly 2,000 attendees gathered for two days of keynotes, sessions, and community-building conversations at the Gaylord National Resort &amp; Convention Center in the largest attended WordCamp US ever. Saturday’s sessions concluded with back-to-back keynotes by WordPress co-founder <a href=\"https://profiles.wordpress.org/matt/\">Matt Mullenweg</a> and Executive Director <a href=\"https://profiles.wordpress.org/chanthaboune/\">Josepha Haden Chomphosy</a>. </p>\n\n\n\n<h2 class=\"wp-block-heading\">What’s Next for WordPress</h2>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n\n</div>\n\n\n\n<p>Josepha launched her keynote by celebrating 20 years of WordPress and reflecting on its journey from a blogging tool to the world&#8217;s most popular community-driven web platform. On WordPress as a platform for empowerment and change, Josepha shared, “The more people that know about WordPress, the more people can access the incredible opportunities that WordPress can provide.” And that sustaining the platform for future generations ensures these opportunities will persist. She added, “We exist for as long as people want to use our software.”</p>\n\n\n\n<p>The community is the key to sustaining WordPress, and Josepha touched on the importance of WordCamps, workshops, and events that create value, promote inclusivity,&nbsp; and spark inspiration. WordPress can be a catalyst for positive change in the life of a contributor, end user, or site builder.</p>\n\n\n\n<p>Concluding her keynote, Josepha asked the audience to think about the story they’d want to tell about themselves and their time in WordPress; and the story they would want WordPress to tell the world.</p>\n\n\n\n<h2 class=\"wp-block-heading\">What’s Next for Gutenberg</h2>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n\n</div>\n\n\n\n<p>Matt began his keynote with a touch of nostalgia, referring to a comment on his personal blog in 2003 by WordPress Co-founder <a href=\"https://profiles.wordpress.org/mikelittle/\">Mike Little</a>, and then looked ahead to the most recent release, WordPress 6.3. As this year’s largest release, it includes new features such as the Command Palette, a quick way (⌘+k on Mac or Ctrl+k on Windows) to search your site and access common commands.</p>\n\n\n\n<a href=\"https://wordpress.org/download/releases/6-3/\"><img width=\"1024\" height=\"535\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/08/6.3-Release-Edition-Featured-Image.png?resize=1024%2C535&ssl=1\" alt=\"WordPress 6.3 Lionel\" class=\"wp-image-15795\" /></a>\n\n\n\n<p>Matt continued, “WordPress never rests, so right around the corner is <a href=\"https://make.wordpress.org/core/6-4/\">WordPress 6.4</a> on Nov 7… with some cool new features.” He shared that 6.4, like 5.6, will be an underrepresented gender-led release. A new default theme, <a href=\"https://make.wordpress.org/core/2023/08/24/introducing-twenty-twenty-four/\">Twenty Twenty-Four</a>, is tailored for entrepreneurs and small businesses, photographers and artists, and writers and bloggers. Additionally, 6.4 will feature integrated font management and Image block options to expand single images for optimal viewing.</p>\n\n\n\n<p>Looking further into the future, Matt highlighted Phase 3 of the Gutenberg project, which will focus on workflows and collaboration, “moving WordPress from a single-player to a multi-player tool.” In that spirit of collaboration, a new <a href=\"https://wordpress.slack.com/archives/C05PY7QLR5F\">#LMS</a> working group will also bring WordPress learning management systems together to improve the web standards for courses and learning content.</p>\n\n\n\n<p>Beyond Phase 3, Matt shared thoughts about what it means to support WordPress many years from now. A new <a href=\"https://wordpress.com/100-year/\">100-Year Plan</a> from WordPress.com is an exploration into long-term planning for your online presence. He encouraged attendees to be inspired by the region&#8217;s history, reflecting on what it would mean to honor the past while anticipating and planning for the future.&nbsp;</p>\n\n\n\n<h2 class=\"wp-block-heading\">Q&amp;A</h2>\n\n\n\n<p>A Q&amp;A session followed the keynotes, with questions submitted by the in-person audience and live stream viewers.</p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n\n</div>\n\n\n\n<p>Additional questions will be answered in a future post on <a href=\"https://make.wordpress.org/project/\">make.WordPress.org/project/</a>. Join the <a href=\"https://make.wordpress.org/\">global community making WordPress</a> and be part of our journey toward a brighter future!</p>\n\n\n\n<p><em>Thank you to </em><a href=\"https://profiles.wordpress.org/angelasjin/\"><em>@angelasjin</em></a><em>, </em><a href=\"https://profiles.wordpress.org/bjmcsherry/\"><em>@bmcsherry</em></a><em>, </em><a href=\"https://profiles.wordpress.org/cbringmann/\"><em>@cbringmann</em></a><em>, </em><a href=\"https://profiles.wordpress.org/dansoschin/\"><em>@dansoschin</em></a><em>, and </em><a href=\"https://profiles.wordpress.org/eidolonnight/\"><em>@eidolonnight</em></a><em> for collaborating on this post.</em></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sun, 27 Aug 2023 04:50:28 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:17:\"Nicholas Garofalo\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:26;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:126:\"Gutenberg Times: Theme Twenty-Twenty- Four, WordPress 6.4, upcoming Hallway Hangouts and Developer hours—Weekend Edition 265\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://gutenbergtimes.com/?p=25326\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:132:\"https://gutenbergtimes.com/theme-twenty-twenty-four-wordpress-6-4-upcoming-hallway-hangouts-and-developer-hours-weekend-edition-265/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:20005:\"<p>Howdy, </p>\n\n\n\n<p>I had a fabulous time on our Danube River Cruise. We walked the capitals of Austria, Hungary and Slovakia, Budapest, Vienna and Bratislava, learned about the long history of the region and had excellent food and wine tastings. </p>\n\n\n\n<p>In the past three weeks, a lot has happened in many corners of the Gutenberg project. It will take us more than one weekend edition to catch up. </p>\n\n\n\n<p>For this edition, I kept it mostly within WordPress team posts and articles. In the next edition, I will also include content and updated from the community again. </p>\n\n\n\n<p>Glad to be back. I missed you. </p>\n\n\n\n<p>Yours, ?<br /><em>Birgit</em></p>\n\n\n\n\n<div class=\"wp-block-group has-light-background-background-color has-background is-layout-flow wp-block-group-is-layout-flow\"><div class=\"wp-block-group__inner-container\">\n<p><strong>Table of Contents</strong></p>\n\n\n\n<div class=\"wp-block-sortabrilliant-guidepost\"><ul><li><a href=\"https://gutenbergtimes.com/feed/#0-word-press-release-information\">Developing Gutenberg and WordPress</a><ul><li><a href=\"https://gutenbergtimes.com/feed/#1-word-press-6-3\">WordPress 6.3 </a></li><li><a href=\"https://gutenbergtimes.com/feed/#1-word-press-6-4\">WordPress 6.4</a></li><li><a href=\"https://gutenbergtimes.com/feed/#2-gutenberg-16-4-and-16-5\">Gutenberg 16.4 and 16.5</a></li></ul></li><li><a href=\"https://gutenbergtimes.com/feed/#0-p\">Plugins, Themes, and Tools for #nocode site builders and owners</a></li><li><a href=\"https://gutenbergtimes.com/feed/#2-word-press-6-0-1-and-6-1-scheduled\">Theme Development for Full Site Editing and Blocks</a></li><li><a href=\"https://gutenbergtimes.com/feed/#6-building-blocks-and-tools-for-the-block-editor\">Building Blocks and Tools for the Block editor.</a><ul><li><a href=\"https://gutenbergtimes.com/feed/#7-update-on-html-api\">Update on HTML API</a></li></ul></li></ul></div>\n</div></div>\n\n\n\n\n<h2 class=\"wp-block-heading\" id=\"0-word-press-release-information\">Developing Gutenberg and WordPress</h2>\n\n\n\n<p><strong>Justin Tadlock</strong> curated <strong><a href=\"https://developer.wordpress.org/news/2023/08/whats-new-for-developers-august-2023/\">What’s new for developers? (August 2023)</a>.</strong> &nbsp;The seventh edition of a monthly series that cuts through all the noise, bringing you the latest features, updates, and fixes you need to know about to build on top of WordPress.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong>Anne McCarthy</strong> announced <a href=\"https://make.wordpress.org/meta/2023/08/11/introducing-wordpress-org-blocks/\">Introducing WordPress.org/blocks</a> &#8220;To better tell the story of blocks, both within WordPress and as a broader framework for folks to consider with their next project,&nbsp;<a href=\"https://wordpress.org/blocks/\">a new page</a>&nbsp;has been created on&nbsp;WordPress.org&nbsp;that attempts to pull together the ease and power of blocks into a single source&#8221;.</p>\n\n\n\n<img width=\"652\" height=\"408\" src=\"https://i0.wp.com/gutenbergtimes.com/wp-content/uploads/2023/08/Page-about-Blocks.jpg?resize=652%2C408&ssl=1\" alt=\"Screenshot of Introduction to Blocks page header\" class=\"wp-image-25337\" />\n\n\n\n<p>In his <a href=\"https://make.wordpress.org/design/2023/08/14/design-share-jul-31-aug-11/\"><strong>Design Share: Jul 31-Aug 11</strong></a>, Joen Asmussen, reports on work by members of the WordPress design time. You&#8217;ll find listed various prototypes for the redesign of the Documentation and Learn WordPress site, the Showcase section of the WordPress site, and the already published design assets for the WordPress &#8220;Lionel:&#8221; 6.3 release and <a href=\"https://wordpress.org/download/releases/6-3/\">its new microsite</a> and some early mock-up so of list views for the WordPress Admin section. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong>Saxon Fletcher</strong>, contributor on the design team, published the first design mockups for the <a href=\"https://make.wordpress.org/design/2023/08/10/admin-design-kickoff/\"><strong>Admin Design Kickoff</strong></a>. You can review videos, and screenshots with a ton of explanation of challenges and considerations. The overall look feels like an enhanced version of the Site Editor screens and concepts. </p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"1-word-press-6-3\">WordPress 6.3 </h3>\n\n\n\n<p>It&#8217;s probably just me, who feels that <a href=\"https://wordpress.org/news/2023/08/lionel/\">WordPress &#8220;Lionel&#8221; 6.3 </a>was released a long time ago, instead of just two weeks and a half. It&#8217;s been a massive release and there is still additional information published, i.e., about the considerable performance improvements and the update to the Navigation blocks and features. </p>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2023/08/07/wordpress-6-3-performance-improvements/\">WordPress 6.3 performance improvements</a>&nbsp;by <strong>Felix Arntz</strong></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/08/23/whats-new-for-navigation-in-wordpress-6-2-and-6-3/\">What’s new for Navigation in WordPress 6.2 and 6.3</a>&nbsp;by <strong>Dave Smith</strong></li>\n</ul>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong>Sarah Gooding </strong>reported on the created release assets: <a href=\"https://wptavern.com/wordpress-publishes-6-3-release-video-and-landing-page-demo\"><strong>WordPress Publishes 6.3 Release Video and Landing Page Demo</strong></a>. </p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"1-word-press-6-4\">WordPress 6.4</h3>\n\n\n\n<p><strong>Anne McCarthy</strong> published the <strong><a href=\"https://make.wordpress.org/core/2023/08/22/roadmap-to-6-4/\">Roadmap to 6.4</a>,</strong> the next major release of WordPress, led  by an all <a href=\"https://make.wordpress.org/core/2023/06/05/wordpress-6-4-development-cycle/\">underrepresented gender release squad</a> scheduled for November 7th, 2023. A tight release cycle with the first beta scheduled for September 26th, makes this an ambitious list of features and updates. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p>Part of the next WordPress release is also a new default them. <strong>Jessica Lyschik</strong> published the article <strong><a href=\"https://make.wordpress.org/core/2023/08/24/introducing-twenty-twenty-four/\">Introducing Twenty Twenty-Four</a></strong>. &#8220;The idea behind Twenty Twenty-Four is to make a default theme that can be used on any type of site, with any topic.&#8221; she wrote. </p>\n\n\n\n<img width=\"652\" height=\"435\" src=\"https://i0.wp.com/gutenbergtimes.com/wp-content/uploads/2023/08/Twenty-Twenty-Four-Post-Formats-web.jpg?resize=652%2C435&ssl=1\" alt=\"Screenshot Twenty-Twenty-Four, collection of various post formats. Mock-up\" class=\"wp-image-25356\" />\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong>Sarah Gooding</strong> wrote about the roadmap, too: <a href=\"https://wptavern.com/wordpress-6-4-roadmap-includes-typography-management-features-new-blocks-and-twenty-twenty-four-default-theme\"><strong>WordPress 6.4 Roadmap Includes Typography Management Features, New Blocks, and Twenty Twenty-Four Default Theme</strong></a></p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"2-gutenberg-16-4-and-16-5\">Gutenberg 16.4 and 16.5</h3>\n\n\n\n<p>Release lead, <strong><a href=\"https://twitter.com/mikachan_\">Sarah Norris</a></strong> published <a href=\"https://make.wordpress.org/core/2023/08/10/whats-new-in-gutenberg-16-4-9-august/\">What’s new in Gutenberg 16.4? (9 August)</a>&nbsp;and highlighted</p>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/?p=107380#auto-inserting-blocks\">Auto-Inserting Blocks (Beta)</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/?p=107380#new-progress-bar-component\">New Progress Bar Component</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/?p=107380#new-commands-in-the-command-palette\">New Commands in the Command Palette</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/?p=107380#new-block-supports-for-footnotes-block\">New Block Supports for Footnotes Block</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/?p=107380#minimum-supported-php-version-bumped-to-7-0\">Minimum Supported PHP Version Bumped to 7.0</a></li>\n</ul>\n\n\n\n<p>Sarah Gooding&#8217;s post on the release: <a href=\"https://wptavern.com/gutenberg-16-4-introduces-experimental-auto-inserting-blocks\"><strong>Gutenberg 16.4 Introduces Experimental Auto-Inserting Blocks</strong></a></p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p>This week, <a href=\"https://twitter.com/SiobhyB\"><strong>Siobhan Bamber</strong></a>, contributor on WordPress mobile app,  handled the Gutenberg plugins release and published the release post <a href=\"https://make.wordpress.org/core/2023/08/23/whats-new-in-gutenberg-16-5-23-august/\"><strong>What’s new in Gutenberg 16.5? (23 August)</strong></a>. She highlighted the new commands and enhancements to the Command Palette and additional block support for multiple blocks including Details and Post Content blocks.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<div class=\"wp-block-group has-light-background-background-color has-background is-layout-flow wp-block-group-is-layout-flow\"><div class=\"wp-block-group__inner-container\">\n<p class=\"is-style-no-vertical-margin\"><strong>?️ </strong> Latest episode:  <a href=\"https://gutenbergtimes.com/podcast/gutenberg-changelog-88-wordpress-6-4-and-gutenberg-16-5/\">Gutenberg Changelog #88 – WordPress 6.4 and Gutenberg 16.4 and 16.5.</a>with Ellen Bauer as special guest, hosted by Birgit Pauli-Haack</p>\n</div></div>\n\n\n\n<p><strong><a href=\"https://twitter.com/ellenbauer\">Ellen Bauer</a></strong> and I had a great time catching up since we met in person at WordCamp Asia. I was delighted that Ellen came on the Gutenberg changelog show to discuss the latest happening in WordPress and. The Gutenberg Changelog 88 episode will arrive at your favorite podcast app within a couple of days. </p>\n\n\n\n<img width=\"652\" height=\"186\" src=\"https://i0.wp.com/gutenbergtimes.com/wp-content/uploads/2023/08/Ellen-Bauer-Birgit-Pauli-Haack-Gutenberg-Changelog-89.jpg?resize=652%2C186&ssl=1\" alt=\"\" class=\"wp-image-25343\" />\n\n\n\n<h2 class=\"wp-block-heading\" id=\"0-p\">Plugins, Themes, and Tools for #nocode site builders and owners</h2>\n\n\n\n<p>Although the deadline to post feedback for the latest call for testing from the FSE Program  <a href=\"https://make.wordpress.org/test/2023/08/09/fse-program-testing-call-25-lets-start-from-the-beginning/\">#<strong>25: Let’s start from the beginning</strong></a> has passed, it&#8217;s still a great set of instructions to test  WordPress 6.3 and all the new features that come with it.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p>The WordPress Theme team rep <strong><a href=\"https://twitter.com/TheKafleG\">Ganga Kafle</a> </strong>announced that <a href=\"https://make.wordpress.org/themes/2023/08/11/blue-note-the-second-community-theme-is-released/\"><strong>Blue Note: The second community theme is released</strong></a>. &#8220;It is an elegant and fun&nbsp;block&nbsp;theme inspired by jazz and the record label “Blue Note Records”, he wrote. </p>\n\n\n\n<img width=\"652\" height=\"489\" src=\"https://i0.wp.com/gutenbergtimes.com/wp-content/uploads/2023/08/Blue-Note-screenshot.png?resize=652%2C489&ssl=1\" alt=\"Screenshot blue note theme. \" class=\"wp-image-25351\" />\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong>Anne McCarthy </strong>invites you to the next Hallway Hangout about  <strong><a href=\"https://make.wordpress.org/core/2023/08/21/hallway-hangout-improving-accessibility-in-the-site-editor/\">Improving accessibility in the Site Editor</a>&nbsp; </strong>on September 14 at 15:00 UTC. WordPress Accessibility team members <strong>Alex Stine</strong> and <strong>Joe Dolson</strong> will demo current of pain points and open a discussion about ways to resolve/address current, known issues.</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"2-word-press-6-0-1-and-6-1-scheduled\">Theme Development for Full Site Editing and Blocks</h2>\n\n\n\n<p><strong>Mary Baum</strong> published <a href=\"https://developer.wordpress.org/news/2023/08/the-anatomy-of-a-letterform/\"><strong>The anatomy of a letterform</strong></a>, part 2 of the six-part series,&nbsp;<em>&#8220;Make your site’s typography make a statement&#8217;</em> on the WordPress Developer Blog. Personally, I enjoy the primer typeface, the deep dive into the terminology and genesis of a typeface and the role it plays on the web and for readers. It&#8217;s a great preparation for the new features coming to WordPress the Font Library, a way to select, store and manage fonts on your website. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p>ICYMI: The 3-part series on <strong>Beyond Block Styles</strong> by <strong>Justin Tadlock </strong>is now available on the WordPress Developer Blog: </p>\n\n\n\n<ul>\n<li><a href=\"https://developer.wordpress.org/news/2023/07/beyond-block-styles-part-1-using-the-wordpress-scripts-package-with-themes/\">Part 1: Using the WordPress scripts package with themes</a></li>\n\n\n\n<li><a href=\"https://developer.wordpress.org/news/2023/07/beyond-block-styles-part-2-building-a-custom-style-for-the-separator-block/\">Part 2: Building a custom style for the Separator block</a></li>\n\n\n\n<li><a href=\"https://developer.wordpress.org/news/2023/08/beyond-block-styles-part-3-building-custom-design-tools/\">Part 3: Building custom design tools</a></li>\n</ul>\n\n\n\n<p>Tadlock wrote: &#8220;The goal of this series is to teach you how to work with the APIs that block developers get to play with every day. Only, you’ll use those features in a theme, instead of a block. And you’ll use code and techniques that conform to the guidelines for the WordPress theme directory.&#8221;</p>\n\n\n\n<img src=\"https://i0.wp.com/gutenbergtimes.com/wp-content/uploads/2023/08/emoji-icon-picker.jpg?w=600&ssl=1\" alt=\"Screenshot of the emoji picker for a separator block\" class=\"wp-image-25335\" />\n\n\n\n\n<p><strong>&nbsp;<a href=\"https://make.wordpress.org/core/handbook/references/keeping-up-with-gutenberg-index/\" target=\"_blank\" rel=\"noreferrer noopener\">&#8220;Keeping up with Gutenberg &#8211; Index 2022&#8221;</a>&nbsp;</strong><br />A chronological list of the WordPress Make Blog posts from various teams involved in Gutenberg development: Design, Theme Review Team, Core Editor, Core JS, Core CSS, Test and Meta team from Jan. 2021 on. Updated by yours truly.  <a href=\"https://make.wordpress.org/core/handbook/references/keeping-up-with-gutenberg-index/keeping-up-with-gutenberg-index-2020/\"><em>The index 2020 is here</em></a></p>\n\n\n\n\n<h2 class=\"wp-block-heading\" id=\"6-building-blocks-and-tools-for-the-block-editor\">Building Blocks and Tools for the Block editor.</h2>\n\n\n\n<p>If you had trouble getting definitive answers on how to handle assets with the iframe post editor after the WordPress 6.3,release,  <strong>Nick Diego </strong>added a new page to the documentation that should answer all questions: <a href=\"https://developer.wordpress.org/block-editor/how-to-guides/enqueueing-assets-in-the-editor/\"><strong>Enqueuing assets in the Editor </strong></a></p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong>Michael Burridge</strong> wrote a tutorial on <a href=\"https://developer.wordpress.org/news/2023/08/styling-blocks-empowering-users-with-css-custom-properties/\"><strong>Styling blocks: empowering users with CSS custom properties</strong></a>&nbsp;describing a way how you can offer more styling options to used of your blocks beyond the settings via block.json. The post is available on the WordPress Developer Blog. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong>Juan Ma Garrido</strong> posted a <strong><a href=\"https://make.wordpress.org/core/2023/08/15/status-update-on-the-interactivity-api/\">status update on the Interactivity API</a></strong>, that includes the links to the GitHub spaces for discussion and code, and a getting started guide. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong>Ryan Welcher</strong> and <strong>Nick Diego</strong> invite you to a Hallway Hangout<a href=\"https://make.wordpress.org/core/2023/08/17/hallway-hangout-lets-explore-the-power-of-block-variations/\"> <strong>To explore the power of block variations</strong></a> on September 14, 2023, at 18:00 UTC . An often overlooked feature, you learn how you can use block variations to extend existing blocks and can be as simple or complex as you like.&nbsp;</p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"7-update-on-html-api\">Update on HTML API</h3>\n\n\n\n<p><strong>Dennis Snell</strong> published a <strong><a href=\"https://make.wordpress.org/core/2023/08/19/progress-report-html-api/\">Progress Report: HTML API</a>&nbsp;</strong>on the WordPress Make blog. It&#8217;s a longer post as he explains why and how the HTML API came to pass and what the future will hold. </p>\n\n\n\n<p>On August 30th, 2023, <strong>Dennis Snell</strong>, is also scheduled to be on the Developer Hours with Michael Burridge for an <a href=\"https://make.wordpress.org/core/2023/08/18/developer-hours-introduction-to-the-html-api/\">Introduction to the HTML API</a>. The session will take place at 15:00 UTC. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n\n<p><strong><a href=\"https://gutenbergtimes.com/need-a-zip-from-master/\">Need a plugin .zip from Gutenberg&#8217;s master branch?</a></strong><br />Gutenberg Times provides daily build for testing and review. <br />Have you been using it? Hit reply and let me know.</p>\n\n\n\n<p><img alt=\"GitHub all releases\" src=\"https://img.shields.io/github/downloads/bph/gutenberg/total?style=for-the-badge\" /></p>\n\n\n\n\n<p class=\"has-text-align-right has-small-font-size\"><em>Questions? Suggestions? Ideas? Don&#8217;t hesitate to send <a href=\"mailto:pauli@gutenbergtimes.com\">them via email</a> or send me a message on WordPress Slack or Twitter @bph</em>. </p>\n\n\n\n<p class=\"has-text-align-right has-small-font-size\">For questions to be answered on the <a href=\"http://gutenbergtimes.com/podcast\">Gutenberg Changelog</a>, send them to <a href=\"mailto:changelog@gutenbergtimes.com\">changelog@gutenbergtimes.com</a></p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n\n<p>Featured Image: Weissenkirchen, Austria &#8211; Active school building since 1316, next to the church. Photo by Birgit Pauli-Haack</p>\n\n\n\n<hr class=\"wp-block-separator has-css-opacity is-style-wide\" />\n\n\n\n<p class=\"has-text-align-left\"><strong>Don&#8217;t want to miss the next Weekend Edition? </strong></p>\n\n\n\n<form class=\"wp-block-newsletterglue-form ngl-form ngl-portrait\" action=\"https://gutenbergtimes.com/feed/\" method=\"post\"><div class=\"ngl-form-container\"><div class=\"ngl-form-field\"><label class=\"ngl-form-label\" for=\"ngl_email\"><br />Type in your Email address to subscribe.</label><div class=\"ngl-form-input\"><input type=\"email\" class=\"ngl-form-input-text\" name=\"ngl_email\" id=\"ngl_email\" /></div></div><button type=\"submit\" class=\"ngl-form-button\">Subscribe</button><p class=\"ngl-form-text\">We hate spam, too and won&#8217;t give your email address to anyone except Mailchimp to send out our Weekend Edition</p></div><div class=\"ngl-message-overlay\"><div class=\"ngl-message-svg-wrap\"></div><div class=\"ngl-message-overlay-text\">Thanks for subscribing.</div></div><input type=\"hidden\" name=\"ngl_list_id\" id=\"ngl_list_id\" value=\"26f81bd8ae\" /><input type=\"hidden\" name=\"ngl_double_optin\" id=\"ngl_double_optin\" value=\"yes\" /></form>\n\n\n\n<hr class=\"wp-block-separator has-css-opacity is-style-wide\" />\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 26 Aug 2023 05:05:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"Birgit Pauli-Haack\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:27;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"Matt: One Hundy\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:22:\"https://ma.tt/?p=95968\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"https://ma.tt/2023/08/one-hundy/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:488:\"<p>WordPress.com <a href=\"https://wordpress.com/blog/2023/08/25/introducing-the-100-year-plan/\">just announced its hundred year plan</a>. This was very fun to create and plan for, and I hope it gets people and other companies thinking about the long term. Very inspired by <a href=\"https://longnow.org/\">The Long Now Foundation</a> and <a href=\"https://archive.org/\">The Internet Archive</a>. See also: <a href=\"https://hundredyearhost.com/\">Derek Siver&#8217;s Hundred Year Host</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 26 Aug 2023 03:53:54 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:28;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:65:\"WPTavern: Gutenberg 16.5 Adds New Commands to the Command Palette\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=148129\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:76:\"https://wptavern.com/gutenberg-16-5-adds-new-commands-to-the-command-palette\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2713:\"<p><a href=\"https://make.wordpress.org/core/2023/08/23/whats-new-in-gutenberg-16-5-23-august/\">Gutenberg 16.5</a> was released this week with the biggest changes landing in the Command Palette. Users now have access to more block-related commands for block transforms and block actions, including the following:</p>\n\n\n\n<ul>\n<li>all transforms&nbsp;<em>to</em>&nbsp;the block has defined (e.g. to cover, to gallery, to columns, to file, to group, to media and text, for an image block)</li>\n\n\n\n<li>these block actions: paste styles, copy, ungroup, group, moveTo, insertAfter, insertBefore, remove, duplicate)</li>\n</ul>\n\n\n\n<p>&#8220;Together, these new commands not only enrich the command palette’s functionality but also improve the distraction-free mode by offering immediate access to basic functions,&#8221; Automattic-sponsored Gutenberg contributor Siobhan Bamber said in the release post.</p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n\n\n\n\n<p>Improving the discovery of these new commands may prove challenging. Contributors are <a href=\"https://github.com/WordPress/gutenberg/pull/52509#issuecomment-1638161344\">exploring</a> displaying the contextual actions as suggestions immediately after opening the command palette, to scale with the increasing index of available commands.</p>\n\n\n\n<p>&#8220;Since the aim of this PR is to add so many commands, let&#8217;s not surface any suggestions yet,&#8221; Automattic-sponsored designer James Koster said. &#8220;We can explore that in a follow-up with a thought-out design which considers how to scale the display of so many commands, if necessary.&#8221;</p>\n\n\n\n<p>The Command Palette design was also updated in this latest round of version 16.5. Users with a keen eye may notice a new search icon aligned to the right, a reduced width, darker icon color, and more subtle changes.</p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<img width=\"1200\" height=\"908\" src=\"https://149611589.v2.pressablecdn.com/wp-content/uploads/2023/08/updated-command-palette.png\" alt=\"\" class=\"wp-image-148244\" />image credit: Gutenberg PR <a href=\"https://github.com/WordPress/gutenberg/pull/53117\">#53117</a>\n\n\n\n<p>Gutenberg 16.5 adds more block supports to the Details block, Post Content block, and File block to make them more customizable with controls for colors, block spacing, and padding.</p>\n\n\n\n<p>This update includes many more small enhancements and bug fixes, including improvements to the writing flow, build tooling, fluid typography, existing Command Palette commands, Snackbar component, and Global Styles. Check out the <a href=\"https://make.wordpress.org/core/2023/08/23/whats-new-in-gutenberg-16-5-23-august/\">16.5 release post</a> for the full changelog.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 25 Aug 2023 17:46:25 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:29;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:47:\"WPTavern: Watch WordCamp US 2023 Via Livestream\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=148229\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:58:\"https://wptavern.com/watch-wordcamp-us-2023-via-livestream\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2316:\"<img width=\"1820\" height=\"1210\" src=\"https://149611589.v2.pressablecdn.com/wp-content/uploads/2023/08/Screen-Shot-2023-08-25-at-9.05.13-AM.png\" alt=\"\" class=\"wp-image-148235\" />photo credit: <a href=\"https://twitter.com/WordCampUS/status/1694816958791766190\">WordCamp US</a> &#8211; Contributor Day 2023\n\n\n\n<p><a href=\"https://us.wordcamp.org/2023/\">WordCamp US</a> 2023 kicked off Wednesday with the Community Summit and the Contributor Day on Thursday. The main conference days begin this morning and will be broadcast via high-definition <a href=\"https://us.wordcamp.org/2023/livestream/\">livestreams</a> throughout the event. </p>\n\n\n\n<p>Both the Woodrow Wilson and Cherry Blossom tracks will be streaming on separate links. First up on Friday is they keynote titled &#8220;<a href=\"https://us.wordcamp.org/2023/session/friday-keynote/\">For All Userkind: NASA Web Modernization and WordPress,</a>&#8221; presented by <a href=\"https://us.wordcamp.org/2023/speaker/abby-bowman/\">Abby Bowman</a> and<a href=\"https://us.wordcamp.org/2023/speaker/j-j-toothman/\"> J.J. Toothman</a>. </p>\n\n\n\n<p>In-person attendees will have live captions on the screen in the Woodrow Wilson and Cherry Blossom tracks. The captions are also available on personal devices with livestreaming captions. Organizers have set up <a href=\"https://www.streamtext.net/player?event=WoodrowWilson\">Woodrow Wilson StreamText</a> and <a href=\"https://www.streamtext.net/player?event=CherryBlossom\">Cherry Blossom StreamText</a>, which are also available to those watching remotely.</p>\n\n\n\n<p>Sessions will run through 5:30 PM EST today and Saturday as well. The conference will be capped off with a presentation from <a href=\"https://us.wordcamp.org/2023/session/josepha-haden-chomphosy-on-the-future-of-wordpress/\">WordPress&#8217; Executive Director Josepha Haden Chomphosy, on the future of WordPress</a>, followed by <a href=\"https://us.wordcamp.org/2023/session/the-wordpress-advantage-with-matt-mullenweg/\">Gutenberg: Next with Matt Mullenweg</a> and a live Q&amp;A.</p>\n\n\n\n<p>Livestream viewers can <a href=\"https://us.wordcamp.org/2023/livestream/\">watch for free</a> with no tickets required. Check the schedule for specific times. Presentations you are interested in can be starred and emailed to yourself or printed for easy access.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 25 Aug 2023 13:07:56 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:30;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:97:\"WPTavern: Post Status Celebrates 10 Years, Adds Joost de Valk and Marieke van de Rakt as Partners\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=148199\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:107:\"https://wptavern.com/post-status-celebrates-10-years-adds-joost-de-valk-and-marieke-van-de-rakt-as-partners\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4903:\"<p>This year <a href=\"https://poststatus.com/\">Post Status</a> is celebrating a decade of serving WordPress professionals with its member-supported community. The site was founded by Brian Krogsgard in 2013, and now runs an active Slack community with 2,083 members, a weekly newsletter with 4,300 subscribers, and a job board.</p>\n\n\n\n<p>As a testament to the community&#8217;s continued growth, Post Status <a href=\"https://poststatus.com/joost-and-marieke-join-post-status-as-equity-partners/\">announced</a> it has added WordPress veterans Joost de Valk and Marieke van de Rakt as equity partners who have invested cash in the business. They will also be taking on active roles in leading the Post Status community &#8211; de Valk as CTO and van de Rakt as an advisor and editorial contributor. </p>\n\n\n\n<p>&#8220;Post Status has created the most important networking possibilities for us in the past and helped us grow our WordPress businesses,&#8221; van de Rakt said. &#8220;It seems only fit to contribute and to take on an active role in the Post Status community at this point.&#8221;</p>\n\n\n\n<p>Post Status CEO Cory Miller said the organization will be moving forward with &#8220;the same vision and values &#8211; supporting the business of WordPress, with an emphasis on agency owners.&#8221; Co-owner Lindsey Miller will be taking on a new role as CMO. </p>\n\n\n\n<p>Although maintaining the professional community remains their first priority, Post Status will be expanding with two new initiatives this year that will benefit both partners and members. The team has soft launched the new <a rel=\"noreferrer noopener\" href=\"http://poststatus.com/\" target=\"_blank\">poststatus.com</a>, featuring a new <a href=\"https://poststatus.com/wordpress-companies/\">Partner Directory</a> that showcases WordPress businesses. </p>\n\n\n\n<p>&#8220;I believe a healthy growing business ecosystem inside of WordPress is absolutely key to WP continued growth and success,&#8221; Cory Miller said.</p>\n\n\n\n<p>&#8220;We want to get a little more organized, professional as an industry, and that means cooperating, communicating, working together, with Post Status being that collective brand, showcasing the agencies, software and professionals of WordPress better.</p>\n\n\n\n<p>&#8220;The next step is our directory. We want to say, here’s our professional industry for those looking at WordPress for their web projects.&#8221;</p>\n\n\n\n<p>In addition to ramping up editorial commentary and analysis on industry trends, with the depth of expertise of new partners de Valk and van de Rakt, Post Status is in the early stages of planning an annual summit. It will be similar to WordPress&#8217; contributor summit but for businesses and individuals who are making their way in the marketplace.</p>\n\n\n\n<p>&#8220;The second step is to gather together, talk business and what are we seeing, what are the issues, challenges, and opportunities as an industry,&#8221; Miller said. &#8220;That naturally gives us focus and initiatives to cooperate on together.</p>\n\n\n\n<p>&#8220;Most industries have this already.</p>\n\n\n\n<p>&#8220;Doctors, lawyers, big businesses have these kinds of venues and platforms for conversations about the state of their industry. We need that for WordPress and Post Status is taking next steps to do so.&#8221;</p>\n\n\n\n<p>These two initiatives are next on the organization&#8217;s roadmap, and with the new partnership they now have the resources to execute on them.</p>\n\n\n\n<p>&#8220;Showcase the collective, that’s our directory,&#8221; Miller said. &#8220;And gather us together to have the key conversations we need about where we’re going as an industry and community. That’s our summit.&#8221;</p>\n\n\n\n<p>Sponsors are what keeps the lights on at Post Status. The organization has historically been focused on driving individual membership for WordPress professionals but is shifting its focus on businesses as members now. </p>\n\n\n\n<p>&#8220;We want every WP pro in Post Status, this is their home, their trade association,&#8221; Miller said. &#8220;Those who work at WP companies or with WP as part of their gig, we always want to welcome them in to PS.&#8221;</p>\n\n\n\n<p>Post Status is one of the few WordPress organizations that has been operating for longer than a decade. Now that the Pressnomics event has been retired for four years, the WordPress community is sorely in need of an event where the business-focused community can connect and help each other grow WordPress&#8217; success in the wider industry. Post Status is the organization best-suited to step into this role. To stay on top of the their efforts and plans and to support the business community, <a href=\"https://poststatus.com/join/\">join as a member</a> and/or <a href=\"https://poststatus.us6.list-manage.com/subscribe?u=ff3456b27ebe0be0155087894&id=afc03177a6\">subscribe to the weekly newsletter.</a></p>\n\n\n\n<p></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 25 Aug 2023 03:59:43 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:31;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:64:\"BuddyPress: BuddyPress 11.3.1 Security &amp; Maintenance release\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"https://buddypress.org/?p=330940\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:78:\"https://buddypress.org/2023/08/buddypress-11-3-1-security-maintenance-release/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3329:\"<p><a href=\"https://downloads.wordpress.org/plugin/buddypress.11.3.1.zip\">BuddyPress 11.3.1</a> is now available. This is a security and maintenance release. <strong>All BuddyPress installations should be updated as soon as possible</strong>.</p>\n\n\n\n<p>The 11.3.1 release addresses the following security issue:</p>\n\n\n\n<ul>\n<li>A blind SQL Injection from unauthenticated users vulnerability was fixed in <code>BP_XProfile_Query-&gt;find_compatible_table_alias()</code>. Discovered by&nbsp;<a href=\"https://www.gold-network.ch\" target=\"_blank\" rel=\"noreferrer noopener\">Michael Mazzolini</a>.</li>\n</ul>\n\n\n\n<p>This vulnerability was reported privately to the BuddyPress team, in accordance with&nbsp;<a href=\"https://make.wordpress.org/core/handbook/testing/reporting-security-vulnerabilities/\">WordPress’s security policies</a>. Our thanks to the reporter for practicing coordinated disclosure.</p>\n\n\n\n<p>BuddyPress 11.3.1 also fixes 3 bugs. For complete details, visit the <a href=\"https://codex.buddypress.org/releases/version-11-3-1/\">11.3.1 changelog</a>.</p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<div class=\"wp-block-buttons is-horizontal is-content-justification-center is-layout-flex wp-container-7 wp-block-buttons-is-layout-flex\">\n<div class=\"wp-block-button is-style-outline\"><a class=\"wp-block-button__link has-white-background-color has-text-color has-background no-border-radius wp-element-button\" href=\"https://downloads.wordpress.org/plugin/buddypress.11.3.1.zip\">Get BuddyPress 11.3.1</a></div>\n</div>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<p>You can get the latest version by clicking on the above button, downloading it from the&nbsp;<a href=\"https://wordpress.org/plugins/buddypress/\">WordPress.org plugin directory</a>&nbsp;or checking it out from our&nbsp;<a href=\"https://buddypress.trac.wordpress.org/browser/branches/11.0\">Subversion repository.</a></p>\n\n\n\n<p>If for a specific reason you can&#8217;t upgrade to 11.3.1, we have also ported the security fix to BuddyPress versions going all the way back to 5.0. Here&#8217;s the list of the available downloads for the corresponding tags, you can also find these links on our <a href=\"https://wordpress.org/plugins/buddypress/advanced/\">WordPress.org Plugin Directory &#8220;Advanced&#8221; page:</a></p>\n\n\n\n<ul>\n<li>If you are using BP 5.2.1 and can&#8217;t upgrade to 11.3.1, please upgrade to <a href=\"https://downloads.wordpress.org/plugin/buddypress.5.2.2.zip\">5.2.2</a></li>\n\n\n\n<li>If you are using BP 6.4.2 and can&#8217;t upgrade to 11.3.1, please upgrade to <a href=\"https://downloads.wordpress.org/plugin/buddypress.6.4.3.zip\">6.4.3</a></li>\n\n\n\n<li>If you are using BP 7.3.2 and can&#8217;t upgrade to 11.3.1, please upgrade to <a href=\"https://downloads.wordpress.org/plugin/buddypress.7.3.3.zip\">7.3.3</a></li>\n\n\n\n<li>If you are using BP 8.0.2 and can&#8217;t upgrade to 11.3.1, please upgrade to <a href=\"https://downloads.wordpress.org/plugin/buddypress.8.0.3.zip\">8.0.3</a></li>\n\n\n\n<li>If you are using BP 9.2.0 and can&#8217;t upgrade to 11.3.1, please upgrade to <a href=\"https://downloads.wordpress.org/plugin/buddypress.9.2.1.zip\">9.2.1</a></li>\n\n\n\n<li>If you are using BP 10.6.0 and can&#8217;t upgrade to 11.3.1, please upgrade to <a href=\"https://downloads.wordpress.org/plugin/buddypress.10.6.1.zip\">10.6.1</a></li>\n</ul>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 24 Aug 2023 22:02:26 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"Mathieu Viet\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:32;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:80:\"WPTavern: WordPress Unveils Design for Upcoming Twenty Twenty-Four Default Theme\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=148167\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:91:\"https://wptavern.com/wordpress-unveils-design-for-upcoming-twenty-twenty-four-default-theme\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4016:\"<p>WordPress 6.4 will be shipping with a new default theme, expected in early November. The theme&#8217;s project leaders unveiled the designs and concept for Twenty Twenty-Four in an <a href=\"https://make.wordpress.org/core/2023/08/24/introducing-twenty-twenty-four/\">announcement</a> on WordPress.org today.</p>\n\n\n\n<p>For those who have complained that past default themes have been too niche or too narrowly focused in design, this theme will take the reverse approach. Contributors are attempting to build the ultimate multi-purpose theme that can be used for nearly any kind of website, highlighting the unmatched flexibility of building with blocks.</p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<img width=\"1600\" height=\"1066\" src=\"https://149611589.v2.pressablecdn.com/wp-content/uploads/2023/08/TT4.jpeg\" alt=\"\" class=\"wp-image-148180\" />image credit: <a href=\"https://make.wordpress.org/core/2023/08/24/introducing-twenty-twenty-four/\">Introducing Twenty Twenty-Four</a>\n\n\n\n<p>&#8220;The idea behind Twenty Twenty-Four is to make a default theme that can be used on any type of site, with any topic,&#8221; core contributorJessica Lyschik said. &#8220;Because of that, and contrary to past years, it has no single topic. Instead, three use cases were explored: one more tailored for entrepreneurs and small businesses, one tailored for photographers and artists and one specifically tailored for writers and bloggers.&#8221;</p>\n\n\n\n<p>Last year&#8217;s default theme, <a href=\"https://make.wordpress.org/design/2022/08/10/twenty-twenty-three-default-theme-project-kickoff/\">Twenty Twenty-Three</a>, was a stripped-back and minimal version of Twenty Twenty-Two, with a strong focus on community-submitted style variations. Like its predecessor, Twenty Twenty-Four will put the spotlight on some of the latest WordPress design features.</p>\n\n\n\n<p>&#8220;Twenty Twenty-Four will be a block theme fully compatible with all the site editor tooling and it will surface new design tools like the details block or vertical text,&#8221; Lyschik said. &#8220;Another key intent for the theme is to properly present whole page patterns and template variations so that users don’t need to assemble whole pages themselves, thus easing up their site building process.&#8221;</p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<img width=\"1600\" height=\"840\" src=\"https://149611589.v2.pressablecdn.com/wp-content/uploads/2023/08/TT4-full-page-designs.jpeg\" alt=\"\" class=\"wp-image-148184\" />\n\n\n\n<p>Whole page patterns are a critical feature that all of the best block themes provide, as most people feel daunted when starting from a blank slate. If a whole page pattern is already pre-inserted on a new website install, users are light years ahead in their site building efforts.</p>\n\n\n\n<p>Twenty Twenty-Four features the Cardo font for headings and a sans-serif system font for paragraph text. Cardo is an Old Style serif typeface designed by David J. Perry in 2002 for “classicists, biblical scholars, medievalists, and linguists.” It grounds the design with a bit of sophistication but should be easy to swap out with the <a href=\"https://wptavern.com/wordpress-6-4-roadmap-includes-typography-management-features-new-blocks-and-twenty-twenty-four-default-theme\">typography management features coming in 6.4</a>.</p>\n\n\n\n<p>The initial previews of the theme don&#8217;t stray far from many of the traditional website designs you might see browsing businesses or portfolios. It leans more towards  providing an invisible framework for the user&#8217;s own creations, instead of pushing a single, opinionated design. This design lets the Site Editor and design controls shine as tools that can unlock human creativity on the screen. So far it has received positive feedback on the WordPress.org announcement. Check out the <a href=\"https://make.wordpress.org/core/2023/08/24/introducing-twenty-twenty-four/\">post</a> for more images/video, and information on how contribute to Twenty Twenty-Four&#8217;s development.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 24 Aug 2023 20:36:14 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:33;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:87:\"WPTavern: Organic Themes Launches Apparel Store to Raise Money for the Maui Strong Fund\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=148133\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:98:\"https://wptavern.com/organic-themes-launches-apparel-store-to-raise-money-for-the-maui-strong-fund\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2186:\"<img width=\"2098\" height=\"1174\" src=\"https://149611589.v2.pressablecdn.com/wp-content/uploads/2023/08/Screen-Shot-2023-08-23-at-4.19.06-PM.png\" alt=\"\" class=\"wp-image-148138\" />\n\n\n\n<p><a href=\"https://organicthemes.com/\">Organic Themes</a>, one of the oldest WordPress theme shops, was founded in 2009 in the town of Lahaina on the island of Maui, which was ground zero for the recent <a href=\"https://en.wikipedia.org/wiki/2023_Hawaii_wildfires\">devastating wildfires</a>. Until recently, Lahaina was home to Organic Themes co-founder David Morgan, who hosted the Maui WordPress meetups for years, and co-organized WordCamp Maui in 2015.</p>\n\n\n\n<p>Morgan and his co-founder Jeff Milone have been best friends since high school. In 2007, Morgan sold everything and moved to Oahu, working as a freelance designer while living out of his car after arriving. </p>\n\n\n\n<p>&#8220;While living on Oahu, Jeff and I began working long-distance on freelance WordPress projects,&#8221; Morgan said. &#8220;This led to the idea of starting a theme business together, and I invited Jeff to Hawaii in 2009. While he was visiting me on Oahu, we flew to Maui and fell in love with the island. We decided to start our business there.&#8221;</p>\n\n\n\n<p>Organic Themes operated out of Lahaina for ten years before Morgan eventually returned to the mainland to start his family in Sarasota, Florida. Milone still resides in Maui part-time. </p>\n\n\n\n<p>&#8220;We have friends that have lost their homes,&#8221; Morgan said. &#8220;We&#8217;ve been in touch with old neighbors and friends, and it&#8217;s been beyond shocking for us to see what has happened.&#8221;</p>\n\n\n\n<p>The company recently created the <a href=\"https://lahaina.help/\">Kokua Lahaina</a> website and apparel products as a way to give back to their community. The site is built on WordPress and WooCommerce and uses the <a href=\"https://organicthemes.com/stax-theme/\">STAX</a> block theme. Organic Themes is donating all profits to the <a href=\"https://www.hawaiicommunityfoundation.org/maui-strong\">Maui Strong Fund</a>, which provides shelter, food, financial assistance, and other services to those impacted by the wildfires.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 23 Aug 2023 20:38:56 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:34;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:38:\"Matt: Open Sourcing Algorithmic Choice\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:22:\"https://ma.tt/?p=95800\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:55:\"https://ma.tt/2023/08/open-sourcing-algorithmic-choice/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:631:\"<p>Jon Weeks from the Evening Standard <a href=\"https://www.standard.co.uk/business/tumblr-ceo-matt-mullenweg-on-opensourcing-social-media-b1101975.html\">interviewed me for their <em>How to Be a CEO</em> podcast</a> about Tumblr, and as I often do we mostly talked about open source.</p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n<div>    <div></div>    </div>\n</div>\n\n\n\n<p>If you can&#8217;t listen <a href=\"https://techcrunch.com/2023/08/23/automattic-ceo-matt-mullenweg-talks-future-of-tumblr-with-algorithmic-choice-ai-enhancements-and-more/\">Techcrunch&#8217;s Sarah Perez posted a really nice summary of the interview</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 23 Aug 2023 18:02:11 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:35;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:121:\"WPTavern: WordPress 6.4 Roadmap Includes Typography Management Features, New Blocks, and Twenty Twenty-Four Default Theme\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=148086\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:130:\"https://wptavern.com/wordpress-6-4-roadmap-includes-typography-management-features-new-blocks-and-twenty-twenty-four-default-theme\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3987:\"<p>Work on <a href=\"https://make.wordpress.org/core/2023/08/22/roadmap-to-6-4/\">WordPress 6.4 is kicking off</a> with a post from Editor Triage Co-Lead Anne McCarthy that highlights everything the team has planned for the release. This will be the third major release of 2023, and is unique in that it&#8217;s being led by an <a href=\"https://make.wordpress.org/core/2023/06/05/wordpress-6-4-development-cycle/\">underrepresented gender release squad</a>.</p>\n\n\n\n<p>Although WordPress is moving into <a href=\"https://make.wordpress.org/core/tag/phase-3/\">Phase 3 of the Gutenberg project</a>, which focuses on collaboration, 6.4 will primarily extend existing features in the block and site editors.</p>\n\n\n\n<p>&#8220;Initial explorations for phase 3 will continue in the Gutenberg plugin, and any early wins will be added alongside the foundational work already planned in this major release,&#8221; McCarthy said. </p>\n\n\n\n<p>WordPress 6.4 is anticipated to introduce typography management features, including a <a href=\"https://github.com/WordPress/gutenberg/issues/52698\">Font Library</a> and <a href=\"https://github.com/WordPress/gutenberg/issues/41479\">server-side @font-face CSS generation and printing</a>. This means users will be able to browse a library of fonts in the admin, similar to how they manage media. It will not be dependent on the theme that is activated but will be a library that is extensible for plugin developers.</p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<img width=\"1600\" height=\"902\" src=\"https://149611589.v2.pressablecdn.com/wp-content/uploads/2023/08/font-library.png\" alt=\"\" class=\"wp-image-148114\" />image credit: <a href=\"https://make.wordpress.org/core/2023/08/22/roadmap-to-6-4/\">Roadmap to 6.4</a>\n\n\n\n<p>Other new functionality planned for 6.4 includes the following: </p>\n\n\n\n<ul>\n<li><a href=\"https://core.trac.wordpress.org/ticket/57704\">Revisions for templates and template parts</a></li>\n\n\n\n<li>New blocks: <a href=\"https://github.com/WordPress/gutenberg/issues/42229\">Table of Contents</a>, <a href=\"https://github.com/WordPress/gutenberg/issues/53776\">Time to Read</a>, and <a href=\"https://github.com/WordPress/gutenberg/issues/41730\">Scrolling Marquee</a></li>\n\n\n\n<li><a href=\"https://github.com/WordPress/gutenberg/issues/51132\">Lightbox</a> functionality for individual image blocks</li>\n\n\n\n<li><a href=\"https://github.com/WordPress/gutenberg/issues/39439\">Auto-insert blocks</a></li>\n\n\n\n<li><a href=\"https://github.com/WordPress/gutenberg/issues/53049\">Post formats in block themes</a></li>\n\n\n\n<li><a href=\"https://github.com/WordPress/gutenberg/issues/53305\">Improvements to the writing experience</a> and <a href=\"https://github.com/WordPress/gutenberg/issues/50891\">link control UI</a></li>\n\n\n\n<li>Updates to interfaces and tools &#8211; top toolbar, distraction-free, command palette, list view, and more</li>\n\n\n\n<li>Refinements and enhancements to Site Editing, Global Styles, and design tools</li>\n\n\n\n<li>Updates to Patterns: <a href=\"https://github.com/WordPress/gutenberg/issues/53164\">add the ability to set categories</a>, <a href=\"https://github.com/WordPress/gutenberg/issues/51945\">update inserter experience</a>, explore possibly including <a href=\"https://github.com/WordPress/gutenberg/issues/53705\">partially synced patterns</a></li>\n\n\n\n<li>Improvements to navigation customization and management</li>\n\n\n\n<li>Expand design tools available for Footnotes, <a href=\"https://github.com/WordPress/gutenberg/issues/52812#top\">ensure compatibility for Custom Post Types</a></li>\n</ul>\n\n\n\n<p>WordPress 6.4 will also ship with a new Twenty Twenty-Four default theme that will showcase the latest capabilities of block themes. </p>\n\n\n\n<p>McCarthy emphasized that the features published in the roadmap are &#8220;being actively pursued&#8221; but may not represent what actually lands in the final release.</p>\n\n\n\n<p>WordPress 6.4 is anticipated to be released on November 7, 2023, with Beta 1 expected on September 26.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 23 Aug 2023 16:24:54 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:36;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:80:\"WPTavern: #88 – Jo Minney on the State of the WordPress Community in Australia\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:48:\"https://wptavern.com/?post_type=podcast&p=148105\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:94:\"https://wptavern.com/podcast/88-jo-minney-on-the-state-of-the-wordpress-community-in-australia\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:48938:\"Transcript<div>\n<p>[00:00:00] <strong>Nathan Wrigley:</strong> Welcome to the Jukebox podcast from WP Tavern. My name is Nathan Wrigley. Jukebox is a podcast which is dedicated to all things WordPress. The people, the events, the plugins, the blocks, the themes, and in this case, the state of the WordPress community in Australia.</p>\n\n\n\n<p>If you&#8217;d like to subscribe to the podcast, you can do that by searching for WP Tavern in your podcast player of choice, or by going to WPTavern.com forward slash feed forward slash podcast. And you can copy that URL into most podcast players.</p>\n\n\n\n<p>If you have a topic that you&#8217;d like us to feature on the podcast, I&#8217;m keen to hear from you, and hopefully get you all your idea featured on the show. Head to WPTavern.com forward slash contact forward slash jukebox and use the form there.</p>\n\n\n\n<p>So on the podcast today, we have Jo Minney.</p>\n\n\n\n<p>Jo is the founder of a small business that specialises in building websites for organisations, mainly nonprofits and the tech industry. With a background in engineering, Jo decided to shift her focus to website development using WordPress. She was excited about the WordPress community and joined her local meetup, eventually becoming an organizer.</p>\n\n\n\n<p>Jo is keen for the WordPress community in Australia to grow, and has been making significant contributions to that growth.</p>\n\n\n\n<p>In this episode, Jo shares her insights on the challenges of organizing WordCamps and meetups in Australia, where the large size of the country, and small population presents some unique obstacles. If you&#8217;re used to a European or north American setting, it&#8217;s really interesting how the geography of the country presents challenges not seen elsewhere.</p>\n\n\n\n<p>We discussed the importance of paying speakers and covering their travel expenses to create equal opportunities for freelancers and small businesses, as well as to give the Australian community a stronger voice.</p>\n\n\n\n<p>We talk about her journey with WordPress, starting from her early days as a coder in a different field, and navigating the community online. Jo highlights the need for in-person opportunities to learn and connect with others. Especially in a global community where the time zone differences and online platforms can be limiting.</p>\n\n\n\n<p>We chat about the challenges faced by the Australian WordPress community from limited resources and burnout, to the struggle of attracting new organizers and attendees. Jo share some exciting success stories, such as organizing WordPress events and hosting a successful do_action event.</p>\n\n\n\n<p>We briefly get into the need for more diverse voices and the importance of fostering, a supportive and inclusive environment. If you&#8217;re interested in hearing about how the WordPress community is doing in Australia, this episode is for you.</p>\n\n\n\n<p>You can find all of the links in the show notes by heading over to WPTavern.com forward slash podcast. Where you&#8217;ll find all the other episodes as well.</p>\n\n\n\n<p>And so without further delay, I bring you Jo Minney.</p>\n\n\n\n<p>I am joined on the podcast today by Jo Minney. Hello Jo.</p>\n\n\n\n<p>[00:03:40] <strong>Jo Minney:</strong> Nice to be here.</p>\n\n\n\n<p>[00:03:41] <strong>Nathan Wrigley:</strong> Yeah thank you for joining me. Jo is in Western Australia which means that the collision of the time zones is pretty severe on this one. It&#8217;s the middle of the afternoon for me which means it&#8217;s very, very late in the evening for Jo. So first up Jo, thank you very much for staying the course and being with us.</p>\n\n\n\n<p>I guess my first question, as always, it&#8217;s a pretty banal one but it&#8217;s worth asking anyway. Given that we&#8217;re on a WordPress podcast, we&#8217;re going to be talking about the WordPress community in Australia in particular. Would you mind just spending a moment just telling us who you are? What your relationship is with WordPress? Perhaps a little bit about the kind of job that you have, and the role that you have and all of that good stuff.</p>\n\n\n\n<p>[00:04:22] <strong>Jo Minney:</strong> Sure I can absolutely do that. So I am a small business founder like a lot of people that work with WordPress. I run I guess what you&#8217;d call a micro business. I have a grand total of three people in my team, and we build websites for mainly organizations. We work a lot with nonprofits and also a bit with the tech industry. So my background is actually engineering, and I threw in the towel and decided I didn&#8217;t want to do engineering anymore and started building websites instead.</p>\n\n\n\n<p>So in a nutshell what I do now, and how I use WordPress. And when I first started using it I got really excited when I found out about the community that was behind it and things like meetups and WordCamps. And that was yes, this is so exciting and went and joined our local meetup and none had been running for the last year and a half. So that was a bit sad. And then I reached out to the organizer who had previously run them and was like, hey, what&#8217;s going on? And she&#8217;s like here you go. And so I became lead organizer and the rest, I guess, is as they say history.</p>\n\n\n\n<p>[00:05:27] <strong>Nathan Wrigley:</strong> Did you find the community more or less as soon as you found WordPress? Did you have a nice bit of serendipity there? Because when I discovered WordPress it was many years before I realized that there was any kind of community. I purely viewed it as a piece of freely available software. And whilst I understood that the freely available nature of it meant that there was community involvement in building the software, I had no conception there was a community of people who would be meeting up in the real world or getting into the kind of discourse that they do, in all sorts of different directions. So yeah, to paraphrase that question, did you find the community right away?</p>\n\n\n\n<p>[00:06:07] <strong>Jo Minney:</strong> I wouldn&#8217;t say right away, but fairly soon after I started using WordPress. So I had done a little bit of coding before I started using WordPress but in a very different environment, working as I said in engineering. I was really lucky that my husband, who&#8217;s also my business partner now, also works in development.</p>\n\n\n\n<p>And when I first said I want to learn how to use WordPress and I&#8217;m going to use it to create my website for my consulting business, which back then was still in engineering, he was like no you can&#8217;t use WordPress. WordPress is the devil. He&#8217;s come around since then. He&#8217;s actually speaking at WordCamp US. We do a lot of collaboration projects now. So he builds custom web applications and my team do WordPress websites. And we do a lot of merging the two together and integrating them.</p>\n\n\n\n<p>When I first started using it I felt like a lot of the time the people that I was asking were a lot more superior at using it to me, and had a lot more experience. So reaching out online was a little bit intimidating. So I actually started looking quite early on in my journey for something that was in person, because it would enable me to kind of go and learn from other people without having to actively start asking questions on online forums, where often I was the only woman there, or I didn&#8217;t know if I was the only woman there, but I kind of had assumed in that space.</p>\n\n\n\n<p>[00:07:30] <strong>Nathan Wrigley:</strong> Yeah thank you. So in terms of the timeline of all of this, you may have mentioned it but forgive me I didn&#8217;t pick up on it. How far back are we going in history? What year? 2015, 2016, or later than that? Did you reach out and find these events?</p>\n\n\n\n<p>[00:07:48] <strong>Jo Minney:</strong> Yeah, so I think I started using WordPress in 2017, quite recently compared to a lot of people that are in the WordPress community. And I took over the meetup as lead organizer I think in 2019. I could be wrong it could have been 2018, but it was either 2018 or 2019. So it was only a year or so into the first time that I had actually touched the platform.</p>\n\n\n\n<p>[00:08:12] <strong>Nathan Wrigley:</strong> Okay so pre pandemic you discovered the real world community. So paint a picture of what it&#8217;s like in Australia. Now clearly you&#8217;re going to be able to paint that picture better describing where you live. But if you&#8217;re able to give us more information about Australia more broadly that would be excellent as well. And maybe during the course of the next few minutes we can map out how things may have changed since 2017, 2018, 2019, to where they are now.</p>\n\n\n\n<p>[00:08:42] <strong>Jo Minney:</strong> Yeah, that&#8217;s a great question. So I have a question for you in return, cause I know that you&#8217;ve been to Australia before. We talked about that earlier. Australia is pretty big. So do you want to have a stab at how big Australia is?</p>\n\n\n\n<p>[00:08:57] <strong>Nathan Wrigley:</strong> In terms of square miles, or just multiples of the UK.</p>\n\n\n\n<p>[00:09:01] <strong>Jo Minney:</strong> Either&#8217;s fine.</p>\n\n\n\n<p>[00:09:02] <strong>Nathan Wrigley:</strong> Okay so I would imagine that you could fit the UK into Australia, I&#8217;m going to pluck a number out of thin air, 35 times.</p>\n\n\n\n<p>[00:09:09] <strong>Jo Minney:</strong> I actually have no idea how many times you can fit the UK into Australia but I do know that it is about the same size as the lower 48 in the US. So it&#8217;s like 7. 6 million square kilometers, versus 8 million square kilometers for the US. So they&#8217;re pretty comparable size wise.</p>\n\n\n\n<p>Do you want to have a stab at what the population of Australia is compared to the population of the US?</p>\n\n\n\n<p>[00:09:34] <strong>Nathan Wrigley:</strong> Okay, so I&#8217;m going to guess Australia has 22 or 23 million people in it.</p>\n\n\n\n<p>[00:09:40] <strong>Jo Minney:</strong> It&#8217;s a little bit higher than that. It&#8217;s 26 and a half, thereabouts, million. Which is less than Texas. So think it&#8217;s really important to understand that one of the biggest challenges that we face here, and you would know this from having driven across the Nullarbor, is there&#8217;s nothing in the middle of Australia.</p>\n\n\n\n<p>We only live around the outside. So if you imagine the entire US but only having people live around the coastal cities and having the entire population of that whole continent being less than Texas.</p>\n\n\n\n<p>[00:10:13] <strong>Nathan Wrigley:</strong> Yeah that&#8217;s fascinating. So I guess if you&#8217;re listening to this and you&#8217;re a North American, the distance that you would have to go from east to west is comparable from say going, I don&#8217;t know, from Virginia to California. They&#8217;re on the same kind of scale but the population is significantly smaller. I guess what you&#8217;re trying to say is we&#8217;re spread out.</p>\n\n\n\n<p>[00:10:35] <strong>Jo Minney:</strong> Yeah, we really are. And I think if you&#8217;re in Europe, again, to travel the length of Australia or the width of Australia you&#8217;re traveling through multiple countries. Each of which probably has a higher population than what we do. So the challenge that we&#8217;ve got there is that our communities to start with, and I don&#8217;t just mean our WordPress communities, I mean our cities, the people that we have living here, are very small in comparison to a lot of other places in the world. So because our population is so spread out, it makes it really hard for us to hold in person events in the first place.</p>\n\n\n\n<p>So that&#8217;s a challenge that we&#8217;ve always faced here in Australia in building our community. And it&#8217;s something we were slowly starting to overcome. And we did before the pandemic have meetups happening in, I think, five different cities around Australia. And then obviously the pandemic happened and all of that stopped.</p>\n\n\n\n<p>But even before the pandemic started, in the city where I live, I mean it&#8217;s only 2 million odd people here, but we had never had a WordCamp in the whole time that WordCamps had started running.</p>\n\n\n\n<p>So if you think about someone who&#8217;s just coming into the WordPress community for the first time, and they learn about all of this stuff and then they find out actually we&#8217;ve got no meetups running. We&#8217;ve got no WordCamps running. We don&#8217;t actually have a community here. It can be really sad, and really soul crushing I guess.</p>\n\n\n\n<p>That&#8217;s kind of where I was at. So I got it in my head, I was like that&#8217;s it, I&#8217;m going to be the person that organizes the first WordCamp here in Perth. And to do that I reached out to a lot of the other organizers from around Australia, who are fantastic people. And some of them have been doing that for a really long time.</p>\n\n\n\n<p>And that&#8217;s probably the second challenge that we have which is burnout. And I know that this is not something unique to Australia. I know this happens everywhere. When you&#8217;ve got meetup organizers that are volunteers it&#8217;s not just rocking up for the time of the meetup and ordering some pizza. It&#8217;s organising speakers, it&#8217;s growing the community and actually making sure that people come along to it. There&#8217;s a lot that&#8217;s involved with it.</p>\n\n\n\n<p>And often it falls on one, maybe two, people to do that. And we really struggled to get more organizers, to get attendees, to get speakers. And when you look at that compounded with the fact that we have such a small population compared to the space we have, you can see how very quickly it becomes a challenge.</p>\n\n\n\n<p>[00:13:04] <strong>Nathan Wrigley:</strong> Yeah. I guess in Europe, as an example, the population density is extremely high. I&#8217;m guessing per square kilometre it probably is even higher than in the US. I don&#8217;t actually know if that&#8217;s true or not, but I&#8217;m imagining it is.</p>\n\n\n\n<p>The point being there&#8217;s lots of people. So the reservoir of people who may stumble into the community within a hundred miles of where I live there are likely to be a dozen, two dozen, a hundred, whatever that number may be. Whereas where you are, that number is going to be significantly lower. And so if somebody steps into the community but then gets that burnt out, or just gets fed up, or moves on, or just doesn&#8217;t wish to contribute to those events, there really isn&#8217;t that pool of people that you can dip into which would be present in North America or other parts of the world, Europe and so on.</p>\n\n\n\n<p>So if somebody moves on there&#8217;s often somebody that will take that role on again. And I know that in the recent past there have been discussions about whether or not, even in Europe and other places, the burnout and the replacement of people is more and more challenging. But I guess where you are it&#8217;s really acute.</p>\n\n\n\n<p>[00:14:13] <strong>Jo Minney:</strong> Yeah absolutely. And I think another thing that became a challenge for us is, you mentioned earlier a mutual acquaintance of ours, Cameron. And he moved to the UK. He wasn&#8217;t the only one. We actually had two of our other organising committee who we had spent the last couple of years trying to build up that community, and they also moved either interstate or international.</p>\n\n\n\n<p>So I am back to being the only organizer now for our local meetup. And we&#8217;ve now got three meetups around Australia running. So Sydney is definitely the most recovered. And a big part of that is because it&#8217;s got Will spearheading it who is phenomenal. Who mentors WordCamps and stuff like that, and has a lot of contacts. And also just because Sydney has the biggest population of any of our cities in Australia.</p>\n\n\n\n<p>Brisbane started up again. For anyone who doesn&#8217;t know Australia which is most people in the world, they&#8217;re in the the top right. So in the northeast of Australia. And our biggest WordCamp that we&#8217;ve ever had before the pandemic so it was November 2019 I think or maybe a bit earlier than that, it was in 2019 anyway. That was our biggest WordCamp we&#8217;ve ever had in Australia and that was 450 people.</p>\n\n\n\n<p>[00:15:29] <strong>Nathan Wrigley:</strong> Yeah that&#8217;s really interesting as a contrast, the last WordCamp London that I attended, which I think was in 2019. So that&#8217;s a subset of the events which go on in the UK. I think that event was about 600, something like that. WordCamp Europe is usually touching about 3,000. WordCamp US, although the numbers have been much smaller recently due to pandemic restrictions, you know eclipses 2,000 as well. So the magnitude, given everything that you&#8217;ve said, I guess we&#8217;re expecting the numbers to be lower.</p>\n\n\n\n<p>Were you saying 400 as the big flagship event in Australia, the Sydney one? Were you saying 400 because you thought that was a small number, or were you just saying it because that is the number?</p>\n\n\n\n<p>[00:16:11] <strong>Jo Minney:</strong> A little of both. 450 was actually in Brisbane. So I think actually a lot of the speakers at that had come from interstate, and that&#8217;s something that definitely we&#8217;ve noticed. Every WordCamp that we have in Australia people travel to it, because they&#8217;re so rare here. Even though it costs us an absolute fortune, we still have people flying to Brisbane, flying to Sydney, flying to Port Macquarie.</p>\n\n\n\n<p>And an interesting thing that I noticed was that a lot of the speakers were the same across multiple WordCamps in Australia because again, it comes down to that not having a huge population and we struggle to find speakers for our meetups. So you can imagine it&#8217;s equally hard to find speakers for WordCamps.</p>\n\n\n\n<p>So that&#8217;s a challenge there. Since post pandemic it&#8217;s become even harder. I know I&#8217;ve had the same conversation with the Brisbane organisers and the Sydney organisers. And I don&#8217;t know if this is something that other communities have experienced, but all three of us have found that our communities are essentially started from scratch again.</p>\n\n\n\n<p>So the number of people that have come back from pre pandemic communities is basically zero. So we had one person at our first meetup when we restarted that had attended a meetup before, ever. It&#8217;s not a bad thing, but it&#8217;s still a thing. And it&#8217;s something that I think has also become a challenge because it means that there aren&#8217;t people who are experienced with running events and that sort of thing. And how to put the word out, and what&#8217;s involved in organising them, and speaking with who is around to help out with that load.</p>\n\n\n\n<p>[00:17:43] <strong>Nathan Wrigley:</strong> Yeah. It&#8217;s interesting. In the UK there&#8217;s several factors which are making it more difficult to get that community engagement back up to the levels that it was pre pandemic. The first one is obviously just related to people&#8217;s desire to go out. They may have dropped out of the community. So there&#8217;s the process of, as you&#8217;ve just described, starting from scratch. So that&#8217;s one thing.</p>\n\n\n\n<p>But also the cost of ever so many aspects of life has gone much, much higher than it was prior to the pandemic. Particularly the cost of venue hire. Venue hire over here has become significantly more expensive, orders of magnitude more expensive. And so something that may have cost X 5 years ago, or 3 years ago is now possibly 3 or 4 or 5 X for the exact same building, for the exact same duration. So there&#8217;s all sorts of circumstances contriving to make it as hard as possible I think. And if you&#8217;re starting from scratch, that is even more of an obstacle.</p>\n\n\n\n<p>[00:18:48] <strong>Jo Minney:</strong> Yeah absolutely. And I am sure that London is probably about as expensive, maybe even more expensive, than Australia. So one of the things that I think is very different here, so those WordCamps that I talked about, even our biggest ones have always historically been at educational venues. So we&#8217;ve always used universities.</p>\n\n\n\n<p>And the one that we were planning locally here was at a TAFE, which is a technical institute. I don&#8217;t know what you would call that in places that are not Australia. That&#8217;s sort of always the kind of places that we&#8217;re looking at and we&#8217;re not talking about flashy hotels and things with 2000 people or conference centers. We&#8217;re talking about a university during their down times. So even trying to keep those costs really low, it was actually a real struggle for us to be able to fund. And I say us, I wasn&#8217;t actually involved in the organising committee for the last one, because I was still fairly new to the community at the time.</p>\n\n\n\n<p>But speaking to Will and some of the other previous organizers about it, A they have to wait until the end of the year to find out the availability for those venues. So it makes planning kind of a challenge. And B, one of the things that WordCamp limited us to, or really pushed for, was for us to keep the ticket prices down at 50 Australian. Which is like 30 Euro or 30 US. So trying to do that and then cover the rest of it, even using a really comparatively cheap venue like a university, was really a struggle still to meet the budget.</p>\n\n\n\n<p>And on top of that, in 2019 that was the first year that we&#8217;d had three WordCamps in Australia in the same year. So before that the most that we&#8217;d ever had was two. And I think that had only happened once. And what we found is that the organizers for those WordCamps were actually competing for funding. So the sponsors were like, oh I don&#8217;t want to fund WordCamp Sydney because we just funded WordCamp Brisbane, and it&#8217;s all the same people that are attending.</p>\n\n\n\n<p>So that&#8217;s something that has really been something that we&#8217;ve noticed, and it&#8217;s something that we&#8217;re keeping in mind when we go into the future planning WordCamps. While we know that they are historically encouraged to be very local events, that&#8217;s something that we&#8217;ve got to keep in mind. We are potentially competing against other cities for that attention where we don&#8217;t want to be. We want to be helping each other grow because there&#8217;s not enough of us to be in competition. We&#8217;ve got to be helping each other out.</p>\n\n\n\n<p>[00:21:15] <strong>Nathan Wrigley:</strong> Yeah. It speaks to coordinating at a higher level doesn&#8217;t it? The idea that, let&#8217;s say there&#8217;s three or five, that they were A spread out geographically, B spread out over time so that you weren&#8217;t trying to compete in the same month for a WordPress event. And that obviously, you&#8217;ve got to go a little bit higher up the pecking order to figure out all of that stuff.</p>\n\n\n\n<p>But from everything that you&#8217;ve said you sound fairly, I&#8217;m going to use an English colloquialism, you sound fairly chipper. Which means you sound fairly upbeat.</p>\n\n\n\n<p>[00:21:47] <strong>Jo Minney:</strong> Optimistic. Hopeful.</p>\n\n\n\n<p>[00:21:49] <strong>Nathan Wrigley:</strong> Exactly. But I want to probe into this, if you&#8217;re willing. How do you really feel about this? Because I can imagine that with all these setbacks and no shows, people coming in smaller numbers, the feeling that the community is dwindling. Do you get moments where you just think, oh this is really hardly worth my time anymore? Do you ever get those moments where you just want to throw in the towel?</p>\n\n\n\n<p>And if that is the case, I wonder if that is another problem which has to be dealt with, you know, people just getting fed up and moving on.</p>\n\n\n\n<p>[00:22:17] <strong>Jo Minney:</strong> Yeah. I won&#8217;t lie. There&#8217;s definitely been times where I&#8217;ve been like, is it really worth it? I am the only volunteer contributor that I&#8217;m aware of, other than my husband who is fairly new to it, in my entire state.</p>\n\n\n\n<p>We have one other contributor who&#8217;s full time at Automattic. So when it comes to the WordPress community everyone that I know is online. And that in itself can be really depressing. But it can also be really challenging for me to have a conversation with someone. And I do think that in person conversations are important, and you don&#8217;t communicate the same way online and over text and via Slack and things like that. Commenting on blog posts is what you do when you&#8217;re having a face to face conversation.</p>\n\n\n\n<p>And while decisions in the WordPress community aren&#8217;t made at WordCamps and meetups and things like that, conversations are started there. And those conversations help to drive future decisions. And that is really important. And it&#8217;s sad to me that Australia isn&#8217;t part of that conversation, and hasn&#8217;t been since definitely since pre Covid, but even before then we were struggling.</p>\n\n\n\n<p>So I think for me that&#8217;s one of the most disappointing things. For example, WordCamp Asia was earlier this year which was super exciting for us. There were some Australian people that attended that. There were no Australian speakers as far as I&#8217;m aware, which I don&#8217;t think is a bad thing because I think it was important for WordCamp Asia to really push for representation from Asian speakers, because that was the purpose of it. And I know if we were to ever have a WordCamp Australia in the future that we would be pushing to try and have as many local speakers as possible as well.</p>\n\n\n\n<p>But then if we look at some of the bigger flagship camps there were two speakers at WordCamp Europe that were from Australia, that I&#8217;m aware of. So I did stalk and go through every single speaker to check, because what else am I going to do with my spare time that I don&#8217;t have?</p>\n\n\n\n<p>So both of the speakers from Australia that were at WordCamp Europe were executives from companies that are very big. And I&#8217;m not going to name names. You can go find them yourself if you&#8217;re really interested, but they work for the Googles and the eBays and the News Corps.</p>\n\n\n\n<p>And, my concern is that globally the voices that are coming out of Australia are not the ones that are doing the work of rebuilding the community. They represent big interests, not most interests. And to me that&#8217;s the most concerning thing about the lack of community here in Australia.</p>\n\n\n\n<p>[00:24:51] <strong>Nathan Wrigley:</strong> Yeah. There is this phrase which sometimes gets brought out that the people that can contribute to the project, there&#8217;s sometimes a feeling that it&#8217;s those that can afford to contribute to the project. So in the scenario that you just described, if your very successful company are willing to send you, then you are now sitting at the table where potentially some of those decisions are being made.</p>\n\n\n\n<p>I realize that it&#8217;s far more complicated than that, but you have a voice because you&#8217;re able to go and prior success for the company that you work for, you know, it&#8217;s no reflection on that company. We want the companies to be successful but that&#8217;s just how it works. And it&#8217;s difficult for people, well such as yourself, to sort of feel like your voice is rising to the top and being heard, I guess.</p>\n\n\n\n<p>[00:25:34] <strong>Jo Minney:</strong> A hundred percent. And you look at the cost of flights, for example. So it&#8217;s easy enough to say we&#8217;ll just go to some of these. Get more people and fund them to go over. But flights are like 65% more expensive now than they were pre pandemic, for international flights from Australia. That&#8217;s bonkers.</p>\n\n\n\n<p>I certainly can&#8217;t afford to pay out of my own money to go over there. And even getting sponsorship, there&#8217;s nothing really in it. There is things in it for people, but it is a challenge to communicate them.</p>\n\n\n\n<p>I like stats, you might&#8217;ve noticed that already Nathan. One of my favorite stats about why I think it&#8217;s important for people to start paying attention to the WordPress community in Australia? So we have the 14th largest market for eCommerce in the world. Which is cool sure. Do you know how much of the web or how much eCommerce on the web is powered by WooCommerce overall globally?</p>\n\n\n\n<p>[00:26:30] <strong>Nathan Wrigley:</strong> Oh no. I know it&#8217;s a significant amount, but don&#8217;t know exact number. Yeah I realize it&#8217;s very high.</p>\n\n\n\n<p>[00:26:37] <strong>Jo Minney:</strong> Yeah like everyone knows the WordPress number, right? But nobody knows the WooCommerce number. I like this because I feel like it&#8217;s a better, accurate representation of websites that are being used. Whereas the WordPress number still takes into account a lot of sort of dormant sites and that sort of thing. So with WooCommerce it powers about 24% of eCommerce sites on the web globally.</p>\n\n\n\n<p>In Australia however, it&#8217;s less than 15%, and Shopify leads with over 20%. So what that tells me, and this is obviously just my interpretation of that data, but it tells me that in Australia we don&#8217;t have the same recognition and understanding of WordPress and WordPress tools as what there is globally.</p>\n\n\n\n<p>And that&#8217;s an opportunity for people who are earning lots of money from WordPress. For the Automattic&#8217;s and the Yoasts and these other big companies that have combined collectively an economy that&#8217;s like bigger than Tesla. It tells me that there is value in them paying more attention to Australia and helping us to rebuild the community because I don&#8217;t think that we can continue to do it the way that we&#8217;re trying at the moment.</p>\n\n\n\n<p>[00:27:45] <strong>Nathan Wrigley:</strong> Yeah that&#8217;s really interesting. That was a really interestingly presented fact because makes it, well it lays bare the opportunity that is maybe being left. The old adage of money being left on the table it kind of fits under that umbrella, doesn&#8217;t it?</p>\n\n\n\n<p>It sounds like you are A, you&#8217;re very committed to the community. I guess you wouldn&#8217;t be on a podcast like this if you weren&#8217;t. But B, you&#8217;ve identified that there&#8217;s a problem. So C, I guess, is what do we do about the problem? Do you have any endeavors? Do you have any thoughts? Do you have any intuitions as to how these challenges might be overcome? How you might reinvigorate the community?</p>\n\n\n\n<p>[00:28:24] <strong>Jo Minney:</strong> Yeah look I think a lot of people who are much smarter and more engaged and well versed in the WordPress community than me have already suggested a lot of the things that I look at and go that would really help us. Even though we&#8217;re not specifically the target audience for those things that are being championed.</p>\n\n\n\n<p>And one of those big ones is, and I know it&#8217;s probably a drum that&#8217;s been beaten to death, but paying speakers or at least covering their travel. Because as I said, I think a lot of those conversations happen at WordCamps. And even if you&#8217;re not paying people to attend them or that sort of thing, by paying speakers you&#8217;re giving the same opportunities to the freelancers and those small businesses as you are to those companies that are working for Google and eBay.</p>\n\n\n\n<p>So I think that&#8217;s one thing that would go a long way towards evening the playing field, and allowing the Australian community to have a little bit more of a voice. And I know that there&#8217;s a huge amount of work that&#8217;s being done to push for that in the WordPress community by loads of different, amazing people.</p>\n\n\n\n<p>And there are sponsorship options and stuff out there for people who are underrepresented in tech. But you know they have their challenges. I think that would go a long way towards helping.</p>\n\n\n\n<p>[00:29:39] <strong>Nathan Wrigley:</strong> I just want to just interject there again and inject the geographical piece again. Because it&#8217;s so easy to forget that for where I live, really I can hop into a car and I can be at a local event within an hour, less. You know and typically more or less everybody in the UK could probably drive in one of the directions of the compass and find an event fairly quickly. May not be all that frequent, but at some point during the calendar year, it really is different isn&#8217;t it where you are? You know you may just drive off in the same compass direction as I do but you end up in the middle of the desert.</p>\n\n\n\n<p>[00:30:13] <strong>Jo Minney:</strong> Or the ocean depending on which way you go.</p>\n\n\n\n<p>[00:30:15] <strong>Nathan Wrigley:</strong> So there really aren&#8217;t those opportunities and the fact that you have to travel further, as you&#8217;ve described, the cost of airline transportation has gone through the roof. So it may be that you simply are nowhere near something. And so just having a little bit of an offset for the cost, the remuneration as you&#8217;ve said for speaking. Simply that may be enough to propel some people to have a different opinion of it, and to make the effort to go.</p>\n\n\n\n<p>[00:30:40] <strong>Jo Minney:</strong> And I think the same thing goes, and it&#8217;s a similar argument, but for the volunteers who are organising. Maybe not all WordCamps but certainly flagship ones. When I was talking to Will about his experience with organising WordCamp Sydney back in 2019, he actually logged his hours for it and he logged 1,200 hours of volunteer work.</p>\n\n\n\n<p>[00:31:03] <strong>Nathan Wrigley:</strong> Wow.</p>\n\n\n\n<p>[00:31:03] <strong>Jo Minney:</strong> And I spoke to one of the organizers, not even the lead organizer, just one of the organizers for WordCamp Europe, on a call for the training team last week. We have like a coffee hour every Friday. Only for me it&#8217;s wine hour because I have a 12 hour difference from everyone else. And he was saying that doesn&#8217;t surprise him at all. And he definitely feels like he logged at least that much as a volunteer for WordCamp Europe.</p>\n\n\n\n<p>So I think there&#8217;s something to be said at least for flagship WordCamps and for that sort of core organising committee who are essentially taking on a second full time job to give them some kind of reason to keep doing that. Otherwise we are just going to keep losing volunteers to people that want to pay them.</p>\n\n\n\n<p>[00:31:47] <strong>Nathan Wrigley:</strong> It&#8217;s interesting as well because, suddenly into my head I&#8217;m thinking, I wonder if there just needs to be a different approach based upon different parts of the world. This is probably going to sound controversial. If anybody&#8217;s listening to this I&#8217;m just throwing it out there. Given what you&#8217;ve described in Australia, I do wonder if the Australian WordPress community needs a different set of parameters applied for a period of time.</p>\n\n\n\n<p>Because there are different constraints, there are different problems, than say you might have in Europe. And it might be that one size doesn&#8217;t fit all, and those considerations could be different for Australia. They could be different for, well pick any part of the world, any country. They might to be judged differently. I don&#8217;t know if that would ever happen, but it&#8217;s certainly an interesting idea.</p>\n\n\n\n<p>[00:32:35] <strong>Jo Minney:</strong> Yeah a hundred percent. And if you&#8217;ve got Matt&#8217;s ear, when we do manage to have our first WordCamp again after the pandemic, we&#8217;d love for him to come visit. Maybe that will help get some more people there. So we do want to make it a primarily Australian event with as many Australian speakers as we can get. But I think having the support and the ear of the global WordPress community would be important.</p>\n\n\n\n<p>[00:32:57] <strong>Nathan Wrigley:</strong> Okay so you&#8217;ve given us one possible way of reinvigorating things. The idea of financial help for, for example, speakers. If there&#8217;s any other ideas you want to just float, go for it.</p>\n\n\n\n<p>[00:33:09] <strong>Jo Minney:</strong> Yeah. So I think something that for me is really hopeful and something that I think is amazing, and I&#8217;m really excited about seeing it happen in the near future. And I&#8217;m not sure how much of this I am meant to be talking about but I&#8217;m going to anyway. And that is the idea that we&#8217;re going to have sort of a contributor tab in the latest WordPress release. Sort of about page.</p>\n\n\n\n<p>And a little bit more information about that because something that has really been a challenge is that, because again, as you said, you don&#8217;t just bump into other contributors here, you have to actually seek that out. And a lot of people don&#8217;t realize that that is something that they can do. That you don&#8217;t need to be able to code to be a contributor.</p>\n\n\n\n<p>And I think that the two things go hand in hand. So by contributing to something you&#8217;re feeling like you&#8217;re part of the community and you feel like you&#8217;re not just giving back to it, but also receiving from it, because you get to be a part of that conversation and the direction of where everything is going.</p>\n\n\n\n<p>And if we can broaden the people who know about that and make sure that they&#8217;re informed. So your average WordPress user or developer has that information sort of plonked in front of them with, hey, did you know that these are a whole bunch of things that you can do that don&#8217;t require you to be an absolute guru at PHP?</p>\n\n\n\n<p>Then I think that that&#8217;s something that&#8217;s going to be really exciting, and hopefully attract more people who historically haven&#8217;t been involved in that community.</p>\n\n\n\n<p>[00:34:36] <strong>Nathan Wrigley:</strong> Great. Any other suggestions or we can move on?</p>\n\n\n\n<p>[00:34:39] <strong>Jo Minney:</strong> I think they&#8217;re the main ones for me. Just trying to increase the representation in any way that we can. I like the idea of the new WordCamps but I&#8217;m not sure that anything has really come up that is the new format for WordCamps. I&#8217;m not sure that anything has really come up that has sounded like it&#8217;s going to be a super fit for us. So if anyone&#8217;s got ideas we&#8217;d love to hear them.</p>\n\n\n\n<p>[00:34:59] <strong>Nathan Wrigley:</strong> Can we just dwell on that for a minute? So I spoke to Angela Jin who is the Automattician who, broadly speaking, she steers in many ways the different bits and pieces. And one of the things that we talked about on a recent podcast episode was about this new idea of WordCamp&#8217;s having a different flavor. Perhaps more localized, perhaps localized around a specific theme.</p>\n\n\n\n<p>So it may be that there would be an SEO one. Or there might be something about blocks. The idea being though that rather than having an event in which everything goes, you would lock it down a little bit and encourage people to attend if they are into that particular niche, if you like. So having looked at those proposals, none of that&#8217;s jumped out. That&#8217;s curious.</p>\n\n\n\n<p>[00:35:46] <strong>Jo Minney:</strong> I think one of the reasons on that for me is that there still seems like there&#8217;s going to be, maybe not 1,200 hours worth of volunteer work, but a significant amount of volunteer work to make it happen. And we&#8217;re struggling to get 20 people at a meetup. So I personally don&#8217;t have the time to put in even 400 hours of volunteer work, or even 50 hours of volunteer work to have eight people show up to an event, and be the only person who is organising and running it.</p>\n\n\n\n<p>[00:36:17] <strong>Nathan Wrigley:</strong> Yeah that does make sense. Obviously you are operating in a completely different system. I think the endeavor of these new WordCamps is to try and shake it up, because I think although the Australian example that you&#8217;ve just described seems to be more severe, I think the feeling has been that over the whole of the international community the numbers have perhaps dwindled a little bit and there are challenges in getting people to come back.</p>\n\n\n\n<p>And so trying new things out, the hope would be that some of it sticks and some good ideas would rise to the surface. But I do like the fact that you&#8217;re open to new ideas. And it may be that somebody in the next year puts on an event which isn&#8217;t an absolute runaway success. And it&#8217;s just quirky in some way that people like, and you may be able to borrow that example.</p>\n\n\n\n<p>[00:37:06] <strong>Jo Minney:</strong> Yeah absolutely. I think two things that I would love to see happen more of in the community in general is local contributor days. So that&#8217;s something that we&#8217;ve tossed around and we&#8217;re fortunate we do have one full time Automattician that lives in my state.</p>\n\n\n\n<p>So he works on Gutenberg, and while he doesn&#8217;t super love public speaking he does get up and do it anyway because he knows that there&#8217;s not really anyone else with the same level of experience and expertise as what he&#8217;s got. So super grateful for that. Tell Dan thank you. But I think having a contributor day locally would be a great way of driving more sort of enthusiasm around the community.</p>\n\n\n\n<p>But to do that we need to have enough people that can help run it. And I&#8217;ve never even been to a contributor day myself, so that&#8217;s not something that I really feel comfortable running. And hopefully that will change after WordCamp US. So I will be going to my first contributor day. I&#8217;m super excited about that. So that&#8217;s something that we&#8217;re hoping to do.</p>\n\n\n\n<p>And another thing that we actually did in 2020 right before the pandemic hit, that I would encourage any other struggling communities to consider as a way to, I guess reinvigorate, but also bring the community closer together. And again, it&#8217;s a huge amount of work, but it is so rewarding. And that&#8217;s the do_action events. So I&#8217;m not sure if you&#8217;ve heard of these before Nathan.</p>\n\n\n\n<p>So we ran a do_action event back in January of 2020, and it was so fun. So much chaos. We built eight charities websites, theoretically in a day. I ended up finishing off most of them over the following six months. But just for the rewarding experience of bringing that community together and seeing a hundred volunteers in a room, trying to use WordPress to help these charities was phenomenal. And I think it&#8217;s probably, when I look at what&#8217;s happening and I&#8217;m like, oh, is it really worth it? I think back to that. And that&#8217;s the thing that keeps me going.</p>\n\n\n\n<p>[00:39:08] <strong>Nathan Wrigley:</strong> During the last few years, has the community, I know that the real world events have been on hold, but have you got a thriving online event set up? Are there things that are going on in these cities which are online and regular and what have you? Or is it really just that even the online stuff has gone away as well?</p>\n\n\n\n<p>[00:39:30] <strong>Jo Minney:</strong> Will did run some online stuff. There&#8217;s a two and a half hour difference between Sydney and Perth, so our community didn&#8217;t attend a lot of that stuff, but I know that he did have some good attendance for a while. I think post pandemic, a lot of people got burned out with Zoom. They just didn&#8217;t want to Zoom all the time. And I get that, a hundred percent get that. I&#8217;m on video calls pretty much all day, every day with my clients. And I think it&#8217;s great that this technology opens up so many doors, but I can also understand that it can be exhausting.</p>\n\n\n\n<p>In terms of things like Slack, we have really struggled to get our local community to use Slack. We actually have a WP Australia workspace, so that has started to bounce back. But it was essentially dead for a couple of years. And there was basically no conversations happening on there.</p>\n\n\n\n<p>Locally, what I&#8217;ve found, we tried a bunch of different platforms. People don&#8217;t go to Meetup. We struggle even to get people that come to our meetups to use Meetup. So, the one that we&#8217;ve had the most success with, which is, sucks for me because I don&#8217;t use it, is Facebook. So we&#8217;ve actually got a local community group on Facebook, and I log in like once or twice a week to check for comments on there, and that&#8217;s the only time I use Facebook, so if that&#8217;s where people are, then that&#8217;s where I&#8217;ll go to try and get them along. But yeah, online not great either, so.</p>\n\n\n\n<p>[00:40:58] <strong>Nathan Wrigley:</strong> Well, I think probably we&#8217;re just approaching the amount of time that we&#8217;ve got. So I will just ask that if anybody is listening to this who feels that they could help, obviously if you&#8217;re in Australia, that would be, I guess, an added bonus. But you know, even if not, if there&#8217;s some way that you feel that you could help. Jo, where would we contact you? Is there an email address or a social handle that you use?</p>\n\n\n\n<p>[00:41:24] <strong>Jo Minney:</strong> I&#8217;m Jo Minney on most socials. I am recently on Mastodon, because I got mad at it being rebranded on the bird, that&#8217;s no longer a bird. And if people want to email me all of my stuff, all of my contact details are on my website. So jominney.com is my personal blog, and always happy to have a chat.</p>\n\n\n\n<p>[00:41:45] <strong>Nathan Wrigley:</strong> Jo Minney, I really appreciate you chatting to me today about the state of the WordPress community in Australia. Thank you so much.</p>\n\n\n\n<p>[00:41:52] <strong>Jo Minney:</strong> Thanks Nathan. It&#8217;s been very fun.</p>\n</div>\n\n\n\n<p>On the podcast today we have <a href=\"https://jominney.com/\">Jo Minney</a>.</p>\n\n\n\n<p>Jo is the founder of a small business that specialises in building websites for organisations, mainly nonprofits and the tech industry. With a background in engineering, Jo decided to shift her focus to website development using WordPress. She was excited about the WordPress community, and joined her local meetup, eventually becoming an organiser. Jo is keen for the WordPress community in Australia to grow, and has been making significant contributions to that growth.</p>\n\n\n\n<p>In this episode, Jo shares her insights on the challenges of organising WordCamps and meetups in Australia, where the large size of the country and small population present some unique obstacles. If you’re used to a European or North American setting, it’s really interesting how the geography of the country presents challenges not seen elsewhere.</p>\n\n\n\n<p>We discuss the importance of paying speakers and covering their travel expenses to create equal opportunities for freelancers and small businesses, as well as to give the Australian community a stronger voice.</p>\n\n\n\n<p>We talk about her journey with WordPress, starting from her early days as a coder in a different field, and navigating the community online. Jo highlights the need for in-person opportunities to learn and connect with others, especially in a global community where time zone differences and online platforms can be limiting.</p>\n\n\n\n<p>We chat about the challenges faced by the Australian WordPress community, from limited resources and burnout, to the struggle of attracting new organisers and attendees. Jo shares some exciting success stories, such as organising WordPress events and hosting a successful do_action event.</p>\n\n\n\n<p>We briefly get into the need for more diverse voices, and the importance of fostering a supportive and inclusive environment</p>\n\n\n\n<p>If you’re interested in hearing about how the WordPress community is doing in Australia, this episode is for you.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Useful links.</h2>\n\n\n\n<p><a href=\"https://www.meetup.com/en-AU/WordPress-Perth/\">WordPress Perth Meetup</a></p>\n\n\n\n<p><a href=\"https://wpaustralia.org/events/\">WP Australia website</a></p>\n\n\n\n<p><a href=\"https://brisbane.wordcamp.org/2019/\">WordCamp Brisbane</a></p>\n\n\n\n<p><a href=\"https://asia.wordcamp.org/2023/\">WordCamp Asia</a></p>\n\n\n\n<p><a href=\"https://doaction.org/\">do_action events</a></p>\n\n\n\n<p><a href=\"https://wpaustralia.slack.com/join/shared_invite/enQtMzMyNzI5NTcyMTY1LWY5NGEwYjAxODExMDY4Y2IxOWRiZTQxZWQzMmI4YjE0NDkzZDU4MjYzODMxYzVmZGJhNzdlZWM1YzRjNWNhYmU#/shared-invite/email\">WP Australia Slack</a></p>\n\n\n\n<p><a href=\"https://www.facebook.com/wpaustralia/\">WP Australia on Facebook</a></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 23 Aug 2023 14:00:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Nathan Wrigley\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:37;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"HeroPress: From WordPress To Emma\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://heropress.com/?post_type=heropress-essays&p=5766\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:118:\"https://heropress.com/essays/from-wordpress-to-emma/#utm_source=rss&utm_medium=rss&utm_campaign=from-wordpress-to-emma\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:10005:\"<img width=\"1024\" height=\"512\" src=\"https://heropress.com/wp-content/uploads/2023/08/082323-min.jpg\" class=\"attachment-large size-large wp-post-image\" alt=\"Pull Quote: WordPress taught me to write, it taught me to code, it taught me to express myself.\" />\nHere is Emma reading her own story aloud.\n\n\n\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-pre-emma-nbsp\">Pre Emma&nbsp;</h2>\n\n\n\n<p>My parents are both into tech. My dad &#8211; a Computer Engineer, and my mum &#8211; a Semiconductor Engineer, met in the ’80s in Silicon Valley. The romance that started between them eventually led to me, a techy kid who loved doodling on the walls just as much as building computers with her dad.</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-kid-emma\">Kid Emma</h2>\n\n\n\n<p>I can remember Y2K, the Covid of its time in the tech world. My dad and his colleagues were at all the server rooms “just in case”, and we celebrated at a Korean Baptist Church “just in case.”</p>\n\n\n\n<p>I remember the first AOL trial CD &#8211; with 30 whole minutes of “FREE” internet, my first IM (instant messenger) username (snugglebunny &#8211; I know, I know), free calls after 9 pm, and putting the phone to your ear only to hear a blasting of eeee-oahhh–eeee–uuuuu that told you the internet was on.&nbsp;</p>\n\n\n\n<p>I also remember when our one family computer turned into three personal ones—no more having to wait your turn. Technology was changing. </p>\n\n\n\n<blockquote class=\"wp-block-quote\">\n<p>Now you could use your home phone and the internet at the same time, and videos went from a 2-day loading speed to 2 hours. </p>\n</blockquote>\n\n\n\n<p>By the time I was in university, we all had the internet in our pockets. I had a laptop that was way too heavy for its size, BUT my dad&#8217;s work computer screen still looked like the matrix.&nbsp;</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-uni-emma-nbsp\">Uni Emma&nbsp;</h2>\n\n\n\n<p>My first WordPress interaction happened when I was in university studying Marketing and Strategic Communications. I started a blog about working as a barista for Starbucks. I was learning HTML5/CSS (yeah, way back then), practicing the basics of the technical side but also enjoying the creativity of designing what my “readers” would see, such as fonts, colors, and layout. I was really putting my newfound knowledge to the test. </p>\n\n\n\n<blockquote class=\"wp-block-quote\">\n<p>I didn’t know it just yet, but I was starting to connect my love for creativity with the tech world.</p>\n</blockquote>\n\n\n\n<p>The days were filled with tweaking code, and the nights were filled with stories. Stories of customers, fellow baristas, and observations watched from afar. The regulars, the missed connections, the extraordinary amount of times someone missed the toilet when they were trying to poo. But that didn’t last long; I got my degree, and life went forward, but my blog stayed behind.&nbsp;</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-twenties-emma-nbsp\">Twenties Emma&nbsp;</h2>\n\n\n\n<p>The next time WP made an appearance in my journey was when I started a blog about being a teacher in South Korea. Stories of coffee as the common denominator turned into the tall tales of a not-so-Korean Korean living in a world that she didn’t know much about. The students and teaching were one thing; the community of expats was quite another. Spending time with such a varied group of weirdos was how I realized there is more to life than a 9 to 5. We shared our stories about how we each got there. </p>\n\n\n\n<blockquote class=\"wp-block-quote\">\n<p>Ex-military, farmers, film-extras, photographers, journalists, developers, semi-pro footballers, each sharing where they were from and how they got to where they are now.&nbsp; </p>\n</blockquote>\n\n\n\n<p>With each closed door, another opens, and sometimes more doors than you can imagine. My blog didn’t last long. But the way of life (traveling and meeting interesting strangers) has lasted till now.</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-present-emma\">Present Emma</h2>\n\n\n\n<p>Fast forward to now-ish.&nbsp;</p>\n\n\n\n<p>I’m the Head of Content at Hostinger.</p>\n\n\n\n<p>I decided to return to school for Computer Engineering and Cyber Security, so I moved to Lithuania. The goal was to get another degree and a visa to the EU, but instead, I found Hostinger, the perfect sweet spot for tech + marketing. Fast forward through COVID, through my graduation, and re-enter WordPress. I didn’t actually think “work” could get much better until the WP Community was introduced into my life. </p>\n\n\n\n<blockquote class=\"wp-block-quote\">\n<p>I found out then that all those things my dad used to say about “finding a job that doesn’t feel like work” are actually true.&nbsp;&nbsp;</p>\n</blockquote>\n\n\n\n<p>I’m talking about waking up excited to see what work throws at you, what fires you can put out, what changes you can implement. What can you do today that can make it better than yesterday? That’s when work doesn’t feel like work. That’s when you know you’ve got it good.&nbsp;</p>\n\n\n\n<p>Anyways,&nbsp;</p>\n\n\n\n<p>I joined the WP Slack community, where I was amazed by the number of people, the friendliness, and the amount of information. I had major FOMO for not having had this as a constant in my life until now.</p>\n\n\n\n<p>Enter a new team: Documentation. Now <em>they</em> had their priorities straight. Documentation, words, content, and CONSISTENCY– who knew there was a world of Emma’s out there? Not to mention, it was a collective group of people who were there because they wanted to be there, not because they were told. We all had a common goal. Content may be King, but Consistency is Queen.</p>\n\n\n\n<p>Then came WordCamp Asia 2023. Hellooo, Korean baby Jesus! It was like being thrown into a sea of open doors. Everyone was kind, welcoming, intelligent, silly, happy, joyful… insert 1000 more adjectives here. AND the best part is, everyone is a WordPress nerd and loves to just talk about WP. Was I in WP heaven? </p>\n\n\n\n<blockquote class=\"wp-block-quote\">\n<p>I found a place where I could be unapologetically me. Genuine Emma. Not one of the many Emma’s in the world, but this Emma. Me.</p>\n</blockquote>\n\n\n\n<p>Since then, even more doors have opened. I volunteered as an MC. I wanted to see if I could make these stage fright butterflies into something more. I’ve spoken at events and presented at work, but WordCamp was a whole other level. The acceptance, the kudos, and the ease of knowing that everyone was rooting for me to succeed was a breath of fresh air. I took these teachings, experiences, and skils back to Hostinger and it changed the way I led my team and looked at projects, issues, etc.&nbsp;</p>\n\n\n\n<p>So here we are. Volunteering for my 3rd flagship, looking back at my life full of twists and turns with WordPress as my mile markers. I didn’t always realize that it has been a constant in my life. It taught me to write, it taught me to code, it taught me to express myself. It taught me that everyone has a place in WP and all are welcome.</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-bonus-nbsp\">Bonus:&nbsp;</h2>\n\n\n\n<p>While revisiting my WordPress journey, I stumbled upon an old post; even though I had to make a few updates to it, it’s a nice TL;DR.&nbsp;</p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-poet-emma\">Poet Emma</h3>\n\n\n\n<p>There once was a girl<br />Who had more than a skip-and-hop in her step<br />Dancing along a string of lights</p>\n\n\n\n<p>One day she noticed &#8211; in the sea of her peers<br />To the left were wide eyes and skin as pure as snow<br />To the right was darker skin and hair long, silky, with flow</p>\n\n\n\n<p>Her eyes were not as blue as the 7 seas and crystal waters<br />Her eyes were not brown tree rings filled with stories passed down and reincarnated&nbsp;<br />Her eyes told a different story<br />From her white ancestors– a victory ring protecting what was to come&nbsp;<br />With a starburst of wildflowers shining through the heart&nbsp;<br />With speckles of green, and blue, and brown<br />She had a little bit of everyone<br />But it didn&#8217;t turn her frown upside down&nbsp;</p>\n\n\n\n<p>Some of her friends turned red like a tomato<br />Under the hot desert sun<br />While others began to glow a beautiful brown<br />But hid in the shadows till it was gone<br />Her skin did a combo<br />Not red nor brown,&nbsp;<br />Olivey yellow<br />And added a milky way of stars dusted across her nose&nbsp;</p>\n\n\n\n<p>Her friends packed brown paper bags and Superman lunch boxes&nbsp;<br />Filled with tortillas or crustless sandwiches<br />Hers had rice, kim, and a yogortut<br />No one wanted to trade&nbsp;</p>\n\n\n\n<p>Straight A’s were a must!<br />If not, you were grounded<br />She thought this was the same for all the kids<br />But she was wrong&nbsp;</p>\n\n\n\n<p>Fast forward 20 years<br />Her eyes have seen the world&nbsp;<br />Dipped her toes in the 5000 islands<br />Scaled waterfalls after riding her bike up a mountain&nbsp;<br />Jumped from a plane over sand, water, and snow<br />Tickled her taste buds from bugs to Van Gogh&nbsp;</p>\n\n\n\n<p>Her eyes have not changed<br />But other have<br />She no longer is the girl who gets the question, why are her eyes like that?<br />But she is now the girl who gets the question, how do I get eyes like that?&nbsp;</p>\n\n\n\n<p>She no longer longs for her freckles to be gone<br />But now appreciates them as they come, and miss them when they&#8217;re gone<br />She no longer wonders why studying was an important loop<br />But now she is always ahead and has a stronger work ethic</p>\n\n\n\n<p>She still wonders<br />She still looks with her eyes<br />The same eyes that were once filled with confusion and doubt<br />But now her eyes embrace it&nbsp;<br />And are ready for the next route</p>\n<p>The post <a rel=\"nofollow\" href=\"https://heropress.com/essays/from-wordpress-to-emma/\">From WordPress To Emma</a> appeared first on <a rel=\"nofollow\" href=\"https://heropress.com\">HeroPress</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 23 Aug 2023 12:07:14 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:10:\"Emma Young\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:38;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:23:\"Matt: I Love WordCamps!\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:22:\"https://ma.tt/?p=95743\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:39:\"https://ma.tt/2023/08/i-love-wordcamps/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:5867:\"<p>One of the cooler things the WordPress community started doing <a href=\"https://sf.wordcamp.org/2006/\">in 2006</a> was putting on these events we called WordCamps. <a href=\"https://us.wordcamp.org/2023/\">A big one is about to kick off in National Harbor, Maryland</a> (which is basically Washington DC, but we&#8217;re calling it National Harbor for some reason).</p>\n\n\n\n<p>You might be wondering where the name came from: Tim O&#8217;Reilly, of the <a href=\"https://www.oreilly.com/\">O&#8217;Reilly books</a> that so many of us learned from, hosted a hacker event called <a href=\"https://en.wikipedia.org/wiki/Foo_Camp\">Foo Camp</a> but it had limited capacity, and was therefore something of an exclusive invite (one time I eventually went I slept in a sleeping bag in an office).  <a href=\"https://tantek.com/\">Tantek Çelik</a> had been invited the year before, but not in 2005, and I had never been invited, so a group of us put together a more &#8220;open source&#8221; event in response called <a href=\"https://en.wikipedia.org/wiki/BarCamp\">BarCamp</a>. (The name was an allusion to the foo/bar concept in teaching programming, and <a href=\"https://en.wikipedia.org/wiki/BarCamp#/media/File:BarCamp_originators.jpg\">the picture</a> on that Wikipedia page was in the living room of my first apartment in San Francisco, as you can tell by the stand-up piano and <a href=\"https://www.youtube.com/watch?v=b_Fp4znXvOg\">Thelonious Monk</a> poster.)</p>\n\n\n\n<p>Foo had the idea of a conference created on-the-fly by its organizers, and also had a radical event where there wasn&#8217;t even lodging but all that mattered was getting people together. Bar took that format and opened up the invite list, and did it quickly with just a few weeks of planning. They also open sourced the format so BarCamps could be hosted anywhere in the world, and many were. The following year I riffed on that and made the <a href=\"https://sf.wordcamp.org/2006/\">first WordCamp in San Francisco</a>, at the <a href=\"https://en.wikipedia.org/wiki/Cafe_Du_Nord\">Swedish American Music Hall</a>, the <a href=\"https://www.weareasgods.film/\">same place Stewart Brand hosted the first hackers conference in the 70s</a>. (We didn&#8217;t know that at the time, it was just a coincidence.)</p>\n\n\n\n<p>WordCamp took the everyone-is-welcome from Bar, mixed it with the attendees-create-the-conference from Foo, added a little more structure and planning so we ended up with these <a href=\"https://central.wordcamp.org/\">really groovy community-organized events all over the world</a> where people come together to learn, contribute, get to know each other, and have fun. WordCamp San Francisco evolved into <a href=\"https://us.wordcamp.org/\">WordCamp US</a>, our flagpole event for North America. (I like that US can mean &#8220;us&#8221; as well as United States.) There have been hundreds of WordCamps around the world, and when we were getting started I used to go to all of them; if someone put one together I&#8217;d cram into an economy seat and fly there. I can&#8217;t make it to all of them anymore, but I still go as many as I can, and they&#8217;re some of my favorite days of the entire year.</p>\n\n\n\n<p>It&#8217;s so cool to see a group of people from the eclectic backgrounds come together because we love making the thing that allows people to make the thing. (WordPress.) You&#8217;ll see CEOs of multi-hundred million ARR companies brushing shoulders with techno-anarchists, all brought together by a common hope and belief in the <a href=\"https://ma.tt/2014/01/four-freedoms/\">four freedoms of open source</a> and the mission of WordPress—to democratize publishing, put the best tools in the world in the hands of everyone, for free and for freedom.</p>\n\n\n\n<p>This year&#8217;s WordCamp US is exciting to me for a bunch of reasons. One, I love spending time with other contributors to open source. Second, WordCamp organizers iterate and learn, and so every year I&#8217;m excited to see what&#8217;s being trialed and what&#8217;s improved, because they just keep getting better and better. Third, we&#8217;re doing a community summit beforehand for the first time in a while, which is why I&#8217;m already in Maryland. Finally, on the <a href=\"https://communitysummit.wordcamp.org/2023/schedule/\">amazing schedule</a> are two speakers I&#8217;ve invited to bring something new to our milieu.</p>\n\n\n\n<p><a href=\"https://kenliu.name/\">Ken Liu</a> is one of my favorite sci-fi writers and will be giving an amazing talk weaving together the history of narrative craft and modern publishing and technology. I&#8217;ve read almost everything he&#8217;s written or translated, and seen him talk once before, and couldn&#8217;t be more curious to hear what he&#8217;s bringing to the WordPress community.</p>\n\n\n\n<p><a href=\"https://simonwillison.net/\">Simon Willison</a> is an engineer and blogger I&#8217;ve followed since the earliest days of WordPress, and recently he&#8217;s been one of the most interesting explorers in the new world of <a href=\"https://simonwillison.net/tags/llms/\">AI and LLMs</a>. He&#8217;ll be sharing with us how to tap into this new alien intelligence, how it can accelerate our coding, security, and mission to democratize publishing.</p>\n\n\n\n<p>So if you ever have a chance to go to a WordCamp, take it! It may be too late for this one, but you can follow the livestream (visit <a href=\"https://us.wordcamp.org/2023/\">the site</a> once the conference starts), and plan for next year. We also make sure all the talks accessible <a href=\"https://wordpress.tv/\">on WordPress.tv</a> later.</p>\n\n\n\n<p>Foo Camps still happen, by the way, and have branched into science and such, and who gets invited is a whole deal. They&#8217;re still awesome.</p>\n\n\n\n<p>I hope what people see here is that creativity and doing generates more creativity and doing.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 22 Aug 2023 23:30:18 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:39;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:139:\"WPTavern: WordPress Coding Standards Maintainer Warns Maintenance Will Be Halted Without Funding: “This Is an Unsustainable Situation.”\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=148049\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:142:\"https://wptavern.com/wordpress-coding-standards-maintainer-warns-maintenance-will-be-halted-without-funding-this-is-an-unsustainable-situation\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4425:\"<p><a href=\"https://github.com/WordPress/WordPress-Coding-Standards/releases/tag/3.0.0\">WordPressCS 3.0.0</a> was <a href=\"https://make.wordpress.org/core/2023/08/21/wordpresscs-3-0-0-is-now-available/\">released</a> this week with what its maintainer, Juliette Reinders Folmer, says are significant changes to improve the accuracy, performance, stability, and maintainability of all sniffs, and its handling of modern PHP. The project is a collection of <a href=\"https://github.com/squizlabs/PHP_CodeSniffer\">PHP_CodeSniffer</a> rules (sniffs) that are used to validate code developed for WordPress, helping developers meet the requirements of the official <a href=\"https://make.wordpress.org/core/handbook/best-practices/coding-standards/\">WordPress Coding Standards</a>.</p>\n\n\n\n<p>This update adds many of the non-controversial rules <a href=\"https://make.wordpress.org/core/2020/03/20/updating-the-coding-standards-for-modern-php/\">proposed in March 2020</a> to the Coding standards guidelines but leaves those that generated more discussion or objections for a future release. Many of the new rules are now available as sniffs in WordPressCS.</p>\n\n\n\n<p>Version 3.0.0 includes important architecture changes. Most notably, Composer is now the only supported way to install WordPressCS, as this update includes four run-time dependencies. The release contains breaking changes for those using ignore annotations and those who maintain custom rulesets or have created a custom PHPCS standard based on the project. A <a href=\"https://github.com/WordPress/WordPress-Coding-Standards/wiki/Upgrade-Guide-to-WordPressCS-3.0.0-for-Developers-of-external-standards\">detailed upgrade guide</a> is available for these various scenarios.</p>\n\n\n\n<p>WordPressCS is largely maintained by Folmer and a small group of volunteers, but the future of the project is in jeopardy if they cannot get funding. Folmer said it is currently in a good place with this release but this will not last long with the pace at which PHP is moving.</p>\n\n\n\n<p>&#8220;WordPressCS 3.0.0 has cost thousands of hours of work and the vast majority of work has been done by one, mostly unpaid, contributor, with code review support from two fellow maintainers,&#8221; she said.</p>\n\n\n\n<p>&#8220;Unless funding is found to continue maintaining WordPressCS and its dependencies, the future is bleak and maintenance will be halted.&#8221;</p>\n\n\n\n<p>Folmer is calling on corporation and agency users of WordPressCS to find a way to fund the project&#8217;s continued maintenance and development. She elaborated on the dire need to have more contributors involved:</p>\n\n\n\n<blockquote class=\"wp-block-quote\">\n<p>If we are being realistic, the&nbsp;<a href=\"https://en.wikipedia.org/wiki/Bus_factor\">bus factor</a>&nbsp;of WordPressCS is&nbsp;<strong>1</strong>, which is the most dangerous situation for any project to be in.</p>\n\n\n\n<p>A large part of the WordPress community, including WordPress Core, relies heavily on the WordPress Coding Standards for code quality and security checks and while the community has been pretty vocal with copious complaints about the delayed release, barely anyone has stepped up and actually contributed.</p>\n\n\n\n<p>The majority of the work for WordPressCS requires specialized knowledge. Knowledge which can be learned with enough time investment, but in recent years nobody has stepped up to do so.</p>\n\n\n\n<p><strong><em>This is an unsustainable situation and it ends now</em></strong>.</p>\n</blockquote>\n\n\n\n<p>WordPressCS has become one of the most highly used open source tools in the WordPress ecosystem that is now in a vulnerable place with so few contributors. Although many developers commented on the release, thanking Folmer for her efforts, no contributors or corporations have publicly stepped forward to support the project&#8217;s continued develpment.</p>\n\n\n\n<p>&#8220;With over 15 million installations on Packagist and a 400% increase in monthly installation in the past three years alone, WPCS’s popularity is surging and shows no sign of stopping,&#8221; Lucas Bustamante, a backend developer specialized in automated tests, commented on the post. &#8220;The situation is alarming as WPCS is a foundational tool that flags not only code style issues but also critical security issues, making WordPress a more secure CMS. Letting WPCS fall into limbo poses a risk to the entire WordPress ecosystem.&#8221;</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 22 Aug 2023 20:55:56 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:40;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:78:\"Do The Woo Community: All About the Page Builder Summit with Anchen and Nathan\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"https://dothewoo.io/?p=76079\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:77:\"https://dothewoo.io/all-about-the-page-builder-summit-with-anchen-and-nathan/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:434:\"<p>We chat about the Page Builder Summit, how it started, what it takes to run the summit and what you can expect in September.</p>\n<p>&gt;&gt; The post <a rel=\"nofollow\" href=\"https://dothewoo.io/all-about-the-page-builder-summit-with-anchen-and-nathan/\">All About the Page Builder Summit with Anchen and Nathan</a> appeared first on <a rel=\"nofollow\" href=\"https://dothewoo.io\">Do the Woo - a WooCommerce Builder Community</a>	.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 22 Aug 2023 08:07:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"BobWP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:41;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:107:\"WPTavern: New Chrome Browser Extension Enables One-Click Plugin and Theme Testing with WordPress Playground\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=147997\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:118:\"https://wptavern.com/new-chrome-browser-extension-enables-one-click-plugin-and-theme-testing-with-wordpress-playground\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4052:\"<p><a href=\"https://developer.wordpress.org/playground/\">WordPress Playground</a>, an experimental project that uses WebAssembly (WASM) to&nbsp;<a href=\"https://wptavern.com/new-prototype-runs-wordpress-in-the-browser-with-no-php-server\">run WordPress in the browser</a>,&nbsp;makes it possible for users to quickly test plugins and themes without having to set up a local development environment.</p>\n\n\n\n<p>Ordinarily, testing a plugin or theme with Playground requires visiting&nbsp;<a rel=\"noreferrer noopener\" href=\"https://playground.wordpress.net/\" target=\"_blank\"><code>playground.wordpress.net</code></a>, which will&nbsp;instantly create a real WordPress instance with admin access without having to install PHP, MySQL, or Apache. It runs inside the browser using a SQLite database. Adding a plugin or theme to the instance is as easy as appending the slug to the URL when creating the test site: </p>\n\n\n\n<p><a href=\"https://playground.wordpress.net/?plugin=gutenberg\">https://playground.wordpress.net/?plugin=gutenberg</a></p>\n\n\n\n<p><a href=\"https://playground.wordpress.net/?theme=lemmony-agency\">https://playground.wordpress.net/?theme=lemmony-agency</a></p>\n\n\n\n<p>A new Chrome browser extension, created by LUBUS, a development agency, makes this even easier by adding a &#8220;Playground&#8221; button to theme and plugin pages on WordPress.org. Users can fire up a sandbox instance to test drive a theme or plugin in just one click. </p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<img width=\"1470\" height=\"853\" src=\"https://149611589.v2.pressablecdn.com/wp-content/uploads/2023/08/wordpress-playground-browser-extension-lubus.png\" alt=\"\" class=\"wp-image-148029\" />\n\n\n\n<p>I tested the extension and it works as advertised. It&#8217;s a neat little shortcut for launching a Playground instance without having to remember the URL or get the plugin/theme&#8217;s slug to append to it. The video below shows a site created with a selected plugin installed in under 20 seconds.</p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n\n\n\n\n<p>&#8220;We have been using Playground internally a lot for testing out plugins, and quick demos for internal or client meetings,&#8221; LUBUS founder Ajit Bohra said. &#8220;We often find a plugin or theme which we would like to test drive. It involves copying the slug of the theme or plugin and using them in the URL. To make this quick we thought of building and quick browser extension to add a button on wordpress.org to quickly launch a plugin or theme in the Playground.&#8221;</p>\n\n\n\n<p>Bohra posted his process of creating the extension in a <a href=\"https://twitter.com/ajitbohra/status/1692408702962393256\">thread</a> on X. He used the <a href=\"https://www.plasmo.com/\">Plasmo framework</a>, which offers a dedicated runtime for building browser extensions, taking the project from idea to built in approximately 30 minutes.</p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\">For POC code wise all we need to get the required button on the plugin page. <a href=\"https://t.co/2lEV2H4q0K\">pic.twitter.com/2lEV2H4q0K</a></p>&mdash; Ajit Bohra (@ajitbohra) <a href=\"https://twitter.com/ajitbohra/status/1692415787791958085?ref_src=twsrc%5Etfw\">August 18, 2023</a></blockquote>\n</div>\n\n\n\n<p>Bohra said the browser extension is currently a proof of concept that he would like to further extend with more settings based on feedback from users. He also hopes to collaborate with the Meta team in the future to see something like this added to the plugin and theme pages on WordPress.org so that users don&#8217;t have to rely on a browser extension.</p>\n\n\n\n<p>The Chrome extension is called &#8220;<a href=\"https://chrome.google.com/webstore/detail/open-in-wordpress-playgro/khfpfafeepbfdhggfoalfmbhkmjkolmo/related\">Open in WordPress Playground</a>&#8221; and is available to the public for free on the Chrome Web Store. The code is <a href=\"https://github.com/lubusIN/wp-playground-browser-extension\">open source on GitHub</a> and open for contribution.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 22 Aug 2023 00:56:50 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:42;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:70:\"Do The Woo Community: Podcasting and Doing the Woo at WordCamp US 2023\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"https://dothewoo.io/?p=76107\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:69:\"https://dothewoo.io/podcasting-and-doing-the-woo-at-wordcamp-us-2023/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:411:\"<p>Better late than never. Been thinking and talking about WordCamp US for the past few months, so yes, I will be there.</p>\n<p>&gt;&gt; The post <a rel=\"nofollow\" href=\"https://dothewoo.io/podcasting-and-doing-the-woo-at-wordcamp-us-2023/\">Podcasting and Doing the Woo at WordCamp US 2023</a> appeared first on <a rel=\"nofollow\" href=\"https://dothewoo.io\">Do the Woo - a WooCommerce Builder Community</a>	.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 19 Aug 2023 13:09:52 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"BobWP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:43;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:164:\"Post Status: Translations Across the Project • Admin Design • New Blocks Page • Working Group on Organizations Supporting WordPress • Contributor Mentorship\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:159:\"https://poststatus.com/translations-across-the-project-admin-design-new-blocks-page-working-group-on-organizations-supporting-wordpress-contributor-mentorship/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:159:\"https://poststatus.com/translations-across-the-project-admin-design-new-blocks-page-working-group-on-organizations-supporting-wordpress-contributor-mentorship/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:19035:\"<h2 class=\"wp-block-heading\" id=\"h-this-week-at-wordpress-org-april-3-2023\">This Week at WordPress.org (August 7, 2023)</h2>\n\n\n<div class=\"has-background has-theme-palette-8-background-color wp-block-post-excerpt\"><p class=\"wp-block-post-excerpt__excerpt\">With just a few days before Community Summit, Contributor Day, and WordCamp US, many initiatives across the project are gearing up for time well-spent together. Docs, Training, and several other teams are joining together to work on translations and localizations in a way that supports Gutenberg Phase 4 Multilingual.The Design team is working on the&hellip; </p></div>\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<div class=\"wp-block-kadence-infobox kt-info-box150145_a5ac79-bb\"><div class=\"kt-blocks-info-box-link-wrap kt-blocks-info-box-media-align-left kt-info-halign-left\"><div class=\"kt-blocks-info-box-media-container\"><div class=\"kt-blocks-info-box-media kt-info-media-animate-none\"><div class=\"kadence-info-box-icon-container kt-info-icon-animate-none\"><div class=\"kadence-info-box-icon-inner-container\"><span class=\"kadence-dynamic-icon\"></span></div></div></div></div><div class=\"kt-infobox-textcontent\"><h2 class=\"kt-blocks-info-box-title\">Translations, Dashboard Redesign, Blocks page, Supporting Orgs, Mentorship</h2><p class=\"kt-blocks-info-box-text\">  <a href=\"https://make.wordpress.org/polyglots/2023/08/15/discussion-for-a-proposal-for-wp-org-content-translation-and-localization/\">Discussion for a proposal for WP.org content translation and localization</a><br /><br />  <a href=\"https://make.wordpress.org/design/2023/08/10/admin-design-kickoff/\">Admin Design Kickoff</a><br /><br />  <a href=\"https://make.wordpress.org/meta/2023/08/11/introducing-wordpress-org-blocks/\">Introducing WordPress.org/blocks</a><br /><br />  <a href=\"https://make.wordpress.org/meta/2023/08/09/organizations-supporting-wordpress-org/\">Organizations Supporting WordPress.org</a><br /><br /> &#x200d;  <a href=\"https://make.wordpress.org/project/2023/08/11/the-inaugural-cohort-of-the-wordpress-contributor-mentorship-program-has-concluded/\">The Inaugural Cohort of the WordPress Contributor Mentorship Program has Concluded</a></p></div></div></div>\n\n\n\n<div class=\"wp-block-kadence-spacer aligncenter kt-block-spacer-150145_9cb3a4-58\"><div class=\"kt-block-spacer kt-block-spacer-halign-center\"><hr class=\"kt-divider\" /></div></div>\n\n\n\n<div class=\"wp-block-kadence-spacer aligncenter kt-block-spacer-150145_050cc2-2e\"><div class=\"kt-block-spacer kt-block-spacer-halign-center\"><hr class=\"kt-divider\" /></div></div>\n\n\n\n<div class=\"wp-block-columns is-layout-flex wp-container-9 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"wp-embedded-content\"><a href=\"https://jeanbaptisteaudras.com/2023/08/contribution-stats-for-wordpress-6-3-lionel/\">Contribution Stats for WordPress 6.3 « Lionel »</a></blockquote>\n</div>\n\n\n\n<h2 class=\"wp-block-heading\">WordPress 6.4</h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2023/07/18/wordpress-6-4-whats-on-your-wishlist/\">WordPress 6.4: What’s on your wishlist?</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/06/05/wordpress-6-4-development-cycle/\">WordPress 6.4 Development Cycle</a></li>\n</ul>\n</div>\n</div>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<div class=\"wp-block-columns is-layout-flex wp-container-14 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<div class=\"wp-block-columns is-layout-flex wp-container-12 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<h2 class=\"wp-block-heading\" id=\"h-community\"><a href=\"https://make.wordpress.org/community\">Community</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/community/2023/08/16/contributor-working-group-mentorship-chat-agenda-august-17th-0700-utc-apac-emea-and-1600-utc-amer/\">Contributor Working Group: Mentorship Chat Agenda | August 17th 07:00 UTC (APAC/EMEA) and 16:00 UTC (AMER)</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/community/2023/08/14/wcus-2023-community-team-event-at-contributor-day/\">WCUS 2023: Community Team event at Contributor Day</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/community/2023/08/09/recap-of-the-diverse-speaker-training-group-wpdiversity-amer-emea-on-august-9-2023/\">Recap of the Diverse Speaker Training group (#WPDiversity) AMER/EMEA on August 9, 2023</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-core\"><a href=\"https://make.wordpress.org/core\">Core</a> </h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2023/08/16/a-week-in-core-august-14-2023/\">Two Weeks in Core – August 14, 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/08/15/status-update-on-the-interactivity-api/\">Status update on the Interactivity API</a></li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\">Phase 3 Ideations</h3>\n\n\n\n<ul>\n<li><a target=\"_blank\" href=\"https://make.wordpress.org/core/2023/07/03/real-time-collaboration/\" rel=\"noreferrer noopener\">Real-Time Collaboration</a></li>\n\n\n\n<li><a target=\"_blank\" href=\"https://make.wordpress.org/core/2023/07/04/workflows/\" rel=\"noreferrer noopener\">Workflows</a></li>\n\n\n\n<li><a target=\"_blank\" href=\"https://make.wordpress.org/core/2023/07/05/revisions/\" rel=\"noreferrer noopener\">Revisions</a></li>\n\n\n\n<li><a target=\"_blank\" href=\"https://make.wordpress.org/core/2023/07/07/media-library/\" rel=\"noreferrer noopener\">Media Library</a></li>\n\n\n\n<li><a target=\"_blank\" href=\"https://make.wordpress.org/core/2023/07/10/block-library/\" rel=\"noreferrer noopener\">Block Library</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/12/admin-design/\" target=\"_blank\" rel=\"noreferrer noopener\">Admin Design</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/design/2023/08/10/admin-design-kickoff/\">Admin Design Kickoff</a></li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-developer-blog\"><a href=\"https://developer.wordpress.org/news/\">Developer Blog</a></h3>\n\n\n\n<ul>\n<li><a href=\"https://developer.wordpress.org/news/2023/08/whats-new-for-developers-august-2023/\">What’s new for developers? (August 2023)</a></li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-meetings\">Meetings</h3>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2023/08/15/dev-chat-agenda-august-16-2023/\">Dev Chat agenda, August 16, 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/08/14/editor-chat-agenda-16-august-2023/\">Editor Chat Agenda: 16 August 2023</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\"><a href=\"https://make.wordpress.org/design\">Design</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/design/2023/08/14/design-share-jul-31-aug-11/\">Design Share: Jul 31-Aug 11</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/design/2023/08/10/admin-design-kickoff/\">Admin Design Kickoff</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\"><a href=\"https://make.wordpress.org/docs\">Docs</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/docs/2023/08/15/agenda-for-docs-team-bi-weekly-meeting-august-15-2023/\">Agenda for Docs Team bi-weekly meeting August 15, 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/updates/2023/08/14/documentation-team-update-august-14-2023/\">Documentation Team Update – August 14, 2023</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-hosting\"><a href=\"https://make.wordpress.org/hosting\">Hosting</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/hosting/2023/08/16/hosting-team-meeting-agenda-8-16-2023/\">Hosting Team Meeting Agenda 8-16-2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/hosting/2023/07/26/wordpress-hosting-survey/\">WordPress Hosting Survey</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\"><a href=\"https://make.wordpress.org/marketing\">Marketing</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/marketing/2023/07/10/notes-global-marketing-team-meeting-4-july-2023/\">Notes: Global Marketing Team meeting, 4 July 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/updates/2023/08/14/marketing-team-update-the-first-half-of-2023/\">Marketing Team Update: The first half of 2023</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\"><a href=\"https://make.wordpress.org/meta\">Meta</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/meta/2023/08/11/introducing-wordpress-org-blocks/\">Introducing WordPress.org/blocks</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/meta/2023/08/09/organizations-supporting-wordpress-org/\">Organizations Supporting WordPress.org</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/meta/2023/08/03/matrix-chat-summary-august/\">Matrix chat Summary – August 3, 2023</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-mobile\"><a href=\"https://make.wordpress.org/mobile\">Mobile</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/updates/2023/08/08/mobile-team-update-august-8th/\">Mobile Team Update – August 8th</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-openverse\"><a href=\"https://make.wordpress.org/openverse\">Openverse</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/openverse/2023/08/07/last-week-openverse-2023-07-31-2023-08-07/\">A week in Openverse: 2023-07-31 – 2023-08-07</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/openverse/2023/07/28/openverse-monthly-priorities-meeting-2023-08-02/\">Openverse Monthly Priorities Meeting 2023-08-02</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-performance\"><a href=\"https://make.wordpress.org/performance/\">Performance</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2023/08/15/performance-chat-summary-15-august-2023/\">Performance Chat Summary: 15 August 2023</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-plugins\"><a href=\"https://make.wordpress.org/plugins\">Plugins</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/updates/2023/08/14/plugin-review-team-14-august-2023/\">Plugin Review Team: 14 August 2023</a></li>\n</ul>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<h2 class=\"wp-block-heading\" id=\"h-polyglots\"><a href=\"https://make.wordpress.org/polyglots\">Polyglots</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/polyglots/2023/08/16/agenda-weekly-polyglots-chat-august-16-2023-1300-utc/\">Agenda: Weekly Polyglots Chat – August 16, 2023 (13:00 UTC)</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/polyglots/2023/08/15/discussion-for-a-proposal-for-wp-org-content-translation-and-localization/\">Discussion for a proposal for WP.org content translation and localization</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-project\">Project</h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/project/2023/08/11/the-inaugural-cohort-of-the-wordpress-contributor-mentorship-program-has-concluded/\">The Inaugural Cohort of the WordPress Contributor Mentorship Program has Concluded</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\"><a href=\"https://make.wordpress.org/sustainability\">Sustainability</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/sustainability/2023/07/28/sustainability-chat-summary-july-28-2023/\">Sustainability Chat Summary, July 28, 2023</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-test\"><a href=\"https://make.wordpress.org/test\">Test</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/test/2023/08/15/test-team-reps-call-for-nominations-3/\">Test Team Reps: Call for Nominations</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/test/2023/08/15/test-team-at-wcus-2023/\">Test Team at WCUS 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/updates/2023/08/14/test-team-update-14-august-2023/\">Test Team Update: 14 August 2023</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-theme\"><a href=\"https://make.wordpress.org/theme\">Theme</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/themes/2023/08/11/blue-note-the-second-community-theme-is-released/\">Blue Note: The second community theme is released</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/updates/2023/08/15/themes-team-update-august-15-2023/\">Themes team update August 15, 2023</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-training\"><a href=\"https://make.wordpress.org/training\">Training</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/training/2023/08/04/wcus-contributor-day-tutorials-workshop-in-person-remote/\">WCUS Contributor Day: Tutorials Workshop (In-Person &amp; Remote)</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/training/2023/08/03/introducing-the-training-team-guide-program/\">Introducing the Training Team Guide Program!</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/training/2023/08/02/announcing-the-first-learn-wordpress-course-cohort/\">Announcing the first Learn WordPress Course Cohort.</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/training/2023/08/14/training-team-meeting-recap-8th-august-2023/\">Training Team Meeting Recap – 8th August 2023</a></li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-tutorials\"><a href=\"https://learn.wordpress.org/tutorials\">Tutorials</a></h3>\n\n\n\n<ul>\n<li><a href=\"https://learn.wordpress.org/tutorial/embedding-media-and-third-party-content-on-your-website/\">Embedding media and third-party content on your website</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/tutorial/testing-your-plugins-for-php-version-compatibility/\">Testing your plugins for PHP version compatibility</a></li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-online-workshops\">Online Workshops</h3>\n\n\n\n<ul>\n<li><a href=\"https://learn.wordpress.org/?meeting=https-www-meetup-com-learn-wordpress-online-workshops-events-295453051\">The Wide World of WordPress Events</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=contributing-to-the-learn-wordpress-platform-part-1\">Contributing to the Learn WordPress platform – part 1</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=whats-new-for-developers-august-2023\">What’s new for developers? (August 2023)</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=wp-dev-livestream-sendig-block-theme-12\">WP dev livestream: Sendig block theme</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=training-team-contributor-hour\">Training Team Contributor Hour</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=website-auditing-and-conversion-optimization\">Website auditing and conversion optimization</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=wordpress-database-optimization-and-maintenance\">WordPress database optimization and maintenance</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=creating-a-contact-page\">Creating a contact page</a></li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-courses\"><a href=\"https://learn.wordpress.org/courses\">Courses</a></h3>\n\n\n\n<ul>\n<li><a href=\"https://learn.wordpress.org/course/developing-with-the-wordpress-rest-api/\">Introduction to developing with the WordPress REST API</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\"><a href=\"https://make.wordpress.org/tv\">WordPress TV</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/tv/2023/06/15/enhancing-slide-management-for-video-publications/\">Enhancing Slide Management for Video Publications</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-wptv\">WPTV</h2>\n\n\n\n<ul>\n<li><a href=\"https://wordpress.tv/category/year/2022/\">Latest WordPress TV videos</a></li>\n</ul>\n</div>\n</div>\n</div>\n</div>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-related-news\">Related News:</h2>\n\n\n\n<ul>\n<li><a href=\"https://blog.jquery.com/2023/05/11/jquery-3-7-0-released-staying-in-order/\">jQuery 3.7.0</a></li>\n\n\n\n<li><a href=\"https://nodejs.org/en/blog/release/v20.2.0\">Node v20.2.0 released</a></li>\n\n\n\n<li><a href=\"https://www.php.net/archive/2023.php#2023-07-06-1\">PHP 8.3.0 Alpha 3 available for testing</a></li>\n\n\n\n<li><a href=\"https://www.php.net/archive/2023.php#2023-05-11-1\"></a><a href=\"https://www.php.net/archive/2023.php#2023-07-06-2\">PHP 8.2.8 Released!</a></li>\n\n\n\n<li><a href=\"https://www.php.net/archive/2023.php#2023-07-06-3\">PHP 8.1.21 Released!</a></li>\n\n\n\n<li><a href=\"https://github.com/PHPMailer/PHPMailer/releases/tag/v6.8.0\">PHPMailer 6.8.0</a></li>\n\n\n\n<li><a href=\"https://262.ecma-international.org/\">TC39</a></li>\n\n\n\n<li><a href=\"http://github.com/composer/composer/releases/tag/2.5.8\">Composer 2.5.8</a></li>\n</ul>\n\n\n\n<p class=\"has-theme-palette-7-background-color has-background\">Thanks for reading our WP dot .org roundup! Each week we are highlighting the news and discussions coming from the good folks making WordPress possible. If you or your company create products or services that use WordPress, you need to be engaged with them and their work. Be sure to share this resource with your product and project managers. <br /><br /><strong>Are you interested in giving back and contributing your time and skills to WordPress.org?</strong>   <a href=\"https://wordpress.org/support/article/contributing-to-wordpress/\">Start Here ›</a><br /><br /><strong>Get our weekly WordPress community news digest</strong> — Post Status&#8217; <a href=\"https://poststatus.com/news/week-in-review/\">Week in Review</a> — covering the WP/Woo news plus significant writing and podcasts. It&#8217;s also available in <a href=\"https://poststatus.com/newsletter\">our newsletter</a>.  </p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<div class=\"wp-block-media-text alignwide is-stacked-on-mobile has-background\"><a href=\"https://poststatus.com/\"><img src=\"https://poststatus.com/wp-content/uploads/2021/09/vertical-post-status-logo-250.png\" alt=\"Post Status\" class=\"wp-image-85823 size-full\" /></a><div class=\"wp-block-media-text__content\">\n<p class=\"has-text-align-left has-normal-font-size\" id=\"h-get-ready-for-remote-work\">You — and <a href=\"https://poststatus.com/#Agency\">your whole team</a> can <a href=\"https://poststatus.com/#choose-membership\">Join Post Status</a> too!</p>\n\n\n\n<p class=\"has-text-align-left has-small-font-size\"><strong>Build your network. Learn with others. Find your next job — or your next hire.</strong> Read the <strong>Post Status</strong> <a href=\"https://poststatus.com/newsletter/\">newsletter</a>. <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/2709.png\" alt=\"✉\" class=\"wp-smiley\" /> Listen to <a href=\"https://poststatus.com/podcasts/\">podcasts</a>. <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f399.png\" alt=\"?\" class=\"wp-smiley\" /> Follow <a href=\"https://twitter.com/post_status/\">@Post_Status</a> <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f426.png\" alt=\"?\" class=\"wp-smiley\" /> and <a href=\"https://www.linkedin.com/company/post-status-llc/\">LinkedIn</a>. <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f4bc.png\" alt=\"?\" class=\"wp-smiley\" /></p>\n</div></div>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n<p>This article was published at Post Status — the community for WordPress professionals.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 19 Aug 2023 03:00:33 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"Courtney Robertson\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:44;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:116:\"Post Status: WordPress 6.3 • Release Workflows • European Union Cyber Resiliency Act • Gutenberg Accessibility\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:37:\"https://poststatus.com/wordpress-6-3/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:37:\"https://poststatus.com/wordpress-6-3/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:18226:\"<h2 class=\"wp-block-heading\" id=\"h-this-week-at-wordpress-org-april-3-2023\">This Week at WordPress.org (August 7, 2023)</h2>\n\n\n<div class=\"has-background has-theme-palette-8-background-color wp-block-post-excerpt\"><p class=\"wp-block-post-excerpt__excerpt\">WordPress 6.3, Lionel, has been released. It&#8217;s time to test out the details and footnotes blocks, give the WP_DEVELOPMENT_MODE a try, and check out the new Get Involved tab on the Welcome screen. The WordPress Training team announces its first course cohort for Learn.WordPress.org. The course will cover Developing Your First WordPress Block, and offer&hellip; </p></div>\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<div class=\"wp-block-kadence-infobox kt-info-box_94d1bd-77\"><div class=\"kt-blocks-info-box-link-wrap kt-blocks-info-box-media-align-left kt-info-halign-left\"><div class=\"kt-blocks-info-box-media-container\"><div class=\"kt-blocks-info-box-media kt-info-media-animate-none\"><div class=\"kadence-info-box-icon-container kt-info-icon-animate-none\"><div class=\"kadence-info-box-icon-inner-container\"><span class=\"kadence-dynamic-icon\"></span></div></div></div></div><div class=\"kt-infobox-textcontent\"><h2 class=\"kt-blocks-info-box-title\"> WP 6.3, 1st LearnWP Cohort, EU CRA</h2><p class=\"kt-blocks-info-box-text\">  <a href=\"https://wordpress.org/news/2023/08/lionel/\">WordPress 6.3 “Lionel”</a><br /><br /> &#x200d;  <a href=\"https://make.wordpress.org/training/2023/08/02/announcing-the-first-learn-wordpress-course-cohort/\">Announcing the first Learn WordPress Course Cohort</a><br /><br /> <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/2934.png\" alt=\"⤴\" class=\"wp-smiley\" /><a href=\"https://make.wordpress.org/core/2023/08/01/proposal-improve-the-editor-tech-workflow-for-major-releases/\">Proposal: improve the editor tech workflow for major releases</a><br /><br />  <a href=\"https://wordpress.org/news/2023/08/concerns-over-the-european-unions-cyber-resilience-act-cra/\">Concerns over the European Union’s Cyber Resilience Act (CRA)</a></p></div></div></div>\n\n\n\n<div class=\"wp-block-kadence-spacer aligncenter kt-block-spacer-_b57166-6e\"><div class=\"kt-block-spacer kt-block-spacer-halign-center\"><hr class=\"kt-divider\" /></div></div>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-news\"><a href=\"https://wordpress.org/news\">News</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://wordpress.org/news/2023/08/lionel/\">WordPress 6.3 “Lionel”</a></li>\n\n\n\n<li><a href=\"https://wordpress.org/news/2023/08/concerns-over-the-european-unions-cyber-resilience-act-cra/\">Concerns over the European Union’s Cyber Resilience Act (CRA)</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/contribute\">Contribute</a></li>\n</ul>\n\n\n\n<div class=\"wp-block-kadence-spacer aligncenter kt-block-spacer-_8f6276-eb\"><div class=\"kt-block-spacer kt-block-spacer-halign-center\"><hr class=\"kt-divider\" /></div></div>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n\n</div>\n\n\n\n<div class=\"wp-block-columns is-layout-flex wp-container-16 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<h2 class=\"wp-block-heading\">WordPress 6.4</h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2023/07/18/wordpress-6-4-whats-on-your-wishlist/\">WordPress 6.4: What’s on your wishlist?</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/06/05/wordpress-6-4-development-cycle/\">WordPress 6.4 Development Cycle</a></li>\n</ul>\n</div>\n</div>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n\n</div>\n\n\n\n<div class=\"wp-block-columns is-layout-flex wp-container-21 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<div class=\"wp-block-columns is-layout-flex wp-container-19 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<h2 class=\"wp-block-heading\"><a href=\"https://make.wordpress.org/accessibility\">Accessibility</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/accessibility/2023/08/07/matrix-test-results/\">Matrix Test Results</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-community\"><a href=\"https://make.wordpress.org/community\">Community</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/community/2023/08/02/new-github-feature-request-separating-access-to-the-meetup-and-wordcamp-trackers/\">New GitHub Feature Request: Separating access to the Meetup and WordCamp trackers</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/community/2023/08/02/community-team-meeting-agenda-for-3-august-2023/\">Community Team Meeting Agenda for 3 August, 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/community/2023/08/02/recap-inaugural-nextgen-pilot-events/\">Recap: Inaugural NextGen Pilot Events</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-core\"><a href=\"https://make.wordpress.org/core\">Core</a> </h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2023/08/01/whose-ticket-is-it-anyway/\">Whose ticket is it, anyway?</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/08/01/proposal-improve-the-editor-tech-workflow-for-major-releases/\">Proposal: improve the editor tech workflow for major releases</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/08/07/wordpress-6-3-performance-improvements/\">WordPress 6.3 performance improvements</a></li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\">Phase 3 Ideations</h3>\n\n\n\n<ul>\n<li><a target=\"_blank\" href=\"https://make.wordpress.org/core/2023/07/03/real-time-collaboration/\" rel=\"noreferrer noopener\">Real-Time Collaboration</a></li>\n\n\n\n<li><a target=\"_blank\" href=\"https://make.wordpress.org/core/2023/07/04/workflows/\" rel=\"noreferrer noopener\">Workflows</a></li>\n\n\n\n<li><a target=\"_blank\" href=\"https://make.wordpress.org/core/2023/07/05/revisions/\" rel=\"noreferrer noopener\">Revisions</a></li>\n\n\n\n<li><a target=\"_blank\" href=\"https://make.wordpress.org/core/2023/07/07/media-library/\" rel=\"noreferrer noopener\">Media Library</a></li>\n\n\n\n<li><a target=\"_blank\" href=\"https://make.wordpress.org/core/2023/07/10/block-library/\" rel=\"noreferrer noopener\">Block Library</a></li>\n\n\n\n<li><a target=\"_blank\" href=\"https://make.wordpress.org/core/2023/07/12/admin-design/\" rel=\"noreferrer noopener\">Admin Design</a></li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-developer-blog\"><a href=\"https://developer.wordpress.org/news/\">Developer Blog</a></h3>\n\n\n\n<ul>\n<li><a href=\"https://developer.wordpress.org/news/2023/08/styling-blocks-empowering-users-with-css-custom-properties/\">Styling blocks: empowering users with CSS custom properties</a></li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-meetings\">Meetings</h3>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2023/08/09/dev-chat-agenda-august-9-2023/\">Dev Chat agenda, August 9, 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/08/07/editor-chat-agenda-9-august-2023/\">Editor Chat Agenda: 9 August 2023</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\"><a href=\"https://make.wordpress.org/docs\">Docs</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/docs/2023/08/04/summary-for-docs-team-meeting-august-1-2023/\">Summary for Docs Team meeting, August 1, 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/updates/2023/08/07/documentation-team-update-august-7-2023/\">Documentation Team Update – August 7, 2023</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-hosting\"><a href=\"https://make.wordpress.org/hosting\">Hosting</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/hosting/2023/07/26/wordpress-hosting-survey/\">WordPress Hosting Survey</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\"><a href=\"https://make.wordpress.org/meta\">Meta</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/meta/2023/08/09/organizations-supporting-wordpress-org/\">Organizations Supporting WordPress.org</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/meta/2023/06/20/make-team-dashboards/\">Make Team Dashboards</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/meta/2023/06/15/triaging-open-issues-on-trac-for-make-teams/\">Triaging open issues on Trac for Make Teams</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-mobile\"><a href=\"https://make.wordpress.org/mobile\">Mobile</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/updates/2023/08/08/mobile-team-update-august-8th/\">Mobile Team Update – August 8th</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-openverse\"><a href=\"https://make.wordpress.org/openverse\">Openverse</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/openverse/2023/08/07/last-week-openverse-2023-07-31-2023-08-07/\">A week in Openverse: 2023-07-31 – 2023-08-07</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/openverse/2023/07/28/openverse-monthly-priorities-meeting-2023-08-02/\">Openverse Monthly Priorities Meeting 2023-08-02</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-performance\"><a href=\"https://make.wordpress.org/performance/\">Performance</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2023/08/08/performance-chat-summary-8-august-2023/\">Performance Chat Summary: 8 August 2023</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-plugins\"><a href=\"https://make.wordpress.org/plugins\">Plugins</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/updates/2023/08/07/plugin-review-team-7-august-2023/\">Plugin Review Team: 7 August 2023</a></li>\n</ul>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<h2 class=\"wp-block-heading\" id=\"h-polyglots\"><a href=\"https://make.wordpress.org/polyglots\">Polyglots</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/polyglots/2023/08/09/adding-some-meta-buttons-always-visible/\">Adding some meta buttons always visible</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/polyglots/2023/08/09/new-wordpress-org-theme-for-your-rosetta-site/\">New WordPress.org Theme for your Rosetta Site</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-project\">Project</h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/project/2023/07/13/proposal-for-establishing-a-make-diversity-equity-inclusion-and-belonging-deib-team-within-the-wordpress-community/\">Proposal for Establishing a Make Diversity, Equity, Inclusion, and Belonging (“DEIB”) Team within the WordPress Community</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\"><a href=\"https://make.wordpress.org/sustainability\">Sustainability</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/sustainability/2023/07/28/sustainability-chat-summary-july-28-2023/\">Sustainability Chat Summary, July 28, 2023</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-test\"><a href=\"https://make.wordpress.org/test\">Test</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/updates/2023/08/07/test-team-update-7-august-2023/\">Test Team Update: 7 August 2023</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-theme\"><a href=\"https://make.wordpress.org/theme\">Theme</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/themes/2023/08/07/themes-team-meeting-agenda-for-august-08-2023/\">Themes team meeting agenda for August 08, 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/updates/2023/08/08/themes-team-update-august-08-2023/\">Themes team update August 08, 2023</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-training\"><a href=\"https://make.wordpress.org/training\">Training</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/training/2023/08/04/wcus-contributor-day-tutorials-workshop-in-person-remote/\">WCUS Contributor Day: Tutorials Workshop (In-Person &amp; Remote)</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/training/2023/08/03/introducing-the-training-team-guide-program/\">Introducing the Training Team Guide Program!</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/training/2023/08/02/announcing-the-first-learn-wordpress-course-cohort/\">Announcing the first Learn WordPress Course Cohort.</a></li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-tutorials\"><a href=\"https://learn.wordpress.org/tutorials\">Tutorials</a></h3>\n\n\n\n<ul>\n<li><a href=\"https://learn.wordpress.org/tutorial/exploring-wordpress-6-3/\">Exploring WordPress 6.3</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/tutorial/how-to-use-the-spacer-block/\">How to use the spacer block</a></li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-online-workshops\">Online Workshops</h3>\n\n\n\n<ul>\n<li><a href=\"https://learn.wordpress.org/?meeting=what-is-the-domain-name-system-6\">What is the Domain Name System?</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=what-is-the-domain-name-system-5\">What is the Domain Name System?</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=training-team-contributor-day-online-session-2\">Training Team Contributor Day Online Session</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=common-wordpress-apis-global-variables\">Common WordPress APIs: Global Variables</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=wp-dev-livestream-sendig-block-theme-11\">WP dev livestream: Sendig block theme</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=%E3%83%95%E3%83%AB%E3%82%B5%E3%82%A4%E3%83%88%E7%B7%A8%E9%9B%86%E3%81%A7%E5%AE%9F%E9%9A%9B%E3%81%AB%E3%82%B5%E3%82%A4%E3%83%88%E3%82%92%E4%BD%9C%E3%81%A3%E3%81%A6%E3%81%BF%E3%82%88%E3%81%86%EF%BC%81\">フルサイト編集で実際にサイトを作ってみよう!</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=contributing-to-the-wordpress-community-team-events-and-roles\">Contributing to the WordPress Community Team: Events and Roles</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=hallway-hangout-extending-blocks-with-custom-design-tools\">Hallway Hangout: Extending blocks with custom design tools</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=how-to-start-contributing-to-the-wordpress-core\">How to start contributing to the WordPress Core</a></li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-courses\"><a href=\"https://learn.wordpress.org/courses\">Courses</a></h3>\n\n\n\n<ul>\n<li><a href=\"https://learn.wordpress.org/course/developing-with-the-wordpress-rest-api/\">Introduction to developing with the WordPress REST API</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\"><a href=\"https://make.wordpress.org/tv\">WordPress TV</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/tv/2023/06/15/enhancing-slide-management-for-video-publications/\">Enhancing Slide Management for Video Publications</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-wptv\">WPTV</h2>\n\n\n\n<ul>\n<li><a href=\"https://wordpress.tv/category/year/2022/\">Latest WordPress TV videos</a></li>\n</ul>\n</div>\n</div>\n</div>\n</div>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-related-news\">Related News:</h2>\n\n\n\n<ul>\n<li><a href=\"https://blog.jquery.com/2023/05/11/jquery-3-7-0-released-staying-in-order/\">jQuery 3.7.0</a></li>\n\n\n\n<li><a href=\"https://nodejs.org/en/blog/release/v20.2.0\">Node v20.2.0 released</a></li>\n\n\n\n<li><a href=\"https://www.php.net/archive/2023.php#2023-07-06-1\">PHP 8.3.0 Alpha 3 available for testing</a></li>\n\n\n\n<li><a href=\"https://www.php.net/archive/2023.php#2023-05-11-1\"></a><a href=\"https://www.php.net/archive/2023.php#2023-07-06-2\">PHP 8.2.8 Released!</a></li>\n\n\n\n<li><a href=\"https://www.php.net/archive/2023.php#2023-07-06-3\">PHP 8.1.21 Released!</a></li>\n\n\n\n<li><a href=\"https://github.com/PHPMailer/PHPMailer/releases/tag/v6.8.0\">PHPMailer 6.8.0</a></li>\n\n\n\n<li><a href=\"https://262.ecma-international.org/\">TC39</a></li>\n\n\n\n<li><a href=\"http://github.com/composer/composer/releases/tag/2.5.8\">Composer 2.5.8</a></li>\n</ul>\n\n\n\n<p class=\"has-theme-palette-7-background-color has-background\">Thanks for reading our WP dot .org roundup! Each week we are highlighting the news and discussions coming from the good folks making WordPress possible. If you or your company create products or services that use WordPress, you need to be engaged with them and their work. Be sure to share this resource with your product and project managers. <br /><br /><strong>Are you interested in giving back and contributing your time and skills to WordPress.org?</strong>   <a href=\"https://wordpress.org/support/article/contributing-to-wordpress/\">Start Here ›</a><br /><br /><strong>Get our weekly WordPress community news digest</strong> — Post Status&#8217; <a href=\"https://poststatus.com/news/week-in-review/\">Week in Review</a> — covering the WP/Woo news plus significant writing and podcasts. It&#8217;s also available in <a href=\"https://poststatus.com/newsletter\">our newsletter</a>.  </p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<div class=\"wp-block-media-text alignwide is-stacked-on-mobile has-background\"><a href=\"https://poststatus.com/\"><img src=\"https://poststatus.com/wp-content/uploads/2021/09/vertical-post-status-logo-250.png\" alt=\"Post Status\" class=\"wp-image-85823 size-full\" /></a><div class=\"wp-block-media-text__content\">\n<p class=\"has-text-align-left has-normal-font-size\" id=\"h-get-ready-for-remote-work\">You — and <a href=\"https://poststatus.com/#Agency\">your whole team</a> can <a href=\"https://poststatus.com/#choose-membership\">Join Post Status</a> too!</p>\n\n\n\n<p class=\"has-text-align-left has-small-font-size\"><strong>Build your network. Learn with others. Find your next job — or your next hire.</strong> Read the <strong>Post Status</strong> <a href=\"https://poststatus.com/newsletter/\">newsletter</a>. <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/2709.png\" alt=\"✉\" class=\"wp-smiley\" /> Listen to <a href=\"https://poststatus.com/podcasts/\">podcasts</a>. <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f399.png\" alt=\"?\" class=\"wp-smiley\" /> Follow <a href=\"https://twitter.com/post_status/\">@Post_Status</a> <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f426.png\" alt=\"?\" class=\"wp-smiley\" /> and <a href=\"https://www.linkedin.com/company/post-status-llc/\">LinkedIn</a>. <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f4bc.png\" alt=\"?\" class=\"wp-smiley\" /></p>\n</div></div>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n<p>This article was published at Post Status — the community for WordPress professionals.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 19 Aug 2023 03:00:33 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"Courtney Robertson\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:45;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:125:\"Post Status: WordPress 6.3 RC3 • Cyber Resilience Act • Accessibility in Block Editing • Merging Gutenberg during Alpha\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:124:\"https://poststatus.com/wordpress-6-3-rc3-cyber-resilience-act-accessibility-in-block-editing-merging-gutenberg-during-alpha/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:124:\"https://poststatus.com/wordpress-6-3-rc3-cyber-resilience-act-accessibility-in-block-editing-merging-gutenberg-during-alpha/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:24892:\"<h2 class=\"wp-block-heading\" id=\"h-this-week-at-wordpress-org-april-3-2023\">This Week at WordPress.org (July 30, 2023)</h2>\n\n\n<div class=\"has-background has-theme-palette-8-background-color wp-block-post-excerpt\"><p class=\"wp-block-post-excerpt__excerpt\">What do WordPress, Drupal, Joomla, and TYPO3 have in common? Leaders across these Content Management Systems have come together to express their concerns and seek dialogue with EU legislators regarding the proposed Cyber Resilience Act. They emphasize the vital role of Free and Open Source Software in fostering innovation, security, and economic prosperity. We&#8217;re just&hellip; </p></div>\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<div class=\"wp-block-kadence-infobox kt-info-box_94d1bd-77\"><div class=\"kt-blocks-info-box-link-wrap kt-blocks-info-box-media-align-left kt-info-halign-left\"><div class=\"kt-blocks-info-box-media-container\"><div class=\"kt-blocks-info-box-media kt-info-media-animate-none\"><div class=\"kadence-info-box-icon-container kt-info-icon-animate-none\"><div class=\"kadence-info-box-icon-inner-container\"><span class=\"kadence-dynamic-icon\"></span></div></div></div></div><div class=\"kt-infobox-textcontent\"><h2 class=\"kt-blocks-info-box-title\"> WP 6.3, Whose Ticket, Merging Gutenberg during Alpha, and EU CRA</h2><p class=\"kt-blocks-info-box-text\">  <a href=\"https://wordpress.org/news/2023/08/wordpress-6-3-rc3/\">WordPress 6.3 RC3</a><br /><br />  <a href=\"https://make.wordpress.org/core/2023/08/01/whose-ticket-is-it-anyway/\">Whose ticket is it, anyway?</a><br /><br /> <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/2934.png\" alt=\"⤴\" class=\"wp-smiley\" /><a href=\"https://make.wordpress.org/core/2023/08/01/proposal-improve-the-editor-tech-workflow-for-major-releases/\">Proposal: improve the editor tech workflow for major releases</a><br /><br />  <a href=\"https://wordpress.org/news/2023/08/concerns-over-the-european-unions-cyber-resilience-act-cra/\">Concerns over the European Union’s Cyber Resilience Act (CRA)</a></p></div></div></div>\n\n\n\n<div class=\"wp-block-kadence-spacer aligncenter kt-block-spacer-_b57166-6e\"><div class=\"kt-block-spacer kt-block-spacer-halign-center\"><hr class=\"kt-divider\" /></div></div>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-news\"><a href=\"https://wordpress.org/news\">News</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://wordpress.org/news/2023/08/concerns-over-the-european-unions-cyber-resilience-act-cra/\">Concerns over the European Union’s Cyber Resilience Act (CRA)</a></li>\n\n\n\n<li><a href=\"https://wordpress.org/news/2023/08/wordpress-6-3-rc3/\">WordPress 6.3 RC3</a></li>\n\n\n\n<li><a href=\"https://wordpress.org/news/2023/07/people-of-wordpress-ihtisham-zahoor/\">People of WordPress: Ihtisham Zahoor</a></li>\n\n\n\n<li><a href=\"https://wordpress.org/news/2023/07/synced-patterns-the-evolution-of-reusable-blocks/\">Synced Patterns: The Evolution of Reusable Blocks</a></li>\n</ul>\n\n\n\n<div class=\"wp-block-kadence-spacer aligncenter kt-block-spacer-_8f6276-eb\"><div class=\"kt-block-spacer kt-block-spacer-halign-center\"><hr class=\"kt-divider\" /></div></div>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n\n</div>\n\n\n\n<div class=\"wp-block-columns is-layout-flex wp-container-24 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<h2 class=\"wp-block-heading\">WordPress 6.3</h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2023/08/01/wordpress-6-3-release-day-process/\">WordPress 6.3 Release Day Process</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/polyglots/2023/07/18/wordpress-6-3-ready-to-be-translated/\">WordPress 6.3 ready to be translated</a></li>\n\n\n\n<li><a href=\"https://wordpress.org/news/2023/07/wordpress-6-3-release-candidate-2/\">WordPress 6.3 Release Candidate 2</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/19/wordpress-6-3-accessibility-improvements/\">WordPress 6.3 Accessibility Improvements</a></li>\n\n\n\n<li><a href=\"https://wordpress.org/news/2023/07/wordpress-6-3-release-candidate-1/\">WordPress 6.3 Release Candidate 1</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/19/wordpress-6-2-release-candidate-phase-2/\">WordPress 6.3 Release Candidate Phase</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/13/improvements-to-the-metadata-api-in-wordpress-6-3/\">Improvements to the metadata API in WordPress 6.3</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/06/30/6-3-release-parties-schedule-and-hosts/\">6.3 Release Parties Schedule and hosts</a></li>\n\n\n\n<li><a href=\"https://wordpress.org/news/2023/06/wordpress-6-3-beta-2/\">WordPress 6.3 Beta 2</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/design/2023/05/25/wordpress-6-3-design-kickoff/\">WordPress 6.3 design kickoff</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/05/25/bug-scrub-schedule-for-6-3/\">Bug Scrub Schedule for WordPress 6.3</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/05/18/wordpress-6-3-planning-roundup/\">WordPress 6.3 Planning Roundup</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/05/18/roadmap-to-6-3/\">Roadmap to 6.3</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\">WordPress 6.4</h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2023/07/18/wordpress-6-4-whats-on-your-wishlist/\">WordPress 6.4: What’s on your wishlist?</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/06/05/wordpress-6-4-development-cycle/\">WordPress 6.4 Development Cycle</a></li>\n</ul>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<h3 class=\"wp-block-heading\">WordPress 6.3 Field Guide and Dev-Notes</h3>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2023/07/18/wordpress-6-3-field-guide/\">WordPress 6.3 Field Guide</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/17/introducing-the-block-selectors-api/\">Introducing the Block Selectors API</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/17/introducing-the-wordpress-command-palette-api/\">Introducing the WordPress Command Palette API</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/14/layout-updates-in-the-editor-for-wordpress-6-3/\">Layout updates in the editor for WordPress 6.3</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/17/social-icons-block-applied-colors-now-dynamically-update-based-on-theme-json-and-global-styles/\">Social Icons block: Applied colors now dynamically update based on theme.json and Global Styles</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/18/miscellaneous-editor-changes-in-wordpress-6-3/\">Miscellaneous Editor changes in WordPress 6.3</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/18/bundled-themes-dropping-internet-explorer-scripts-and-styles/\">Bundled themes dropping Internet Explorer scripts and styles</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/17/improvements-to-the-cache-api-in-wordpress-6-3/\">Improvements to the Cache API in WordPress 6.3</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/14/configuring-development-mode-in-6-3/\">Configuring development mode in 6.3</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/14/i18n-improvements-in-6-3/\">I18N Improvements in 6.3</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/13/image-performance-enhancements-in-wordpress-6-3/\">Image performance enhancements in WordPress 6.3</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/13/improvements-to-the-metadata-api-in-wordpress-6-3/\">Improvements to the metadata API in WordPress 6.3</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/14/wp_query-used-internally-in-get_pages/\">WP_Query used internally in get_pages()</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/14/registering-scripts-with-async-and-defer-attributes-in-wordpress-6-3/\">Registering scripts with `async` and `defer` attributes in WordPress 6.3</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/11/new-in-6-3-rollback-for-failed-manual-plugin-and-theme-updates/\">New in 6.3: Rollback for failed manual plugin and theme updates</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/14/improved-caching-for-database-queries-in-wp_user_query/\">Improved Caching for Database Queries in WP_User_Query</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/18/miscellaneous-developer-changes-in-wordpress-6-3/\">Miscellaneous developer changes in WordPress 6.3</a></li>\n</ul>\n</div>\n</div>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n\n</div>\n\n\n\n<div class=\"wp-block-columns is-layout-flex wp-container-29 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<div class=\"wp-block-columns is-layout-flex wp-container-27 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<h2 class=\"wp-block-heading\"><a href=\"https://make.wordpress.org/accessibility\">Accessibility</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/accessibility/2023/08/04/accessibility-team-meeting-agenda-august-4-2023/\">Accessibility Team Meeting Agenda: August 4, 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/accessibility/2023/08/04/testing-matrix/\">Testing Matrix</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-community\"><a href=\"https://make.wordpress.org/community\">Community</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/community/2023/08/02/new-github-feature-request-separating-access-to-the-meetup-and-wordcamp-trackers/\">New GitHub Feature Request: Separating access to the Meetup and WordCamp trackers</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/community/2023/08/02/community-team-meeting-agenda-for-3-august-2023/\">Community Team Meeting Agenda for 3 August, 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/community/2023/08/02/recap-inaugural-nextgen-pilot-events/\">Recap: Inaugural NextGen Pilot Events</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-core\"><a href=\"https://make.wordpress.org/core\">Core</a> </h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2023/08/01/whose-ticket-is-it-anyway/\">Whose ticket is it, anyway?</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/08/01/proposal-improve-the-editor-tech-workflow-for-major-releases/\">Proposal: improve the editor tech workflow for major releases</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/08/01/a-week-in-core-july-31-2023/\">A Week in Core – July 31, 2023</a></li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\">Phase 3 Ideations</h3>\n\n\n\n<ul>\n<li><a target=\"_blank\" href=\"https://make.wordpress.org/core/2023/07/03/real-time-collaboration/\" rel=\"noreferrer noopener\">Real-Time Collaboration</a></li>\n\n\n\n<li><a target=\"_blank\" href=\"https://make.wordpress.org/core/2023/07/04/workflows/\" rel=\"noreferrer noopener\">Workflows</a></li>\n\n\n\n<li><a target=\"_blank\" href=\"https://make.wordpress.org/core/2023/07/05/revisions/\" rel=\"noreferrer noopener\">Revisions</a></li>\n\n\n\n<li><a target=\"_blank\" href=\"https://make.wordpress.org/core/2023/07/07/media-library/\" rel=\"noreferrer noopener\">Media Library</a></li>\n\n\n\n<li><a target=\"_blank\" href=\"https://make.wordpress.org/core/2023/07/10/block-library/\" rel=\"noreferrer noopener\">Block Library</a></li>\n\n\n\n<li><a target=\"_blank\" href=\"https://make.wordpress.org/core/2023/07/12/admin-design/\" rel=\"noreferrer noopener\">Admin Design</a></li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-developer-blog\"><a href=\"https://developer.wordpress.org/news/\">Developer Blog</a></h3>\n\n\n\n<ul>\n<li><a href=\"https://developer.wordpress.org/news/2023/08/beyond-block-styles-part-3-building-custom-design-tools/\">Beyond block styles, part 3: building custom design tools</a></li>\n\n\n\n<li><a href=\"https://developer.wordpress.org/news/2023/08/understand-and-use-wordpress-nonces-properly/\">Understand and use WordPress nonces properly</a></li>\n\n\n\n<li><a href=\"https://developer.wordpress.org/news/2023/07/beyond-block-styles-part-2-building-a-custom-style-for-the-separator-block/\">Beyond block styles, part 2: building a custom style for the Separator block</a></li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-meetings\">Meetings</h3>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2023/08/01/dev-chat-agenda-august-1-2023/\">Dev Chat agenda, August 2, 2023</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\"><a href=\"https://make.wordpress.org/docs\">Docs</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/docs/2023/08/04/summary-for-docs-team-meeting-august-1-2023/\">Summary for Docs Team meeting, August 1, 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/docs/2023/08/01/summary-for-docs-team-meeting-jul-18-2023/\">Summary for Docs Team meeting, Jul 18, 2023</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-hosting\"><a href=\"https://make.wordpress.org/hosting\">Hosting</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/hosting/2023/08/02/hosting-team-meeting-agenda-2023-08-02/\">Hosting Team meeting agenda 2023-08-02</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/hosting/2023/07/26/wordpress-hosting-survey/\">WordPress Hosting Survey</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\"><a href=\"https://make.wordpress.org/meta\">Meta</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/meta/2023/08/03/matrix-chat-summary-august/\">Matrix chat Summary – August 3, 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/meta/2023/06/20/make-team-dashboards/\">Make Team Dashboards</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/meta/2023/06/15/triaging-open-issues-on-trac-for-make-teams/\">Triaging open issues on Trac for Make Teams</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/meta/2023/06/11/linking-to-supporting-orgs/\">Linking to Supporting Orgs</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-mobile\"><a href=\"https://make.wordpress.org/mobile\">Mobile</a></h2>\n\n\n\n<ul>\n<li></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-openverse\"><a href=\"https://make.wordpress.org/openverse\">Openverse</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/openverse/2023/07/31/last-week-openverse-2023-07-24-2023-07-31/\">A week in Openverse: 2023-07-24 – 2023-07-31</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/openverse/2023/07/28/openverse-monthly-priorities-meeting-2023-08-02/\">Openverse Monthly Priorities Meeting 2023-08-02</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-performance\"><a href=\"https://make.wordpress.org/performance/\">Performance</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2023/08/01/performance-chat-summary-25-july-2023-2/\">Performance Chat Summary: 1 August 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/updates/2023/08/01/core-performance-team-update-july-2023/\">Core Performance Team Update: July 2023</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-plugins\"><a href=\"https://make.wordpress.org/plugins\">Plugins</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/plugins/2023/07/24/tackling-team-challenges-together/\">Tackling team challenges together</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/updates/2023/07/31/plugin-review-team-31-jul-2023/\">Plugin Review Team: 31 Jul 2023</a></li>\n</ul>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<h2 class=\"wp-block-heading\" id=\"h-polyglots\"><a href=\"https://make.wordpress.org/polyglots\">Polyglots</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/polyglots/2023/08/03/cross-locale-project-translation-editor-request-5/\">Cross-Locale Project Translation Editor Request</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/polyglots/2023/08/02/adding-error-checks-at-translate-wordpress-org/\">Adding error checks at translate.wordpress.org</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/polyglots/2023/08/02/agenda-weekly-polyglots-chat-august-2-2023-1300-utc/\">Agenda: Weekly Polyglots Chat – August 2, 2023 (13:00 UTC)</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/polyglots/2023/07/18/wordpress-6-3-ready-to-be-translated/\">WordPress 6.3 ready to be translated</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-project\">Project</h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/project/2023/07/13/proposal-for-establishing-a-make-diversity-equity-inclusion-and-belonging-deib-team-within-the-wordpress-community/\">Proposal for Establishing a Make Diversity, Equity, Inclusion, and Belonging (“DEIB”) Team within the WordPress Community</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\">Support</h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/support/2023/08/agenda-for-august-3rd-support-meeting-2/\">Agenda for August 3rd Support Meeting</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/support/2023/07/summary-for-july-27th-support-meeting/\">Summary for July 27th Support Meeting</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\"><a href=\"https://make.wordpress.org/sustainability\">Sustainability</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/sustainability/2023/07/28/sustainability-chat-summary-july-28-2023/\">Sustainability Chat Summary, July 28, 2023</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-test\"><a href=\"https://make.wordpress.org/test\">Test</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/updates/2023/07/31/test-team-update-31-july-2023/\">Test Team Update: 31 July 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/test/2023/06/27/help-test-wordpress-6-3/\">Help Test WordPress 6.3</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-theme\"><a href=\"https://make.wordpress.org/theme\">Theme</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/themes/2023/07/31/hallway-hangout-extending-blocks-with-custom-design-tools/\">Hallway Hangout: Extending blocks with custom design tools</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/updates/2023/08/01/themes-team-update-august-01-2023/\">Themes team update August 01, 2023</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-training\"><a href=\"https://make.wordpress.org/training\">Training</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/training/2023/08/03/training-team-meeting-recap-1st-august-2023/\">Training Team Meeting Recap – 1st August 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/training/2023/08/03/introducing-the-training-team-guide-program/\">Introducing the Training Team Guide Program!</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/training/2023/08/02/announcing-the-first-learn-wordpress-course-cohort/\">Announcing the first Learn WordPress Course Cohort.</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/training/2023/08/01/xpost-whats-new-on-learn-wordpress-in-july-2023/\">X-post: What’s new on Learn WordPress in July 2023</a></li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-tutorials\"><a href=\"https://learn.wordpress.org/tutorials\">Tutorials</a></h3>\n\n\n\n<ul>\n<li><a href=\"https://learn.wordpress.org/tutorial/how-to-add-tables-to-your-site/\">How to add tables to your site</a></li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-online-workshops\">Online Workshops</h3>\n\n\n\n<ul>\n<li><a href=\"https://learn.wordpress.org/?meeting=common-wordpress-apis-global-variables\">Common WordPress APIs: Global Variables</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=wp-dev-livestream-sendig-block-theme-11\">WP dev livestream: Sendig block theme</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=%E3%83%95%E3%83%AB%E3%82%B5%E3%82%A4%E3%83%88%E7%B7%A8%E9%9B%86%E3%81%A7%E5%AE%9F%E9%9A%9B%E3%81%AB%E3%82%B5%E3%82%A4%E3%83%88%E3%82%92%E4%BD%9C%E3%81%A3%E3%81%A6%E3%81%BF%E3%82%88%E3%81%86%EF%BC%81\">フルサイト編集で実際にサイトを作ってみよう!</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=contributing-to-the-wordpress-community-team-events-and-roles\">Contributing to the WordPress Community Team: Events and Roles</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=hallway-hangout-extending-blocks-with-custom-design-tools\">Hallway Hangout: Extending blocks with custom design tools</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=how-to-start-contributing-to-the-wordpress-core\">How to start contributing to the WordPress Core</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=common-wordpress-apis-internationalization\">Common WordPress APIs: Internationalization</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=wp-dev-livestream-sendig-block-theme-10\">WP dev livestream: Sendig block theme</a></li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-courses\"><a href=\"https://learn.wordpress.org/courses\">Courses</a></h3>\n\n\n\n<ul>\n<li><a href=\"https://learn.wordpress.org/course/developing-with-the-wordpress-rest-api/\">Introduction to developing with the WordPress REST API</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\"><a href=\"https://make.wordpress.org/tv\">WordPress TV</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/tv/2023/06/15/enhancing-slide-management-for-video-publications/\">Enhancing Slide Management for Video Publications</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-wptv\">WPTV</h2>\n\n\n\n<ul>\n<li><a href=\"https://wordpress.tv/category/year/2022/\">Latest WordPress TV videos</a></li>\n</ul>\n</div>\n</div>\n</div>\n</div>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-related-news\">Related News:</h2>\n\n\n\n<ul>\n<li><a href=\"https://blog.jquery.com/2023/05/11/jquery-3-7-0-released-staying-in-order/\">jQuery 3.7.0</a></li>\n\n\n\n<li><a href=\"https://nodejs.org/en/blog/release/v20.2.0\">Node v20.2.0 released</a></li>\n\n\n\n<li><a href=\"https://www.php.net/archive/2023.php#2023-07-06-1\">PHP 8.3.0 Alpha 3 available for testing</a></li>\n\n\n\n<li><a href=\"https://www.php.net/archive/2023.php#2023-05-11-1\"></a><a href=\"https://www.php.net/archive/2023.php#2023-07-06-2\">PHP 8.2.8 Released!</a></li>\n\n\n\n<li><a href=\"https://www.php.net/archive/2023.php#2023-07-06-3\">PHP 8.1.21 Released!</a></li>\n\n\n\n<li><a href=\"https://github.com/PHPMailer/PHPMailer/releases/tag/v6.8.0\">PHPMailer 6.8.0</a></li>\n\n\n\n<li><a href=\"https://262.ecma-international.org/\">TC39</a></li>\n\n\n\n<li><a href=\"http://github.com/composer/composer/releases/tag/2.5.8\">Composer 2.5.8</a></li>\n</ul>\n\n\n\n<p class=\"has-theme-palette-7-background-color has-background\">Thanks for reading our WP dot .org roundup! Each week we are highlighting the news and discussions coming from the good folks making WordPress possible. If you or your company create products or services that use WordPress, you need to be engaged with them and their work. Be sure to share this resource with your product and project managers. <br /><br /><strong>Are you interested in giving back and contributing your time and skills to WordPress.org?</strong>   <a href=\"https://wordpress.org/support/article/contributing-to-wordpress/\">Start Here ›</a><br /><br /><strong>Get our weekly WordPress community news digest</strong> — Post Status&#8217; <a href=\"https://poststatus.com/news/week-in-review/\">Week in Review</a> — covering the WP/Woo news plus significant writing and podcasts. It&#8217;s also available in <a href=\"https://poststatus.com/newsletter\">our newsletter</a>.  </p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<div class=\"wp-block-media-text alignwide is-stacked-on-mobile has-background\"><a href=\"https://poststatus.com/\"><img src=\"https://poststatus.com/wp-content/uploads/2021/09/vertical-post-status-logo-250.png\" alt=\"Post Status\" class=\"wp-image-85823 size-full\" /></a><div class=\"wp-block-media-text__content\">\n<p class=\"has-text-align-left has-normal-font-size\" id=\"h-get-ready-for-remote-work\">You — and <a href=\"https://poststatus.com/#Agency\">your whole team</a> can <a href=\"https://poststatus.com/#choose-membership\">Join Post Status</a> too!</p>\n\n\n\n<p class=\"has-text-align-left has-small-font-size\"><strong>Build your network. Learn with others. Find your next job — or your next hire.</strong> Read the <strong>Post Status</strong> <a href=\"https://poststatus.com/newsletter/\">newsletter</a>. <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/2709.png\" alt=\"✉\" class=\"wp-smiley\" /> Listen to <a href=\"https://poststatus.com/podcasts/\">podcasts</a>. <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f399.png\" alt=\"?\" class=\"wp-smiley\" /> Follow <a href=\"https://twitter.com/post_status/\">@Post_Status</a> <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f426.png\" alt=\"?\" class=\"wp-smiley\" /> and <a href=\"https://www.linkedin.com/company/post-status-llc/\">LinkedIn</a>. <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f4bc.png\" alt=\"?\" class=\"wp-smiley\" /></p>\n</div></div>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n<p>This article was published at Post Status — the community for WordPress professionals.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 19 Aug 2023 03:00:33 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"Courtney Robertson\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:46;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:91:\"Post Status: What is Coaching &amp; What Are Key Times to Have a Coach with Kelly Gallagher\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:96:\"https://poststatus.com/what-is-coaching-what-are-key-times-to-have-a-coach-with-kelly-gallagher/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:96:\"https://poststatus.com/what-is-coaching-what-are-key-times-to-have-a-coach-with-kelly-gallagher/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:47578:\"<div class=\"wp-block-embed__wrapper\">\n\n</div>\n\n\n\n\n\n\n\n<p><a href=\"https://poststatus.com/planet/feed/#h-transcript\">Transcript</a> ↓</p>\n\n\n\n<p class=\"wp-embed-aspect-16-9 wp-has-aspect-ratio\">In this podcast episode, <a href=\"https://twitter.com/corymiller303\">Cory Miller</a> introduces his professional coach, <a href=\"https://www.linkedin.com/in/coachkellygallagher\">Kelly Gallagher</a>, to discuss the role of coaching in personal and professional growth. They explore the difference between coaching and therapy and how they can complement each other. They highlight the value of coaching for high achievers and how it can help with career changes, improving performance, and enhancing communication skills. Cory shares his personal experience with coaching and expresses its positive impact on his life.</p>\n\n\n\n<p class=\"wp-embed-aspect-16-9 wp-has-aspect-ratio\"><strong>Episode Highlights:</strong></p>\n\n\n\n<ul type=\"video\" class=\"wp-embed-aspect-16-9 wp-has-aspect-ratio\">\n<li>[00:00:00] <strong>The role of coaching and introduction of Kelly Gallagher-</strong>Cory introduces Kelly Gallagher as his professional coach and discusses their working relationship for four and a half years.</li>\n\n\n\n<li>[00:01:25] <strong>Kelly&#8217;s background in business development and coaching training-</strong> Kelly shares her background in business development and her coaching journey, including her training and pursuit of a master&#8217;s degree.</li>\n\n\n\n<li>[00:07:38] <strong>The difference between coaching and therapy, and the value of coaching for high achievers</strong>-Cory and Kelly discuss the definition of coaching, the distinction between coaching and therapy, and the importance of coaching for high achievers.</li>\n\n\n\n<li>[00:11:39] <strong>The distinction between therapy and coaching-</strong>Discussion on the differences between therapy and coaching and how they complement each other.</li>\n\n\n\n<li>[00:12:41] <strong>The value of having a coach for high achievers-</strong>Exploration of the benefits of coaching for high achievers and the importance of self-awareness.</li>\n\n\n\n<li>[00:13:55]<strong> Times when people seek coaching-</strong>Identification of common situations that lead individuals to actively seek coaching, such as career conflicts, the desire for personal growth, and the need for support during organizational changes.</li>\n\n\n\n<li>[00:23:31] <strong>The role of coaching and the importance of ICF certification-</strong>Discussion on the role of coaching, the significance of ICF certification, and the difference between coaching and therapy.</li>\n\n\n\n<li>[00:28:34] <strong>The value of having a coach for high achievers-</strong>Exploration of the benefits of coaching for high performers and the potential negative stigma associated with coaching as a remedial tool.</li>\n\n\n\n<li>[00:31:58] <strong>Coaching for entrepreneurs-</strong>The essentiality of coaching for entrepreneurs, particularly in navigating change, making big decisions, and improving performance.</li>\n\n\n\n<li>[00:34:24]<strong> The role of coaching and seizing opportunities-</strong>Cory reflects on the importance of having a coach and making the most of opportunities in business.</li>\n\n\n\n<li>[00:35:18] <strong>The importance of personal happiness and joy in work</strong>-Kelly discusses the significance of finding joy and personal happiness in one&#8217;s work and how it affects performance.[00:37:09] <strong>The passion for helping others and personal growth-</strong>Kelly shares her passion for helping others find personal growth in coaching and how it is more rewarding than pure sales.</li>\n</ul>\n\n\n\n<div class=\"wp-block-group is-layout-flow wp-block-group-is-layout-flow\"><div class=\"wp-block-group__inner-container\">\n<div class=\"wp-block-columns sponsor has-theme-palette-8-background-color has-background is-layout-flex wp-container-32 wp-block-columns-is-layout-flex\" id=\"StellarWP\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<h3 class=\"StellarWP has-theme-palette-1-color has-text-color wp-block-heading\" id=\"Sponsor\"><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f64f.png\" alt=\"?\" class=\"wp-smiley\" /> Sponsor: <span><a href=\"https://poststat.us/elementor\" rel=\"sponsored nofollow\">Elementor</a></span></h3>\n\n\n\n<p><strong>Elementor </strong>enables web creators to build professional, pixel-perfect websites with an intuitive visual builder. Quickly create amazing websites for your clients or your business with complete control over every piece, without writing a single line of code. Join <a href=\"https://elementor.com/community/\">a vast community of web creators</a> from all around the world who deliver exceptional websites using Elementor.</p>\n</div>\n\n\n\n<div class=\"wp-block-column is-vertically-aligned-top is-layout-flow wp-block-column-is-layout-flow\"><div class=\"wp-block-image elementor-logo\">\n<img src=\"https://poststatus.com/wp-content/uploads/2022/08/Elementor-Logo-Symbol-Blue-150x150.png\" alt=\"Elementor\" class=\"wp-image-104033\" width=\"150\" height=\"150\" title=\"Elementor Logo\" />Elementor</div></div>\n</div>\n</div></div>\n\n\n\n<h3 class=\"wp-block-heading eplus-wrapper\" id=\"h-mentioned-in-the-show\">  Mentioned in the show<strong>:</strong></h3>\n\n\n\n<ul>\n<li><a href=\"https://obcc.utdallas.edu/coaching/\">University of Texas at Dallas Coaching Program</a></li>\n\n\n\n<li><a href=\"https://coachingfederation.org/\">International Coach Federation</a></li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading eplus-wrapper\" id=\"h-you-can-follow-post-status-and-our-guests-on-twitter\">  You can follow Post Status and our guests on Twitter:</h3>\n\n\n\n<ul class=\"eplus-wrapper\">\n<li><a href=\"https://twitter.com/salesrxcoaching\">Kelly Gallagher</a>  (Executive Coach, <a href=\"https://gallagherexecutivecoachingpartnerships.com/\">Gallagher Executive Coaching Partnerships</a>)</li>\n\n\n\n<li><a href=\"https://twitter.com/corymiller303\">Cory Miller</a> (CEO, <a href=\"https://twitter.com/post_status\">Post Status</a>)</li>\n\n\n\n<li><a href=\"https://twitter.com/lemonadecode\">Olivia Bisset</a> (Intern, <a href=\"https://twitter.com/post_status\">Post Status</a>)</li>\n</ul>\n\n\n\n<p class=\"eplus-wrapper has-background\">The <strong>Post Status Draft</strong> podcast is geared toward WordPress professionals, with interviews, news, and deep analysis.  <br /><br /><a href=\"https://poststatus.com/category/post-status-podcasts/\" target=\"_blank\" rel=\"noreferrer noopener\">Browse our archives</a>, and don’t forget to subscribe via <a href=\"https://itunes.apple.com/us/podcast/post-status-draft-wordpress/id976403008\" target=\"_blank\" rel=\"noreferrer noopener\">iTunes</a>, <a href=\"https://podcasts.google.com/feed/aHR0cHM6Ly9mZWVkcy5zaW1wbGVjYXN0LmNvbS8ySkU5c2M4UA\" target=\"_blank\" rel=\"noreferrer noopener\">Google Podcasts</a>, <a href=\"https://www.youtube.com/c/PostStatus\" target=\"_blank\" rel=\"noreferrer noopener\">YouTube</a>, <a href=\"http://www.stitcher.com/podcast/krogsgard/post-status-draft-wordpress-podcast\" target=\"_blank\" rel=\"noreferrer noopener\">Stitcher</a>, <a href=\"https://wordpress-post-status-draft-podcast.simplecast.com/\" target=\"_blank\" rel=\"noreferrer noopener\">Simplecast</a>, or <a href=\"https://feeds.simplecast.com/2JE9sc8P\">RSS</a>.  </p>\n\n\n\n<h2 class=\"wp-block-heading eplus-wrapper\" id=\"h-transcript\">Transcript</h2>\n\n\n\n<p>Cory Miller (00:00:00) &#8211; Hey everybody. Welcome back to Post Status Draft. I&#8217;ve got a special guest today and I&#8217;m excited because I&#8217;ve worked with this awesome person professional for I think it&#8217;s been five years now. Four years? No, probably four and a half years now, Kelly. And. So back when I had just sold items, I was working the, you know, my job at trying to transition team, get some things done in the year after we had sold and I was starting to percolate. Okay, I&#8217;ve got this huge career change coming up, this huge business, whatever change in my professional life. And I sought out a coach and found Kelly Gallagher. So she&#8217;s my professional coach for four and a half years. We&#8217;re going to have a great conversation talking about coaching times when it&#8217;s so helpful to have a coach. And I&#8217;ll share personal experiences, too, but you&#8217;re in for a treat today. So Kelly, thanks so much for being on the podcast.</p>\n\n\n\n<p>Kelly Gallagher (00:01:02) &#8211; Thank you for having me. I&#8217;ve been watching some of your podcasts, and I&#8217;m just honored to be the subject of one of them.</p>\n\n\n\n<p>Kelly Gallagher (00:01:07) &#8211; So thank you.</p>\n\n\n\n<p>Cory Miller (00:01:09) &#8211; I often refer to Kelly as my secret weapon because a lot of the big things that have happened in the last five years, for sure in my life I&#8217;ve rehearsed, practiced, talked through all of these with Kelly. So, Kelly, tell us a little bit about your background.</p>\n\n\n\n<p>Kelly Gallagher (00:01:25) &#8211; Um, Cory, I came from a business development specialty within corporate America, specifically pharmaceuticals and the medical industry, and also diagnostics and lab testing. So I was a road warrior. I was out closing deals and my responsibilities escalated and escalated to the point where. Um, the last ten years, I was with a diagnostic lab, and I was also training other salespeople. I was interviewing them, hiring them and then coaching them. But I didn&#8217;t know I was coaching because I wasn&#8217;t sure even what coaching was. I wanted to take over the training department. So I was told, Well, you have no experience, even though I was already doing it. So I challenged and said I would like to go back and get my masters.</p>\n\n\n\n<p>Kelly Gallagher (00:02:16) &#8211; And I entered the coaching program, which is a just gold standard industry. I don&#8217;t know. It turned out to be one of the best. And so I entered that. And then while I was doing it, I thought, why not just get a master&#8217;s in business administration? Because I already know these things. So I went to school for five years and it was the best five years of my life. Um, I learned that I love to learn, and I think that may be what separates good coaches from great coaches. Is that. Constant wanting to move the bar up, that constant going to class mentality to be at another level. And that&#8217;s what&#8217;s really defined my career. There&#8217;s not really a time of the year when I&#8217;m not in continuing education and it&#8217;s my passion. I just want to be a master of my craft. So that was my journey. The interesting sidebar is I was told you can do all this, but if your sales performance drops, we&#8217;re done. We&#8217;re not paying. I said, okay.</p>\n\n\n\n<p>Kelly Gallagher (00:03:29) &#8211; But the more I studied coaching and communications, the higher myself through. And there&#8217;s actually a correlation between the two. It doesn&#8217;t seem like there would be, but I learned how to really listen. I was a good listener to begin with, but I became just a great listener and observer of behavior. And I also learned how to challenge people. So if a buyer told me, yes, yes, I&#8217;m definitely going to get the contract signed. And I sensed a hesitancy, I would call them out and go, you know, you&#8217;re sending one thing, but I&#8217;m hearing something else. It sounds like you&#8217;re still uneasy. And a lot of times by doing that, I could tease out that they weren&#8217;t going to buy it and we can have further discussion. So the coaching actually when I finished up. My sales career. It was as far as I could take it, but I owe it all to the coaching training.</p>\n\n\n\n<p>Cory Miller (00:04:32) &#8211; That&#8217;s awesome. Now, I know you have ICF credentials and all that and you can share a little bit about what ICF is, but so I know you are very involved there.</p>\n\n\n\n<p>Cory Miller (00:04:45) &#8211; Have done there&#8217;s so many regular like you said, I do a lot of work with mental health practitioners and there&#8217;s such a very, I would say regulated, but no like very intense and purposeful way to do therapy. A lot of guidelines, a lot of regulations, a lot of licensure things, ethical consideration, continuing. Ed But coaching has so much of that too. And that&#8217;s where ICF comes into yes.</p>\n\n\n\n<p>Kelly Gallagher (00:05:12) &#8211; And unfortunately, there&#8217;s not a specific license. I wish there was, but because there isn&#8217;t, the consumer has to really be discerning. And one way to start is that ICF because it&#8217;s the gold standard and for coach is not doing continuing education and involved with ICF. I don&#8217;t know. Chances are there will be less rigor to what they&#8217;re going to be able to do. It&#8217;s not that they wouldn&#8217;t be good coaches.</p>\n\n\n\n<p>Cory Miller (00:05:40) &#8211; Yeah, I think the ICF stuff is strong. Sometimes I feel like it&#8217;s a little bit too limiting, but I go, Gosh, it&#8217;s so good because it&#8217;s trying to really professionalize the coaching industry where anybody can just say, Oh, I&#8217;m my coach, I&#8217;m a life coach, whatever it is.</p>\n\n\n\n<p>Kelly Gallagher (00:05:57) &#8211; People just hang out a shingle and say, Boom, magic, I&#8217;m a coach. I two think it can be limiting, but I offer a bit of a hybrid because I have so much business experience. I&#8217;ll often tell my clients, Hey, I&#8217;m going to shift out of coaching if you want. Is it okay if I put on my business act and they almost never had anyone say no in interviews? And so then I&#8217;m able to interject a little, you know what this happened to blah, blah, blah. And I think that&#8217;s what differentiates me from other coaches. But the ICF standards are just critical. And the other thing about the ICF is you have to have 250 hours of continuing education to keep getting the licensure. That&#8217;s not a license to keep, you know, being indoors. And so that really raises the bar and enables the coach to really grow because you&#8217;re constantly taking a course. Yeah.</p>\n\n\n\n<p>Cory Miller (00:07:02) &#8211; So super, super strong. By the way, if you&#8217;re listening, you want to look if the coach has ICF certifications and all that, that&#8217;s really important, rigorous, rigorous work that they do to keep that up means to me it goes through taking it very seriously their profession.</p>\n\n\n\n<p>Cory Miller (00:07:19) &#8211; So Kelly, what is a coach? We&#8217;re going to spend some time talking about the times in which coach has been so, so valuable to your clients, to me, and we&#8217;re going to share experiences around that. But first, I kind of want to get a baseline of like, what is a coach?</p>\n\n\n\n<p>Kelly Gallagher (00:07:38) &#8211; Great question. Mean a coach. I had this conversation this morning at the pool at 5 a.m. Someone said, Oh, you&#8217;re going to coach. They just want content. I said, No, that&#8217;s not really what coaching is. I&#8217;m not really delivering content. I think a coach is someone that walks on a journey with a professional who wants to raise the bar. Um, it can be a life coach too. So then you&#8217;re walking the journey with an individual who has an area of life where they want to improve or progress. And that&#8217;s still the same formula for going through the coaching process, whether it be an executive or whether it be. Someone who wants to increase communication with their husband or wife.</p>\n\n\n\n<p>Cory Miller (00:08:25) &#8211; So, yeah. And part of how we were working together when we first started working together was I was going to the same school you went to, which is fantastic. University of Texas and Dallas and their coaching program is incredible. And being mentored by you. And because I was getting asked when when I left our teams and I was trying to do my own thing, I thought, okay, it&#8217;s going to be coaching People go, What is it, Coach? What do you do? And I was like, Oh gosh, I&#8217;m struggling with these. But it&#8217;s so much that it&#8217;s that walking alongside a person on a journey and I like what you added to it, is like they want to raise the bar, they want to do something more. And, you know, I have so much reflected about my business entrepreneurial career for the last 15 years ago. If I had a coach from the beginning, it would have been so much better in many ways. Not just success, success for sure, but also health clarity.</p>\n\n\n\n<p>Kelly Gallagher (00:09:23) &#8211; It&#8217;s funny you say that, Cory, because even 20 years ago when I was in pharmaceuticals and I was doing very well, had I had a coach, I would have been a rock star because there were rough edges that I couldn&#8217;t see. You can&#8217;t see them in yourselves the way someone else can who&#8217;s actively listening to you.</p>\n\n\n\n<p>Cory Miller (00:09:43) &#8211; Yeah. Well, and you know, the parallel we always give is sports. You know the best. Greatest of all time. Athletes have coaches and have people around them. Like you just assume they wake up and they&#8217;re just as good naturally. No, they work on their craft. And I think about that so much. Like, I know you work with a lot of high achievers and oftentimes so many of the entrepreneurs I&#8217;ve worked with very high achievers too. I&#8217;ve had the pleasure of having people on my team big time, high achievers. And you just go, like, if you really want to do well in what you&#8217;re doing, you need to have somebody that&#8217;s on your side.</p>\n\n\n\n<p>Cory Miller (00:10:23) &#8211; Nobody does it alone. I think that&#8217;s the fast that we perpetuate in our culture and especially in business, like with entrepreneurs, is like, Oh, I&#8217;m the rockstar. I do this by myself, that you got these icons out there. You know, Steve Jobs is the one you hear over and over and over 100,000 times. You go, He didn&#8217;t do it alone. No, there&#8217;s no way you can do it alone. And having someone in your corner that&#8217;s helping you perform at the highest level is so critical.</p>\n\n\n\n<p>Kelly Gallagher (00:10:54) &#8211; Yes, I agree. And, you know, oftentimes people will also say, well, isn&#8217;t it like therapy? I would call it therapy. Ten x. Because therapy&#8217;s great and I think everyone should go through that process at some time in their life. I really believe in it. But at some point it&#8217;s limited because it&#8217;s just keeps moving into the past and feelings and often sad feelings. Whereas coaches moving the person forward so high achievers get bored in therapy after a while, after a while, and they might go back and forth to therapy.</p>\n\n\n\n<p>Kelly Gallagher (00:11:34) &#8211; But generally they find that coaching helps them because it&#8217;s goal oriented.</p>\n\n\n\n<p>Cory Miller (00:11:39) &#8211; Yeah, well, and I know there&#8217;s a big distinction between therapy and coaching and really, you know, really try to their distinct things. And oftentimes probably you have taught this mentioned like therapy is looking back, coaching is looking forward. Is that how you kind of see that?</p>\n\n\n\n<p>Kelly Gallagher (00:11:56) &#8211; Yes. And you know, as a coach and a credentialed coach, I&#8217;m ethically bound if I feel like someone continually goes into therapy. Waters and themes, um, I&#8217;m bound to refer them on to therapists till they are more stabilized. And then oftentimes a lot of my clients are in therapy and coaching together. They really work well hand in hand.</p>\n\n\n\n<p>Cory Miller (00:12:22) &#8211; Yes. In fact, for the bulk of the time right now, I am not currently seeing a counselor, however, for the last see two months, but for the bulk of the time we&#8217;ve worked together have had a counselor and a coach. So I think their yin yang, their.</p>\n\n\n\n<p>Kelly Gallagher (00:12:41) &#8211; Right. And the people that come to me and have had some therapy, even if it was limited, they have just a little bit more self awareness.</p>\n\n\n\n<p>Kelly Gallagher (00:12:49) &#8211; So coaching progresses faster.</p>\n\n\n\n<p>Cory Miller (00:12:52) &#8211; Yeah. If you&#8217;re doing your work to.</p>\n\n\n\n<p>Kelly Gallagher (00:12:55) &#8211; Because other otherwise get clients. Sometimes we&#8217;ll say, Well, what does it matter how I&#8217;m feeling about this? Well, it matters a lot because, you know, your heart is just as involved in these decisions and actions and creative things you&#8217;re asking yourself to do as the frontal lobe of your brain. So they are connected.</p>\n\n\n\n<p>Cory Miller (00:13:14) &#8211; Yeah. Okay. So we talked about what coaching is a little bit we talked about the distinctions, therapy versus coaching and how they&#8217;re additive and can exist together. And in fact, or even better sometimes, oftentimes, especially in my experience, I would say. Well, I&#8217;m curious, Kelly So I know my own personal experience is related to our coaching professional relationship. But I&#8217;m curious, what are the times you you see people getting into the meat of this kind of conversation between us is like, what are those times when people go, okay, they&#8217;re thrust out to go actively look for a coach and end up, you know, in a in a room or a meeting with you.</p>\n\n\n\n<p>Kelly Gallagher (00:13:55) &#8211; I would say that generally there&#8217;s some type of struggle. It can be a conflict at work. That&#8217;s a huge one because that dips into, well, do I want a career change? And sometimes people come and they don&#8217;t know what they want. They&#8217;re just not happy. Um, people who want to progress with that and find meaning and integrate what they&#8217;re learning about themselves will come to coaching because that process. It really it&#8217;s like turbocharging the job search and turbocharging people to take interviews and move on and move up without really any kind of formal instruction to just that self-awareness that it builds. So that&#8217;s one of the big ones. Um.</p>\n\n\n\n<p>Cory Miller (00:14:44) &#8211; Let&#8217;s talk about struggle for a second. So struggle back to that. So is that so you mentioned a couple of factors there. I want to hit both sides. One is maybe I need to make a change, like move out of what I&#8217;m doing. But there&#8217;s another one, which is maybe I want to get promoted or have been promoted or, you know, within an organization to and I&#8217;m curious your experiences around around that too.</p>\n\n\n\n<p>Cory Miller (00:15:10) &#8211; So I like that it starts with like there&#8217;s some kind of struggle and they&#8217;re seeking outside perspective and help support with that. But it starts with some things they&#8217;re trying to change and wrestling against. Sounds like.</p>\n\n\n\n<p>Kelly Gallagher (00:15:24) &#8211; Right? And many times, you know, when you&#8217;re in a new position or you&#8217;re in a position where you are striving to do something else within that company, you will conform to their expectations and almost wear a mask. The to the degree that you lose something in the translation because then you&#8217;re not really connecting with your creative side or your problem solving side or your heart. And so a lot of work can be done to find that balance for people. The other thing that touches on is fear of failure. Your fear of failure is. It&#8217;s just a sweet spot because so many. Points of wanting to change. If we whittle down and we go with the client, what&#8217;s beneath that? What&#8217;s beneath that or what&#8217;s beneath that? And we get down to the core or the middle of the onion. It&#8217;s fear of failure.</p>\n\n\n\n<p>Kelly Gallagher (00:16:19) &#8211; And that&#8217;s that&#8217;s just a part of being human. No one wants to humiliate themselves or fall down. But I think, too, in our society, think about schools nowadays. Everyone&#8217;s given a trophy. Soccer, Everyone&#8217;s campaigning, trophy swimming. Everyone makes the team. No one&#8217;s not on the team. Great. So children are raised to not really fail or understand that they founded something and think in a way, I like the philosophy, but in a way I think I see a lot of young adults who come out into the world and they are terrified of not getting a trophy of not. And the reality is, in real life, you don&#8217;t get that many trophies.</p>\n\n\n\n<p>Cory Miller (00:17:06) &#8211; Yep. Well, we that was that fear of failure thing. We, we talked our last coaching session about that specifically and totally like, you know, when you&#8217;ve especially if you&#8217;ve been accustomed to winning, doing succeeding and then you hit some failures and or trying to do anything big and new, take that next job, start that new endeavor, whatever that is, and that, you know, oh, this is not a guaranteed success.</p>\n\n\n\n<p>Cory Miller (00:17:35) &#8211; So that that definitely resonates.</p>\n\n\n\n<p>Kelly Gallagher (00:17:37) &#8211; Right? And if I fail, that also relates to a further theme of then the fear of being actually seen for who you are. Um, yeah, it&#8217;s a heavy topic and it can take a while to work through, but it&#8217;s, I think most of my clients will say that&#8217;s valuable work. And it&#8217;s not that they become fearless, but I think they&#8217;re able to notice the emotion name and then kind of negotiated.</p>\n\n\n\n<p>Cory Miller (00:18:08) &#8211; Yeah, you mentioned the word emotions. And I think when I first started working with you, I didn&#8217;t I didn&#8217;t go to that realm. I was, you know, okay, more intellectual thinking process and stuff. And you&#8217;re extremely helpful with that. And probably because of some of the, you know, understandings between therapy and coaching or misunderstanding to say, I didn&#8217;t really get into that. But I think our best work has come with the emotions. Like my my definitely I&#8217;ve benefited every time we&#8217;ve talked. I&#8217;ve been better for it. However, I think the most profound times is when we get into, okay, I&#8217;m doing this thing.</p>\n\n\n\n<p>Cory Miller (00:18:48) &#8211; It&#8217;s an event, like you said, a struggle or something new or a change or something I&#8217;m preparing for. But then okay, the emotion around that and understanding that and leveraging, you know, really deep dive into that where I&#8217;m trying to improve. I can&#8217;t remember how many times you&#8217;ve said to me, okay, well they are not in this call. What is the what about you? And I was like, Oh man, doing that hard work, which is made I know it&#8217;s made me better as a professional and a leader for sure, because oftentimes you kind of redirect back to me and go, okay, well, they&#8217;re not here. Let&#8217;s talk about what this means to you, for you. And I&#8217;m always like, Well, let me take a deep breath on that one.</p>\n\n\n\n<p>Kelly Gallagher (00:19:31) &#8211; That&#8217;s a hard one. I learned that actually didn&#8217;t learn that at Utd or anywhere. I learned that as a young rep out in the field and I complain about these idiot customers. Right? And the manager told me once, he said, Turn your rearview mirror to your face.</p>\n\n\n\n<p>Kelly Gallagher (00:19:48) &#8211; And I didn&#8217;t. He goes, Now look at that. That&#8217;s the person that would have to change. The client&#8217;s not going to change. And it was the most profound thing. It kind of hurt my feelings, but it was so true.</p>\n\n\n\n<p>Cory Miller (00:20:01) &#8211; Well, I&#8217;ve talked through everything with you from partner team issues, all that. And it&#8217;s been so helpful because I think oftentimes kind of thinking, okay, yeah, they&#8217;ve got to change. There&#8217;s something with them. And the real work, profound and deep, that continues to get deeper is what does that mean for me about me? What do do I need to change something and what is that? And those are the times really in reflective work that I go, okay. And more and more I think I&#8217;m getting it. Or I go, okay, So something I&#8217;m not aware about myself potentially pointing outwards and then going, I kind of need to turn the rearview mirror back to myself.</p>\n\n\n\n<p>Kelly Gallagher (00:20:46) &#8211; Back to your face? Yes.</p>\n\n\n\n<p>Cory Miller (00:20:48) &#8211; It&#8217;s not the easiest thing to do, but I&#8217;m glad you do it.</p>\n\n\n\n<p>Kelly Gallagher (00:20:50) &#8211; It&#8217;s not the easiest thing to do. And in periods of conflict or intense conversations with bosses or calling people, you&#8217;re supervising, it&#8217;s extremely hard to stop yourself and say, wait a minute, who am I? And yeah, it&#8217;s it&#8217;s really, really hard. But I think as people progress in coaching, they become almost a coach within themselves.</p>\n\n\n\n<p>Cory Miller (00:21:16) &#8211; Yes. Yes. I can hear you quite a bit doing that.</p>\n\n\n\n<p>Kelly Gallagher (00:21:21) &#8211; Yeah. Oh yeah. So that would be my goal is that when I&#8217;m not there because I&#8217;m not there all the time and I don&#8217;t know of it, even though I know so much, I don&#8217;t know all of it. But my goal would be when that person&#8217;s gone for a week or they&#8217;re in a high stress situation, they&#8217;re able to somewhat coach themselves through it.</p>\n\n\n\n<p>Cory Miller (00:21:44) &#8211; Absolutely. Well, okay. So we talked about like the struggle conflict. Something&#8217;s going on there. Want to do reach something new? Maybe they&#8217;re evaluating a big change. I mean, that resonates with me. I was that&#8217;s how we kicked off our thing.</p>\n\n\n\n<p>Cory Miller (00:21:59) &#8211; It was like I was changing my profession career very substantially, knew I was going to be leaving the company I started. And, you know, okay, here&#8217;s a totally new avenue and having somebody to talk that through the fear of failure, the emotions of being an achiever, especially a high achiever, trying to do something in the world like an entrepreneur, what are some other things that you you see often in your coaching?</p>\n\n\n\n<p>Kelly Gallagher (00:22:27) &#8211; Well, I would say the other thing, the theme is some type of organizational change, because your organization, of course, they&#8217;re always changing. And there are new standards that people don&#8217;t. We talked about that before we went on tape that sometimes people don&#8217;t like change. So being able to go in and help a person challenge their assumptions about the change really recognize within themselves the any negative thinking loops or or extra baggage they&#8217;re bringing in the situation and then thrive throughout the change would be a big thing. Um, and as they go along to they learn about themselves and then to integrate that learning.</p>\n\n\n\n<p>Kelly Gallagher (00:23:12) &#8211; Back into the organization. That&#8217;s changing because change is constant. Yep. I don&#8217;t think I&#8217;ve ever been in an organization in 30 years that wasn&#8217;t doing some type of change. It&#8217;s almost never stay.</p>\n\n\n\n<p>Cory Miller (00:23:31) &#8211; It&#8217;s yeah, absolutely. Well, there&#8217;s two things I think about when we&#8217;ve worked together and what I know of coaching too. It&#8217;s it&#8217;s the word change that you said. Some change. Big change oftentimes big change. The other side of the coin for me is performance.</p>\n\n\n\n<p>Kelly Gallagher (00:23:47) &#8211; So yeah.</p>\n\n\n\n<p>Cory Miller (00:23:49) &#8211; Continual performance. So like and I think about those listening in why you won&#8217;t get you want to get coaching for yourself and your team is that performance factor like it&#8217;s an investment back into yourself or your team if you&#8217;re providing coaching. I think some great organizations, particularly in WordPress I&#8217;ve heard of because I&#8217;ve referred people to you that happen to be in WordPress. I go, Oh, I love the forward thinking of that. You&#8217;re going, it&#8217;s an investment in their people, but the performance side. So we&#8217;ve talked a lot of some about this change side.</p>\n\n\n\n<p>Cory Miller (00:24:24) &#8211; There&#8217;s something going on and how we wrestle and adapt to that change where we talk about motions and different things and then but the other side to me is like, I can&#8217;t remember how many times I call it performance, but what I think it is, is like preparation. I mean, some of the biggest deals I&#8217;ve done in five years have been rehearsed, practiced, polished, perhaps even with you. And gosh, I didn&#8217;t have that my previous ten years. And I thought, wow, I went into so many situations. I thought I had done my preparation. But doing it with you with a coach was made things so much better, I think, through that process. Kelly It also eliminated like things I wasn&#8217;t aware of, things I hadn&#8217;t thought about, and just an approach to get some, like, clarity.</p>\n\n\n\n<p>Kelly Gallagher (00:25:12) &#8211; Flirty, some big one. And I think that goes into the third bucket of communication skills. Just people sometimes come to me and in her struggle or there&#8217;s conflict or they&#8217;re going into a big sales promotion and they&#8217;re not quite sure how to go about it.</p>\n\n\n\n<p>Kelly Gallagher (00:25:29) &#8211; So that would all fall into the bucket of communication skills. And that that&#8217;s a big one. I don&#8217;t think oftentimes people think they&#8217;re coming across one way, but it&#8217;s quite different if you&#8217;re observing them. The other thing is. They, you know, like you said, you&#8217;ll rehearse. And rehearse. But when you get in that situation sometimes. Hopefully you&#8217;re primed with enough rehearsal to lean back. If you forget what you&#8217;re going to say, you can lean back into the gist of it. So I think for performance, though, it comes down to communication skills and confidence, because in selling some time it&#8217;s not what you said anyway, it&#8217;s how you said it. And you can walk in if you say it with conviction and you have that internal clarity, as you mentioned, and conviction. The little wordsmithing and nuances of it aren&#8217;t going to matter. They&#8217;re going to matter. But the big the capital A to achievement or performance is how you set it.</p>\n\n\n\n<p>Cory Miller (00:26:36) &#8211; Well, I didn&#8217;t say this in the beginning, but we we now meet twice a week and we&#8217;ve I think we&#8217;ve met twice a week for the last year or two.</p>\n\n\n\n<p>Cory Miller (00:26:44) &#8211; And that was out of, oh, I need these times. We&#8217;re kind of booking them at the front of the week and the end of the week. But oftentimes I realize so many times it&#8217;s just seeking clarity for myself and those of us who are leaders out there trying to give a clear vision to somebody else, I&#8217;ll just say it. Maybe other leaders just wake up with clairvoyant vision. I don&#8217;t. I need rehearsal. I need work. I need to bounce it off people. I need a coach to help me kind of ask questions, think, think it through. And every single time I&#8217;m better. I remember some of the biggest ones that I&#8217;ve, like, talked to you. And it&#8217;s not even one session, maybe 2 or 3. They end up talking about it. But I go, Gosh, if I hadn&#8217;t had that, I would have made so many mistakes going into that big decision or time of presentation, whatever that was. And I&#8217;m so better for like I just need to practice and realize I couldn&#8217;t just do that.</p>\n\n\n\n<p>Cory Miller (00:27:40) &#8211; I needed someone else to help me. And that&#8217;s where you&#8217;ve come in and done that. And so clarity for me is like when you say, what? When people would ask me, What&#8217;s the biggest takeaway for coaching? I go clarity and what is clarity? Build what you said confidence. And those two alone have made me a better leader. That&#8217;s why I can say, let&#8217;s just go back to the start of my career. If I&#8217;d had a coach, it started my career. Everything would have been better because I&#8217;ve been more clear, more confident.</p>\n\n\n\n<p>Kelly Gallagher (00:28:03) &#8211; Being a millionaire ten times over just had a coach because I did so many stupid things along with the good things. That you don&#8217;t know, but you do learn from failure. You do learn. Oh, and so, you know, maybe not, but I sure would have liked to have a coach. It is a perk for high performers. If if if you if it&#8217;s a if there&#8217;s an employer listening in and they&#8217;re thinking of who does that need coaching? Yes, it can be remedial, but sometimes then it&#8217;s not the employees idea.</p>\n\n\n\n<p>Kelly Gallagher (00:28:34) &#8211; The high performance will progress the fastest because it generally will be their idea. They want that perk and they want to grow a career.</p>\n\n\n\n<p>Cory Miller (00:28:44) &#8211; This is my personal opinion, not Kelly. So I want to be clear about that. But I&#8217;ve been around organizations that use coaching as remedial, and I go, Then what happens is coaching gets stigmatized within that organization of if you&#8217;re not performing and you&#8217;re doing a crappy job, you&#8217;re going to get sent. And it has a negative tint to coaching, which is not what it&#8217;s supposed to be. It&#8217;s supposed to be progressing positive, helping improving, navigating situations. And this one organization in particular, it&#8217;s like that&#8217;s how they use coaching. I go, Oh man, Like, then they then all these high performers have this worry about it and don&#8217;t want to potentially go into coaching and miss this incredible benefit to what coaching is.</p>\n\n\n\n<p>Kelly Gallagher (00:29:31) &#8211; That&#8217;s so true. There&#8217;s someone at my door. Can I. Can we pause?</p>\n\n\n\n<p>Cory Miller (00:29:36) &#8211; Yeah.</p>\n\n\n\n<p>Kelly Gallagher (00:29:45) &#8211; Yeah, we&#8217;re talking about, like, high performers and performance coaching. And I do want to make the point that that&#8217;s kind of what I think is my differentiator is that I have all that coaching training, but also I&#8217;ve been in the business world for 30 years selling. So if someone asked me about that, it&#8217;s easy for me to switch out. Yeah, most coaches have like a background, so they&#8217;ve never really had to go out into the world and perform, right?</p>\n\n\n\n<p>Cory Miller (00:30:17) &#8211; Yeah. You bring both sides to that coin I think is incredibly helpful. Like I&#8217;ve talked so much with you about cells because it&#8217;s a weak area. I feel like it&#8217;s a weak area for me, but something I&#8217;ve had to do but forced to do and now trying to begrudgingly trying to do it. But I know you&#8217;ve got such an extensive sales background, business development background that totally leveraged that. In fact I think that&#8217;s how our two times a week started was a sales academy where it wasn&#8217;t necessarily coaching, it was more like sales coaching.</p>\n\n\n\n<p>Kelly Gallagher (00:30:47) &#8211; Right. And it&#8217;s very hard for someone to coach you if they haven&#8217;t walked down the street, guide you down the path. If I&#8217;ve never been on it, I can coach and I can move you in many ways, but can&#8217;t exactly help you to perform because I don&#8217;t know how to perform. So I think that is the differentiator in my coaching style as I&#8217;ve been there. I&#8217;ve been in sales meetings where I got humiliated. I&#8217;ve had clients slam doors in my face. You know, I&#8217;ve executed $1 million contract. So. I just think it helps me to bring more to the party.</p>\n\n\n\n<p>Cory Miller (00:31:25) &#8211; Yeah. And you understand the complete picture. That&#8217;s why, you know, our community is a lot of founders and a lot of high achiever leaders. You know, I&#8217;m curious your thoughts about entrepreneurship, entrepreneurs and coaching. You know, I don&#8217;t know your risk, your client base, but I am one. I know I&#8217;ve benefited from incredibly navigating change, big decisions and the performance side. But what do you say to entrepreneurs about coaching?</p>\n\n\n\n<p>Kelly Gallagher (00:31:58) &#8211; I&#8217;d say it&#8217;s essential because of everything we&#8217;ve talked about in the end.</p>\n\n\n\n<p>Kelly Gallagher (00:32:04) &#8211; As an entrepreneur, you&#8217;re alone, right? That&#8217;s what it is. That&#8217;s the gig. You might have a few people on your team, but generally you&#8217;re alone. It&#8217;s very hard to win deals in isolation. So I would say having a business coach is key to moving forward. Not only in all the things we mentioned, the clarity, the communication, the conflict, the struggle, but then sometimes you just have to go execute. And so for me, it&#8217;s very helpful because I&#8217;ve been in that sales situation so many times and understand features, benefits. I understand how to extrapolate from a client what&#8217;s going to really matter and what&#8217;s not. And I can help people with their slide deck or, you know, whatever it is they want to. So I will generally I can come in in that regard like we do and be a consultant on Friday, but a coach on Mondays. And then and most of my clients who are entrepreneurs use me in that way. Like they will sometimes just bring us like back or we&#8217;ll practice a presentation or they&#8217;ll practice what they&#8217;re going to say to their team before they say it.</p>\n\n\n\n<p>Cory Miller (00:33:18) &#8211; Yep.</p>\n\n\n\n<p>Kelly Gallagher (00:33:18) &#8211; Get some clarity around it to understand. How they&#8217;re feeling in that moment of saying these wonderful things they think are are going to move the team. And sometimes they come out of the meeting and they&#8217;re going to say something completely different. Once we do the coaching, it&#8217;s not that I ever told them to say anything different, but we, you know, polished it. Let&#8217;s say, you know, they come out with this big chunk of coal and they leave and they&#8217;ve got a little diamond and it&#8217;s polished. And like you said earlier, they feel confident.</p>\n\n\n\n<p>Cory Miller (00:33:50) &#8211; Maybe there&#8217;s some entrepreneurs that that come fully birthed into the whole process, but most of us have to learn it and grow through it. What I&#8217;m hearing, though, you know, big decisions, big challenges, big changes, and then the performance side preparation, Polish getting ready for those big things, too. And then the simply put, just trying to make the most of the opportunity. That&#8217;s what I think about. Like so many high achievers that go with an entrepreneur&#8217;s, like we have an opportunity.</p>\n\n\n\n<p>Cory Miller (00:34:24) &#8211; We often like my my story is I stumbled into it, stumbled into it and go, wow, I have this amazing opportunity. So much with business. You go like, it&#8217;s right timing, it&#8217;s right place, right people, right, partners, all the things that have to go together for something to go really well. And then you go, I want to make the most of that. And that&#8217;s my reflection, is that I had an opportunity. I wanted to seize that opportunity to make the most of it. Now, seeing, Oh, wow. Now I did have a coach during about half of my business time, invaluable to help us with the organization. But I go like having someone that this is why we keep working together as I go. I just need it. It&#8217;s just a part of making the most of who I am and my opportunities that come my way to to do even more. And it&#8217;s not necessarily just about money, but it&#8217;s about making the most of the opportunity.</p>\n\n\n\n<p>Kelly Gallagher (00:35:18) &#8211; Right.</p>\n\n\n\n<p>Kelly Gallagher (00:35:19) &#8211; And Joy, while you&#8217;re doing you we haven&#8217;t even touched about that. But there&#8217;s that personal happiness factor and a lot of my clients either are working out or I have them. I try to persuade them to start a fitness program while they&#8217;re with me. But that joy, that love of what you&#8217;re doing, you know, if it&#8217;s not there, it&#8217;s very hard to perform on your.</p>\n\n\n\n<p>Cory Miller (00:35:43) &#8211; Yeah. And you&#8217;ve been such a good coach and you walk that talk. Kelly was telling me before we started the recording that she just ran a mile and swam, and I was like, Gosh, you overachiever. But it&#8217;s such a good inspiration for me for sure, because that other aspect of just life and business and everything is just being physically healthy. And you are a great encourager and you walk your talk.</p>\n\n\n\n<p>Kelly Gallagher (00:36:07) &#8211; I try. I try. I try. I mean, no one&#8217;s perfect. But yeah, I definitely try. And I also find because I work out a lot and I&#8217;m more effective for people because, you know, it brings all that blood flow to the brain.</p>\n\n\n\n<p>Kelly Gallagher (00:36:20) &#8211; So I shared with Cory that sometimes in between clients I&#8217;ll just run up the hill outside my house 4 or 5 times just to sharpen myself for the next person because I can feel it within myself. Then I come in their house and I&#8217;m all happy again and I&#8217;m feeling creative and supercharged and ready to go.</p>\n\n\n\n<p>Cory Miller (00:36:41) &#8211; Oh yeah. You can tell what the energy you have for sure. Well, Kelly, thanks so much for taking the time to talk to us about what you&#8217;re doing. Share a little bit of the experience. I mean, they resonate with me. Everything you&#8217;ve talked about are things that we&#8217;ve worked on in our coaching sessions, and I&#8217;ve been better for it as a person on Earth, as a human, on earth, as a business entrepreneur, leader, all those. But anything else that you want to share that we didn&#8217;t get to talk about?</p>\n\n\n\n<p>Kelly Gallagher (00:37:09) &#8211; No, I mean, what you just said, that&#8217;s what I live for. That&#8217;s my passion is did I, you know, did I help someone? Did they feel better after we, you know, did we move the bar? And I just live for success stories.</p>\n\n\n\n<p>Kelly Gallagher (00:37:23) &#8211; And I find it so much more rewarding than just pure sales. Although I would have argued back then that I was making people&#8217;s lives better because I had a terrific product or whatever, but somehow that what you just said, just seeing personal growth in other people, I just kind of live for that. So thank you.</p>\n\n\n\n<p>Cory Miller (00:37:43) &#8211; Bet. Well, thanks, Keller, for being on. And thanks, everybody, for listening. We&#8217;ll share in the show notes how you can get a hold of Kelly if you&#8217;re interested in talking more with her. She&#8217;s fantastic. Coach, you can&#8217;t. I&#8217;ve referred you numerous times to people that now I believe are our regular clients with you. And we they&#8217;re defensive minded and we always talk like, yep, I just had my Kelly session, just had my Kelly Sessions, so.</p>\n\n\n\n<p>Kelly Gallagher (00:38:08) &#8211; Well, thank you for doing that. Yes. I don&#8217;t really advertise. I haven&#8217;t ever. I only did maybe in the first year. But I think that&#8217;s the other thing. Good coaches just kind of get referrals and.</p>\n\n\n\n<p>Kelly Gallagher (00:38:21) &#8211; That&#8217;s the way it should be.</p>\n\n\n\n<p>Cory Miller (00:38:23) &#8211; You do. All right. Thanks, everybody, for listening to Post Status Draft. It&#8217;s been another episode kind of went out of our league but love to introduce people that have made an indelible difference in my life and to share their wisdom. So we&#8217;ll see everybody next time. Thank you.</p>\n<p>This article was published at Post Status — the community for WordPress professionals.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 19 Aug 2023 03:00:33 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Cory Miller\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:47;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:97:\"Post Status: WordPress 6.3 RC2 • Synced Patterns • Internationalization • Gutenberg Phase 3\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:96:\"https://poststatus.com/wordpress-6-3-rc2-synced-patterns-internationalization-gutenberg-phase-3/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:96:\"https://poststatus.com/wordpress-6-3-rc2-synced-patterns-internationalization-gutenberg-phase-3/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:24701:\"<h2 class=\"wp-block-heading\" id=\"h-this-week-at-wordpress-org-april-3-2023\">This Week at WordPress.org (July 25, 2023)</h2>\n\n\n<div class=\"has-background has-theme-palette-8-background-color wp-block-post-excerpt\"><p class=\"wp-block-post-excerpt__excerpt\">We&#8217;re under two weeks away from WordPress 6.3 release. Have you started testing? Big changes are envisioned for the Media Library, Admin Dashboard, and more. You have an opportunity NOW to share ideas. What considerations do we need to account for? Read the Phase 3 post from Matías and share your feedback in the comments.&hellip; </p></div>\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<div class=\"wp-block-kadence-infobox kt-info-box_94d1bd-77\"><div class=\"kt-blocks-info-box-link-wrap kt-blocks-info-box-media-align-left kt-info-halign-left\"><div class=\"kt-blocks-info-box-media-container\"><div class=\"kt-blocks-info-box-media kt-info-media-animate-none\"><div class=\"kadence-info-box-icon-container kt-info-icon-animate-none\"><div class=\"kadence-info-box-icon-inner-container\"><span class=\"kadence-dynamic-icon\"></span></div></div></div></div><div class=\"kt-infobox-textcontent\"><h2 class=\"kt-blocks-info-box-title\"> WP 6.3, Reusable Blocks, Phase 3, i18N</h2><p class=\"kt-blocks-info-box-text\"><br />  <a href=\"https://wordpress.org/news/2023/07/wordpress-6-3-release-candidate-2/\">WordPress 6.3 Release Candidate 2</a><br /><br />3&#x20e3; <a href=\"https://make.wordpress.org/core/tag/phase-3/\">Gutenberg Phase 3</a><br /><br />  <a href=\"https://make.wordpress.org/core/2023/07/24/i18n-performance-analysis/\">I18N Performance Analysis</a><br /><br />  <a href=\"https://wordpress.org/news/2023/07/synced-patterns-the-evolution-of-reusable-blocks/\">Synced Patterns: The Evolution of Reusable Blocks</a></p></div></div></div>\n\n\n\n<div class=\"wp-block-kadence-spacer aligncenter kt-block-spacer-_b57166-6e\"><div class=\"kt-block-spacer kt-block-spacer-halign-center\"><hr class=\"kt-divider\" /></div></div>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-news\"><a href=\"https://wordpress.org/news\">News</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://wordpress.org/news/2023/07/synced-patterns-the-evolution-of-reusable-blocks/\">Synced Patterns: The Evolution of Reusable Blocks</a></li>\n\n\n\n<li><a href=\"https://wordpress.org/news/2023/07/wordpress-6-3-release-candidate-2/\">WordPress 6.3 Release Candidate 2</a></li>\n\n\n\n<li><a href=\"https://wordpress.org/news/2023/07/wordpress-6-3-live-product-demo-highlights-recording/\">WordPress 6.3 Live Product Demo – Highlights &amp; Recording</a></li>\n</ul>\n\n\n\n<div class=\"wp-block-kadence-spacer aligncenter kt-block-spacer-_8f6276-eb\"><div class=\"kt-block-spacer kt-block-spacer-halign-center\"><hr class=\"kt-divider\" /></div></div>\n\n\n\n<div class=\"wp-block-columns is-layout-flex wp-container-36 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<h2 class=\"wp-block-heading\">WordPress 6.3</h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/polyglots/2023/07/18/wordpress-6-3-ready-to-be-translated/\">WordPress 6.3 ready to be translated</a></li>\n\n\n\n<li><a href=\"https://wordpress.org/news/2023/07/wordpress-6-3-release-candidate-2/\">WordPress 6.3 Release Candidate 2</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/19/wordpress-6-3-accessibility-improvements/\">WordPress 6.3 Accessibility Improvements</a></li>\n\n\n\n<li><a href=\"https://wordpress.org/news/2023/07/wordpress-6-3-release-candidate-1/\">WordPress 6.3 Release Candidate 1</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/19/wordpress-6-2-release-candidate-phase-2/\">WordPress 6.3 Release Candidate Phase</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/13/improvements-to-the-metadata-api-in-wordpress-6-3/\">Improvements to the metadata API in WordPress 6.3</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/06/30/6-3-release-parties-schedule-and-hosts/\">6.3 Release Parties Schedule and hosts</a></li>\n\n\n\n<li><a href=\"https://wordpress.org/news/2023/06/wordpress-6-3-beta-2/\">WordPress 6.3 Beta 2</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/design/2023/05/25/wordpress-6-3-design-kickoff/\">WordPress 6.3 design kickoff</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/05/25/bug-scrub-schedule-for-6-3/\">Bug Scrub Schedule for WordPress 6.3</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/05/18/wordpress-6-3-planning-roundup/\">WordPress 6.3 Planning Roundup</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/05/18/roadmap-to-6-3/\">Roadmap to 6.3</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\">WordPress 6.4</h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2023/07/18/wordpress-6-4-whats-on-your-wishlist/\">WordPress 6.4: What’s on your wishlist?</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/06/05/wordpress-6-4-development-cycle/\">WordPress 6.4 Development Cycle</a></li>\n</ul>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<h3 class=\"wp-block-heading\">WordPress 6.3 Field Guide and Dev-Notes</h3>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2023/07/18/wordpress-6-3-field-guide/\">WordPress 6.3 Field Guide</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/17/introducing-the-block-selectors-api/\">Introducing the Block Selectors API</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/17/introducing-the-wordpress-command-palette-api/\">Introducing the WordPress Command Palette API</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/14/layout-updates-in-the-editor-for-wordpress-6-3/\">Layout updates in the editor for WordPress 6.3</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/17/social-icons-block-applied-colors-now-dynamically-update-based-on-theme-json-and-global-styles/\">Social Icons block: Applied colors now dynamically update based on theme.json and Global Styles</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/18/miscellaneous-editor-changes-in-wordpress-6-3/\">Miscellaneous Editor changes in WordPress 6.3</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/18/bundled-themes-dropping-internet-explorer-scripts-and-styles/\">Bundled themes dropping Internet Explorer scripts and styles</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/17/improvements-to-the-cache-api-in-wordpress-6-3/\">Improvements to the Cache API in WordPress 6.3</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/14/configuring-development-mode-in-6-3/\">Configuring development mode in 6.3</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/14/i18n-improvements-in-6-3/\">I18N Improvements in 6.3</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/13/image-performance-enhancements-in-wordpress-6-3/\">Image performance enhancements in WordPress 6.3</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/13/improvements-to-the-metadata-api-in-wordpress-6-3/\">Improvements to the metadata API in WordPress 6.3</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/14/wp_query-used-internally-in-get_pages/\">WP_Query used internally in get_pages()</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/14/registering-scripts-with-async-and-defer-attributes-in-wordpress-6-3/\">Registering scripts with `async` and `defer` attributes in WordPress 6.3</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/11/new-in-6-3-rollback-for-failed-manual-plugin-and-theme-updates/\">New in 6.3: Rollback for failed manual plugin and theme updates</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/14/improved-caching-for-database-queries-in-wp_user_query/\">Improved Caching for Database Queries in WP_User_Query</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/18/miscellaneous-developer-changes-in-wordpress-6-3/\">Miscellaneous developer changes in WordPress 6.3</a></li>\n</ul>\n</div>\n</div>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<div class=\"wp-block-columns is-layout-flex wp-container-41 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<div class=\"wp-block-columns is-layout-flex wp-container-39 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<h2 class=\"wp-block-heading\" id=\"h-community\"><a href=\"https://make.wordpress.org/community\">Community</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/community/2023/07/13/recap-of-the-diverse-speaker-training-group-wpdiversity-amer-emea-on-july-12-2023/\">Recap of the Diverse Speaker Training group (#WPDiversity) AMER/EMEA on July 12, 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/community/2023/07/13/new-handbook-page-for-wordcamp-organizers-wordcamp-speaker-selection-for-content-and-diversity/\">New handbook page for WordCamp Organizers: WordCamp Speaker Selection (for content AND diversity)</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/community/2023/07/12/summary-of-the-q2-community-team-role-updates/\">Summary of the Q2 Community Team Role Updates</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-core\"><a href=\"https://make.wordpress.org/core\">Core</a> </h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2023/07/25/a-week-in-core-july-24-2023/\">A Week in Core – July 24, 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/26/whats-new-in-gutenberg-16-3-26-july/\">What’s new in Gutenberg 16.3? (26 July)</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/24/i18n-performance-analysis/\">I18N Performance Analysis</a></li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\">Phase 3 Ideations</h3>\n\n\n\n<ul>\n<li><a target=\"_blank\" href=\"https://make.wordpress.org/core/2023/07/03/real-time-collaboration/\" rel=\"noreferrer noopener\">Real-Time Collaboration</a></li>\n\n\n\n<li><a target=\"_blank\" href=\"https://make.wordpress.org/core/2023/07/04/workflows/\" rel=\"noreferrer noopener\">Workflows</a></li>\n\n\n\n<li><a target=\"_blank\" href=\"https://make.wordpress.org/core/2023/07/05/revisions/\" rel=\"noreferrer noopener\">Revisions</a></li>\n\n\n\n<li><a target=\"_blank\" href=\"https://make.wordpress.org/core/2023/07/07/media-library/\" rel=\"noreferrer noopener\">Media Library</a></li>\n\n\n\n<li><a target=\"_blank\" href=\"https://make.wordpress.org/core/2023/07/10/block-library/\" rel=\"noreferrer noopener\">Block Library</a></li>\n\n\n\n<li><a target=\"_blank\" href=\"https://make.wordpress.org/core/2023/07/12/admin-design/\" rel=\"noreferrer noopener\">Admin Design</a></li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-developer-blog\"><a href=\"https://developer.wordpress.org/news/\">Developer Blog</a></h3>\n\n\n\n<ul>\n<li><a href=\"https://developer.wordpress.org/news/2023/07/beyond-block-styles-part-1-using-the-wordpress-scripts-package-with-themes/\">Beyond block styles, part 1: using the WordPress scripts package with themes</a></li>\n\n\n\n<li><a href=\"https://developer.wordpress.org/news/2023/07/make-your-sites-typography-make-a-statement/\">Make your site’s typography make a statement</a></li>\n\n\n\n<li><a href=\"https://developer.wordpress.org/news/2023/07/whats-new-for-developers-july-2023/\">What’s new for developers? (July 2023)</a></li>\n\n\n\n<li><a href=\"https://developer.wordpress.org/news/2023/07/how-to-modify-theme-json-data-using-server-side-filters/\">How to modify theme.json data using server-side filters</a></li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-meetings\">Meetings</h3>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2023/07/26/core-editor-chat-summary-26th-july-2023/\">Core Editor chat summary: 26th July 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/25/dev-chat-agenda-july-26-2023/\">Dev Chat agenda, July 26, 2023</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\"><a href=\"https://make.wordpress.org/docs\">Docs</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/docs/2023/07/24/online-monthly-docs-team-contributor-day-july-25-2023/\">Online monthly Docs Team Contributor Day July 25, 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/docs/2023/07/18/call-for-volunteers-to-help-with-6-3-end-user-documentation/\">Call for volunteers to help with 6.3 end-user documentation</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/updates/2023/07/24/documentation-team-update-july-24-2023/\">Documentation Team Update – July 24, 2023</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-hosting\"><a href=\"https://make.wordpress.org/hosting\">Hosting</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/hosting/2023/07/26/hosting-team-meeting-agenda-2023-07-26/\">Hosting Team meeting agenda 2023-07-26</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/hosting/2023/07/26/wordpress-hosting-survey/\">WordPress Hosting Survey</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\"><a href=\"https://make.wordpress.org/meta\">Meta</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/meta/2023/07/20/matrix-chat-summary-july-20-2023/\">Matrix chat Summary – July 20, 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/meta/2023/06/20/make-team-dashboards/\">Make Team Dashboards</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/meta/2023/06/15/triaging-open-issues-on-trac-for-make-teams/\">Triaging open issues on Trac for Make Teams</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/meta/2023/06/11/linking-to-supporting-orgs/\">Linking to Supporting Orgs</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-mobile\"><a href=\"https://make.wordpress.org/mobile\">Mobile</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/updates/2023/07/26/mobile-team-update-july-25th/\">Mobile Team Update – July 25th</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-openverse\"><a href=\"https://make.wordpress.org/openverse\">Openverse</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/openverse/2023/07/25/community-meeting-recap-2023-07-25/\">Community Meeting Recap (2023-07-25)</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/openverse/2023/07/24/last-week-openverse-2023-07-17-2023-07-24/\">A week in Openverse: 2023-07-17 – 2023-07-24</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-performance\"><a href=\"https://make.wordpress.org/performance/\">Performance</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2023/07/25/performance-chat-summary-25-july-2023/\">Performance Chat Summary: 25 July 2023</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-plugins\"><a href=\"https://make.wordpress.org/plugins\">Plugins</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/plugins/2023/07/24/tackling-team-challenges-together/\">Tackling team challenges together</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/plugins/2023/06/29/plugin-review-team-update-the-next-phase-begins/\">Plugin Review Team Update: The next phase begins</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/updates/2023/07/24/plugin-review-team-24-jul-2023/\">Plugin Review Team: 24 Jul 2023</a></li>\n</ul>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<h2 class=\"wp-block-heading\" id=\"h-polyglots\"><a href=\"https://make.wordpress.org/polyglots\">Polyglots</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/polyglots/2023/07/26/agenda-weekly-polyglots-chat-july-26-2023-0700-utc/\">Agenda: Weekly Polyglots Chat – July 26, 2023 (07:00 UTC)</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/polyglots/2023/07/18/wordpress-6-3-ready-to-be-translated/\">WordPress 6.3 ready to be translated</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-project\">Project</h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/project/2023/07/13/proposal-for-establishing-a-make-diversity-equity-inclusion-and-belonging-deib-team-within-the-wordpress-community/\">Proposal for Establishing a Make Diversity, Equity, Inclusion, and Belonging (“DEIB”) Team within the WordPress Community</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\">Support</h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/support/2023/07/wp-contributor-mentorship-program-support-team-onboarding-meeting/\">WP Contributor Mentorship Program: Support Team Onboarding Meeting</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/support/2023/07/agenda-for-july-27th-support-meeting-2/\">Agenda for July 27th Support Meeting</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\"><a href=\"https://make.wordpress.org/sustainability\">Sustainability</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/sustainability/2023/07/27/sustainability-chat-agenda-july-28-2023/\">Sustainability Chat Agenda, July 28, 2023</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-test\"><a href=\"https://make.wordpress.org/test\">Test</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/test/2023/06/27/help-test-wordpress-6-3/\">Help Test WordPress 6.3</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/updates/2023/07/24/test-team-update-24-july-2023/\">Test Team Update: 24 July 2023</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-theme\"><a href=\"https://make.wordpress.org/theme\">Theme</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/themes/2023/07/26/themes-team-meeting-notes-july-25-2023/\">Themes Team Meeting Notes – July 25, 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/updates/2023/07/25/themes-team-update-july-25-2023/\">Themes team update July 25, 2023</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-training\"><a href=\"https://make.wordpress.org/training\">Training</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/training/2023/07/26/training-team-meeting-recap-25th-july-2023/\">Training Team Meeting Recap – 25th July 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/training/2023/07/25/call-for-volunteers-to-help-with-6-3-learn-wordpress-updates/\">Call for Volunteers to help with 6.3 Learn WordPress updates</a></li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-tutorials\"><a href=\"https://learn.wordpress.org/tutorials\">Tutorials</a></h3>\n\n\n\n<ul>\n<li><a href=\"https://learn.wordpress.org/tutorial/improving-website-performance-with-caching/\">Improving website performance with caching</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/tutorial/installing-node-js-and-npm-for-local-wordpress-development/\">Installing Node.js and npm for local WordPress development</a></li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-online-workshops\">Online Workshops</h3>\n\n\n\n<ul>\n<li><a href=\"https://learn.wordpress.org/?meeting=apac-exploring-some-of-the-new-6-3-wordpress-features\">APAC: Exploring some of the new 6.3 WordPress features</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=exploring-some-of-the-new-6-3-wordpress-features\">Exploring some of the new 6.3 WordPress features</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=onboarding-to-test-team\">Onboarding to Test Team</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=testing-wordpress-6-3-developer-edition\">Testing WordPress 6.3 – Developer edition</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=how-to-validate-content-feedback-for-the-wordpress-training-team-3\">How to validate content feedback for the WordPress Training Team</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=how-to-validate-content-feedback-for-the-wordpress-training-team-2\">How to validate content feedback for the WordPress Training Team</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=mentorship-program-introduction-to-the-wordpress-open-source-project\">Mentorship Program: Introduction to the WordPress Open Source Project</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=what-is-the-domain-name-system-4\">What is the Domain Name System?</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=what-is-the-domain-name-system-3\">What is the Domain Name System?</a></li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-courses\"><a href=\"https://learn.wordpress.org/courses\">Courses</a></h3>\n\n\n\n<ul>\n<li><a href=\"https://learn.wordpress.org/course/developing-with-the-wordpress-rest-api/\">Introduction to developing with the WordPress REST API</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\"><a href=\"https://make.wordpress.org/tv\">WordPress TV</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/tv/2023/06/15/enhancing-slide-management-for-video-publications/\">Enhancing Slide Management for Video Publications</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\">WordCamp Central</h2>\n\n\n\n<ul>\n<li><a href=\"https://central.wordcamp.org/news/2023/07/wordcamp-malaysia-2023-is-looking-for-speakers-and-sponsors/\">WordCamp Malaysia 2023 is Looking for Speakers and Sponsors</a></li>\n\n\n\n<li><a href=\"https://central.wordcamp.org/news/2023/07/wordcamp-masaka-2023-celebrating-inclusion-diversity-and-innovation-with-wordpress-in-ugandas-pearl-of-africa/\">WordCamp Masaka 2023: Celebrating Inclusion, Diversity, and Innovation with WordPress in Uganda’s Pearl of Africa!</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-wptv\">WPTV</h2>\n\n\n\n<ul>\n<li><a href=\"https://wordpress.tv/category/year/2022/\">Latest WordPress TV videos</a></li>\n</ul>\n</div>\n</div>\n</div>\n</div>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-related-news\">Related News:</h2>\n\n\n\n<ul>\n<li><a href=\"https://blog.jquery.com/2023/05/11/jquery-3-7-0-released-staying-in-order/\">jQuery 3.7.0</a></li>\n\n\n\n<li><a href=\"https://nodejs.org/en/blog/release/v20.2.0\">Node v20.2.0 released</a></li>\n\n\n\n<li><a href=\"https://www.php.net/archive/2023.php#2023-07-06-1\">PHP 8.3.0 Alpha 3 available for testing</a></li>\n\n\n\n<li><a href=\"https://www.php.net/archive/2023.php#2023-05-11-1\"></a><a href=\"https://www.php.net/archive/2023.php#2023-07-06-2\">PHP 8.2.8 Released!</a></li>\n\n\n\n<li><a href=\"https://www.php.net/archive/2023.php#2023-07-06-3\">PHP 8.1.21 Released!</a></li>\n\n\n\n<li><a href=\"https://github.com/PHPMailer/PHPMailer/releases/tag/v6.8.0\">PHPMailer 6.8.0</a></li>\n\n\n\n<li><a href=\"https://262.ecma-international.org/\">TC39</a></li>\n\n\n\n<li><a href=\"http://github.com/composer/composer/releases/tag/2.5.8\">Composer 2.5.8</a></li>\n</ul>\n\n\n\n<p class=\"has-theme-palette-7-background-color has-background\">Thanks for reading our WP dot .org roundup! Each week we are highlighting the news and discussions coming from the good folks making WordPress possible. If you or your company create products or services that use WordPress, you need to be engaged with them and their work. Be sure to share this resource with your product and project managers. <br /><br /><strong>Are you interested in giving back and contributing your time and skills to WordPress.org?</strong>   <a href=\"https://wordpress.org/support/article/contributing-to-wordpress/\">Start Here ›</a><br /><br /><strong>Get our weekly WordPress community news digest</strong> — Post Status&#8217; <a href=\"https://poststatus.com/news/week-in-review/\">Week in Review</a> — covering the WP/Woo news plus significant writing and podcasts. It&#8217;s also available in <a href=\"https://poststatus.com/newsletter\">our newsletter</a>.  </p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<div class=\"wp-block-media-text alignwide is-stacked-on-mobile has-background\"><a href=\"https://poststatus.com/\"><img src=\"https://poststatus.com/wp-content/uploads/2021/09/vertical-post-status-logo-250.png\" alt=\"Post Status\" class=\"wp-image-85823 size-full\" /></a><div class=\"wp-block-media-text__content\">\n<p class=\"has-text-align-left has-normal-font-size\" id=\"h-get-ready-for-remote-work\">You — and <a href=\"https://poststatus.com/#Agency\">your whole team</a> can <a href=\"https://poststatus.com/#choose-membership\">Join Post Status</a> too!</p>\n\n\n\n<p class=\"has-text-align-left has-small-font-size\"><strong>Build your network. Learn with others. Find your next job — or your next hire.</strong> Read the <strong>Post Status</strong> <a href=\"https://poststatus.com/newsletter/\">newsletter</a>. <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/2709.png\" alt=\"✉\" class=\"wp-smiley\" /> Listen to <a href=\"https://poststatus.com/podcasts/\">podcasts</a>. <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f399.png\" alt=\"?\" class=\"wp-smiley\" /> Follow <a href=\"https://twitter.com/post_status/\">@Post_Status</a> <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f426.png\" alt=\"?\" class=\"wp-smiley\" /> and <a href=\"https://www.linkedin.com/company/post-status-llc/\">LinkedIn</a>. <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f4bc.png\" alt=\"?\" class=\"wp-smiley\" /></p>\n</div></div>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n<p>This article was published at Post Status — the community for WordPress professionals.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 19 Aug 2023 03:00:33 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"Courtney Robertson\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:48;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:72:\"Post Status: The WP Agency Journey with J.J. Toothman of Lone Rock Point\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:82:\"https://poststatus.com/the-wp-agency-journey-with-j-j-toothman-of-lone-rock-point/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:82:\"https://poststatus.com/the-wp-agency-journey-with-j-j-toothman-of-lone-rock-point/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:47031:\"<div class=\"wp-block-embed__wrapper\">\n\n</div>\n\n\n\n\n\n\n\n<p><a href=\"https://poststatus.com/planet/feed/#h-transcript\">Transcript</a> ↓</p>\n\n\n\n<p class=\"wp-embed-aspect-16-9 wp-has-aspect-ratio\">In this episode, <a href=\"https://twitter.com/corymiller303\">Cory Miller</a> interviews <a href=\"https://twitter.com/jjtoothman\">J.J. Toothman</a>, owner of <a href=\"https://lonerockpoint.com/\">Lone Rock Point</a>, a WordPress agency based in Sudbury, Massachusetts. J.J. shares his agency journey, discussing the growth of his agency and its remote-first approach.</p>\n\n\n\n<p class=\"wp-embed-aspect-16-9 wp-has-aspect-ratio\"><strong>Episode Highlights:</strong></p>\n\n\n\n<ul type=\"video\" class=\"wp-embed-aspect-16-9 wp-has-aspect-ratio\">\n<li><strong>The Growth of Lone Rock Point</strong> [00:00:32] JJ discusses the growth of his agency, Lone Rock Point, from 4-5 people in spring 2020 to 16 people now.</li>\n\n\n\n<li><strong>Remote-first Approach</strong> [00:02:29] JJ talks about adopting a remote-first organizational structure from the beginning and how they didn&#8217;t miss a beat when the pandemic hit in 2020.</li>\n\n\n\n<li><strong>Focus on Public Sector and NASA</strong> [00:04:02] JJ explains his background in government contracting and how his agency focuses on working with the public sector, particularly in the federal level, including clients like NASA.</li>\n\n\n\n<li><strong>The federal government ecosystem</strong> [00:11:29] Discussion on the ecosystem and governance of federal government agencies, including guidance and policies.</li>\n\n\n\n<li><strong>Starting Lone Rock Point</strong> [00:13:39] JJ&#8217;s decision to start his own agency after exploring side hustles and feeling the desire to be more entrepreneurial.</li>\n\n\n\n<li><strong>Niching down to WordPress</strong> [00:18:25] The growth and success of Lone Rock Point after focusing on WordPress as their main service offering.</li>\n\n\n\n<li><strong>Topic 1: Using WordPress as a Content Management System</strong> [00:22:17] Discussion on using WordPress as a content management system and adapting WooCommerce for check payments.</li>\n\n\n\n<li><strong>Topic 2: WordPress and the Public Sector</strong> [00:22:58] Exploration of using WordPress in the public sector, particularly in government agencies like NASA, for managing and publishing content.</li>\n\n\n\n<li><strong>Topic 3: Web Modernization Project with NASA</strong> [00:28:26] Overview of a web modernization project with NASA, including evaluating different CMS options and deciding to invest in WordPress.</li>\n\n\n\n<li><strong>The SEO and Accessibility Tools in WordPress </strong>[00:32:35] Discusses the real-time analysis tools in WordPress for SEO and accessibility, such as Yoast, and how they differentiate it from other CMS platforms.</li>\n\n\n\n<li><strong>The Resources and Knowledge Sharing in the WordPress Community </strong>[00:34:57] Explains the abundance of resources, knowledge sharing, and community support available in the WordPress ecosystem compared to other CMS platforms.</li>\n\n\n\n<li><strong>The Importance of Open Source and User Experience in WordPress</strong> [00:37:11] Highlights the significance of open source adoption in the public sector and how WordPress&#8217;s user experience and inclusivity differentiate it from commercial solutions.</li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\"><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f64f.png\" alt=\"?\" class=\"wp-smiley\" /> Sponsor: <a href=\"https://poststat.us/a2-hosting\">A2 Hosting</a></h3>\n\n\n\n<div class=\"wp-block-columns has-theme-palette-8-background-color has-background is-layout-flex wp-container-44 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n\n\n<p>A2Hosting offers solutions for WordPress and WooCommerce that are both blazing fast and ultra-reliable. WordPress can be easily deployed on ANY web hosting plan from A2: Shared, VPS, or Dedicated. A2 also offers Managed WordPress and WooCommerce Hosting. Take a look at a2hosting.com today!</p>\n</div>\n\n\n\n<div class=\"wp-block-column is-vertically-aligned-center is-layout-flow wp-block-column-is-layout-flow\">\n<img width=\"752\" height=\"470\" src=\"https://poststatus.com/wp-content/uploads/2022/08/imageedit_1_6433774706-752x470.png\" alt=\"A2 Hosting\" class=\"wp-image-104073\" />A2 Hosting\n</div>\n</div>\n\n\n\n<h3 class=\"wp-block-heading eplus-wrapper\" id=\"h-mentioned-in-the-show\">  Mentioned in the show<strong>:</strong></h3>\n\n\n\n<ul>\n<li><a href=\"https://lonerockpoint.com/\">Lone Rock Point</a></li>\n\n\n\n<li><a href=\"https://wordpress.com/\">WordPress&nbsp;</a></li>\n\n\n\n<li><a href=\"https://www.nasa.gov/\">NASA</a></li>\n\n\n\n<li><a href=\"https://automattic.com/\">Automattic</a></li>\n\n\n\n<li><a href=\"https://wpvip.com/\">WordPress VIP</a></li>\n\n\n\n<li><a href=\"https://www.fedramp.gov/\">FedRAMP</a>&nbsp;</li>\n\n\n\n<li><a href=\"https://wpvip.com/partners/\">WordPress Agency Partnership Program</a></li>\n\n\n\n<li><a href=\"https://www.rtx.com/\">Raytheon</a></li>\n\n\n\n<li><a href=\"https://www.nasa.gov/ames\">Nasa Ames Research Center</a></li>\n\n\n\n<li><a href=\"https://www.recodingamerica.us/\">&#8220;Recoding America&#8221;</a> by <a href=\"https://twitter.com/pahlkadot?lang=bn\">Jennifer Palka</a>&nbsp;</li>\n\n\n\n<li><a href=\"https://woocommerce.com/\">WooCommerce</a></li>\n\n\n\n<li><a href=\"https://en.wikipedia.org/wiki/Main_Page\">Wikis</a></li>\n\n\n\n<li><a href=\"https://www.eventbrite.com/\">Ticketfly</a></li>\n\n\n\n<li><a href=\"https://digital.gov/resources/21st-century-integrated-digital-experience-act/\">Integrated Digital Experience Act</a></li>\n\n\n\n<li><a href=\"https://www.drupal.org/\">Drupal</a></li>\n\n\n\n<li><a href=\"https://business.adobe.com/products/experience-manager/sites/aem-sites.html\">Adobe Experience Manager</a></li>\n\n\n\n<li><a href=\"https://wagtail.org/\">Wagtail</a></li>\n\n\n\n<li><a href=\"https://www.contentful.com/\">Contentful</a></li>\n\n\n\n<li><a href=\"https://wordpress.org/gutenberg/\">Gutenberg</a></li>\n\n\n\n<li><a href=\"https://atomicdesign.bradfrost.com/chapter-2/\">Atomic Design System</a></li>\n\n\n\n<li><a href=\"https://yoast.com/\">Yoast</a></li>\n\n\n\n<li><a href=\"https://wordpress.org/plugins/\">WordPress plugins</a></li>\n\n\n\n<li><a href=\"https://stackoverflow.com/\">Stack Overflow</a></li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading eplus-wrapper\" id=\"h-you-can-follow-post-status-and-our-guests-on-twitter\">  You can follow Post Status and our guests on Twitter:</h3>\n\n\n\n<ul class=\"eplus-wrapper\">\n<li><a href=\"https://twitter.com/jjtoothman\">JJ Toothman</a> (Owner, <a href=\"https://lonerockpoint.com/\">Lone Rock Point</a>)</li>\n\n\n\n<li><a href=\"https://twitter.com/corymiller303\">Cory Miller</a> (CEO, <a href=\"https://twitter.com/post_status\">Post Status</a>)</li>\n\n\n\n<li><a href=\"https://twitter.com/lemonadecode\">Olivia Bisset</a> (Intern, <a href=\"https://twitter.com/post_status\">Post Status</a>)</li>\n</ul>\n\n\n\n<p class=\"eplus-wrapper has-background\">The <strong>Post Status Draft</strong> podcast is geared toward WordPress professionals, with interviews, news, and deep analysis.  <br /><br /><a href=\"https://poststatus.com/category/post-status-podcasts/\" target=\"_blank\" rel=\"noreferrer noopener\">Browse our archives</a>, and don’t forget to subscribe via <a href=\"https://itunes.apple.com/us/podcast/post-status-draft-wordpress/id976403008\" target=\"_blank\" rel=\"noreferrer noopener\">iTunes</a>, <a href=\"https://podcasts.google.com/feed/aHR0cHM6Ly9mZWVkcy5zaW1wbGVjYXN0LmNvbS8ySkU5c2M4UA\" target=\"_blank\" rel=\"noreferrer noopener\">Google Podcasts</a>, <a href=\"https://www.youtube.com/c/PostStatus\" target=\"_blank\" rel=\"noreferrer noopener\">YouTube</a>, <a href=\"http://www.stitcher.com/podcast/krogsgard/post-status-draft-wordpress-podcast\" target=\"_blank\" rel=\"noreferrer noopener\">Stitcher</a>, <a href=\"https://wordpress-post-status-draft-podcast.simplecast.com/\" target=\"_blank\" rel=\"noreferrer noopener\">Simplecast</a>, or <a href=\"https://feeds.simplecast.com/2JE9sc8P\">RSS</a>.  </p>\n\n\n\n<h2 class=\"wp-block-heading eplus-wrapper\" id=\"h-transcript\">Transcript</h2>\n\n\n\n<p>Cory Miller (00:00:02) &#8211; Hey everybody. Welcome back to Post Status Draft. Got another great interview in our agency Journey series and I&#8217;m talking with JJ Toothman, a member of Post Status and JJ, Hey, thanks for coming on post this draft and talking about your agency journey story.</p>\n\n\n\n<p>J.J. Toothman (00:00:18) &#8211; Hey, thanks for having me. Cory. It&#8217;s great to be here. Um, really appreciate everything you do for post status and for the community. So I&#8217;m happy to be, um, you know, a member of both. So.</p>\n\n\n\n<p>Cory Miller (00:00:32) &#8211; Awesome. Well, we&#8217;ve gotten to get to know each other over the last, like, I&#8217;d say, what, eight months and hear about some of the work that your agency does. It&#8217;s super, super exciting. But can you tell me about the agency where it is now? Team clients kind of work. You kind of do.</p>\n\n\n\n<p>J.J. Toothman (00:00:50) &#8211; There&#8217;s my dog and wife.</p>\n\n\n\n<p>Cory Miller (00:00:54) &#8211; Great introduction.</p>\n\n\n\n<p>J.J. Toothman (00:00:55) &#8211; Yeah. Um, so the. So my company is Lone Rock Point and I am located outside of Boston, Massachusetts, in a town called Sudbury.</p>\n\n\n\n<p>J.J. Toothman (00:01:09) &#8211; Um, if you know the Revolutionary War history, you remember the Battle of Lexington and Concord and Sudbury borders. Concord. I live about five miles from where Paul Revere was captured at the end of his famous ride to tell everybody the British were coming. Oh, wow. Lone Rock Point. We have grown it to 16 people. You know, 12 of those people are full time. And there&#8217;s a handful of of, of part timers. Um, the were distributed all over the place. Uh, I&#8217;ve got, you know, some of us are in California, Texas. Uh, Michigan. There&#8217;s a few people in around Grand Rapids. There&#8217;s people in Florida, a few people around Asheville, North Carolina. And we definitely, you know, adopted a remote first, you know, virtual kind of organization, organizational structure from the very beginning. You know, when when the pandemic happened in 2020, we didn&#8217;t miss a beat. You know, our the people that we were working with, you know, just it just continued.</p>\n\n\n\n<p>J.J. Toothman (00:02:29) &#8211; It&#8217;s weird to look back on that time and think about the, you know, ways that we were able to grow during that time in a period where so many small businesses were were, you know, struggling. But, you know, look back on that time and think about like we, you know, we were, you know, going remote, being virtual. That wasn&#8217;t a problem for us. We were ready to do that for the very beginning. And the people we were worked with, like just we just kept working on it, kept asking for more from us. It was actually a period of growth for us. We probably went from, you know, at the beginning of. You know, spring 2020, we were around four people and 4 or 5, and now we&#8217;re 16. We became a WordPress agency approximately 15, 16 months ago. Um, and we joined WordPress is kind of a continuation of our work with the public sector when I started my company in 2016. Um, you know that we can talk about the genesis of that, but it was, you know, I was had come from a federal government contracting world and I&#8217;ve been working for big companies like Raytheon, um, Perot Systems, Dell and, you know, decided that, you know, I wanted to start my own company, you know, had this, you know, the proverbial entrepreneurial itch that most entrepreneurs feel and just kind of wanted to try that out.</p>\n\n\n\n<p>J.J. Toothman (00:04:02) &#8211; So I started to serve this company and wanted to start working. There were two customers that I wanted to work with from the very beginning, and one of those was NASA, which is it&#8217;s hard for me to talk about my own journey and the work that we&#8217;re doing without connecting to the long history I have working with with NASA. So I use that relationship and that relationship capital that I&#8217;ve built, you know, from starting working with them back in as early as 2001. Well, one of my first clients and then one of my second clients, big clients was Automattic. Some people over there that had built relationships over the years came to me and said, Hey, you know a lot about, you know, this public sector world, you know, federal government contracting. Can you help us, you know, with kind of get into that vertical and so help them with some some business strategy around that? I helped them with some security compliance, things they needed to be aware of. And then that relation, you know, that work kind of matured a little bit and kind of ran its course a little bit.</p>\n\n\n\n<p>J.J. Toothman (00:05:15) &#8211; And then, you know, as they as WordPress VIP, you know, kind of solidified its it&#8217;s standing and it&#8217;s got themselves into what&#8217;s called the Fedramp marketplace. You know, they came to me and said, Hey, you should, you know, your company, you should we should continue working together. You should join the WordPress Agency partnership program. And that&#8217;s something I did, you know, specifically because of our shared interest in working together on public sector opportunities. And, um, you know, that&#8217;s, that&#8217;s, that&#8217;s, that&#8217;s really what my company is doing right now is, you know, Lone Rock Point. We are, we&#8217;re definitely exploring that intersection of WordPress and public SpaC, public sector, predominantly the federal level of that. You know, there&#8217;s a lot of state and municipal stuff opportunities there as well. Um, but we&#8217;re, you know, the, the kind of the, when you think of like WordPress and public sector, what I want people to come out of that connection with is is Lone Rock point and so that&#8217;s you know that&#8217;s work we&#8217;re doing with and and work we&#8217;re doing with NASA and it&#8217;s going we&#8217;ve been working on some projects from NASA for the past few years.</p>\n\n\n\n<p>J.J. Toothman (00:06:31) &#8211; And it&#8217;s it&#8217;s really rewarding work. It&#8217;s good to feel like you&#8217;re contributing to. You know, we&#8217;re not civil servants, but we&#8217;re definitely kind of contributing to. You know, putting the taxpayer dollars to work, being good stewards of taxpayer money. And we think WordPress has a a role in that.</p>\n\n\n\n<p>Cory Miller (00:06:54) &#8211; Excellent. Well, there&#8217;s a lot here I want to unpack, but it&#8217;s so compelling. Congratulations on your success. Congratulations on what you&#8217;ve done in the public sector to take WordPress there. I love hearing stories like yours and our other members doing good work in our world. And I get to I think I&#8217;ve told you, I get to brag, Hey, I know the people working on these projects, you know, which is pretty fantastic, and taking WordPress to the Enterprise, but Public sector Spaces is really fantastic as WordPress grows. So okay, I want to I want to thank you for telling us kind of what Lone Lone Rock Point does today. So I heard in there 2016. So I, I had assumed, as we had talked for because of the kind of work you&#8217;re doing, you had been doing this particular agency type work for a long time.</p>\n\n\n\n<p>Cory Miller (00:07:49) &#8211; But wow, that&#8217;s why I say congrats one, Congratulations on your success. But like it&#8217;s pretty fast timeline to be able to get to doing an agency to doing this kind of work, I think. But can you take me back like before 2016, you said you were doing enterprise or. Yeah, public sector government, government contracting work. What were you doing before the agency?</p>\n\n\n\n<p>J.J. Toothman (00:08:10) &#8211; Before. Before I founded my agency. Yeah. Yeah. So I was, I was a software developer, web application developer. I got hired by Raytheon to work on a contract they had with NASA Ames Research Center. And back in 2001, actually, the thing that the opportunity that kind of brought me into that world was that&#8217;s when they first started thinking about like, what do they have to do about website accessibility? So they brought me in there to kind of help, you know, help, you know, mature what they were doing around all that kind of stuff. And it&#8217;s been interesting to see what the what where was thinking about this over the last couple of weeks.</p>\n\n\n\n<p>J.J. Toothman (00:08:57) &#8211; You know, when I first started working at NASA Ames and started talking about website accessibility and looking at all the various websites and web applications that was that were running at Ames Research Center, which is one of the, you know, field centers that&#8217;s part of the the NASA enterprise. Um, there was people were really just they were really resistant to it. They were trying to. They were trying to check the box on it quite a bit. You know, they were just like, What&#8217;s the minimum I have to do to, like, just check the box on this and so I can move on. Like it really the the optics of how important that was and just it just being the generally the right thing to do, forget the whole legal requirements of it all that really just wasn&#8217;t cemented. And here we are, you know, 20 plus years later where, you know, that&#8217;s that&#8217;s kind of like at the core of what is happening definitely in the public sector, but in the web in general, just like this, this strong emphasis on making it accessible and available to everybody.</p>\n\n\n\n<p>J.J. Toothman (00:10:00) &#8211; You know, I saw how that started, you know, 20 years ago. And it&#8217;s it was not the same temperature, both from various from developers, designers, project managers, you know, that whole thing is shifted in very positive ways over the last couple of decades. So I was a software developer there working on various, um, you know, web applications, internal business process type applications, looking at accessibility improvements. Um, and then just kind of grew things over the years, you know, you know, started, you know, started rising the ranks a little bit, like getting opportunities to understand how government projects actually work, how it works, which is a pretty thing. I started participating in proposals that big companies like Dell were doing and responding to government RFPs, which are massive undertakings unto themselves, um, understanding compliance and security regulations that exist in government, in government, and really just kind of understanding how these governments, these government agencies and, you know, as individual as they kind of have their own ecosystems unto themselves, that&#8217;s probably not, you know, unique to all various massive, you know, corporate enterprises.</p>\n\n\n\n<p>J.J. Toothman (00:11:29) &#8211; You know, we talk a little bit about the WordPress ecosystem now, but these these federal government agencies, they all have their own ecosystems around it. And then they&#8217;re also operating in this big federal thing where there&#8217;s kind of like this. Um, Jennifer Palka just wrote this great book called Recoding America, and she calls this term friendly fire. So where there&#8217;s like things where like the Office of Management, the OMB and General Services Administrations and other offices and agencies within the executive branch and other parts of government are putting together governance and policy around it and how the web should work. Um, and it creates all this types of, you know, these, this guidance and guardrails that you have to adhere to. So that becomes like kind of a larger ecosystem unto itself. So, you know, starting to understand how to work within that type of, um, you know, those types of scenarios and guardrails and boundaries and knowing how to interoperate it all just became, you know, something that started gaining more experience with and more exposure to with and, you know, think it&#8217;s been a big, you know, that knowledge is a big part of like why, you know, my company&#8217;s positioned and why we&#8217;ve achieved some success.</p>\n\n\n\n<p>J.J. Toothman (00:12:44) &#8211; You know, working and and gaining some credibility in parts of the public sector and procuring our relationship with with WordPress VIP and, you know, expanding our own opportunities within itself. Yeah, it&#8217;s exciting. It&#8217;s challenging. Exhausting at times, but it&#8217;s also exciting and rewarding.</p>\n\n\n\n<p>Cory Miller (00:13:04) &#8211; Yeah. Yeah. I can&#8217;t imagine. So just just for clarity. So you&#8217;re working full time at Raytheon or were you contract as a software?</p>\n\n\n\n<p>J.J. Toothman (00:13:12) &#8211; So a contract means you&#8217;re you&#8217;re you&#8217;re like you&#8217;re kind of embedded, so you&#8217;re a full time employee and you&#8217;re your government contractor working on a contract that, you know, a company like Raytheon or Dell or Booz Allen or Lockheed Martin has with the federal government to deliver services abilities that are part of their requirements.</p>\n\n\n\n<p>Cory Miller (00:13:39) &#8211; Okay. Okay. That totally makes sense. So what was that catalytic moment when you&#8217;re like, Hey, I&#8217;m gonna do this for myself, I&#8217;m gonna start my agency?</p>\n\n\n\n<p>J.J. Toothman (00:13:46) &#8211; Yeah.</p>\n\n\n\n<p>Cory Miller (00:13:47) &#8211; So prompted that. Um.</p>\n\n\n\n<p>J.J. Toothman (00:13:50) &#8211; A couple of things. So I left NASA for a while and I went and worked for a company, a music ticketing startup called Ticket Fly.</p>\n\n\n\n<p>J.J. Toothman (00:13:58) &#8211; I helped them, like, basically create a network of websites for small independent music venues, um, and help those music venues talk about, you know, what shows were coming, how to buy tickets, you know, when the on sale dates were and all the other, you know, all that content that is basically all about converting into ticket sales. And so I was with was, you know, with them when they were really small. And, you know, it was definitely the startup world and that was really exciting. It was also a bad time for my life. I just had like my my second child and like my work life balance was it was it was pretty bad. Um, you know, working at a small startup like that. So ended up going back to NASA. Um, you know, and just trying to, like, find my footing a little bit. I also wanted to leave California and move relocate back to the East Coast. And I knew that was, you know, being in a place, a large organization like that would offer some flexibility like that.</p>\n\n\n\n<p>J.J. Toothman (00:15:05) &#8211; Um, but then, you know, I would say around a decade, you know, ten years ago. I started having this, you know, I started having that entrepreneurial itch again. I started thinking about, like, how fun it was to, you know, move fast at ticket fly and wanted that that feeling again. And so I started, you know, I explored a couple of like side hustles, you know, some small little independent web projects. One of them was like a newsletter to help families spend more time outdoors. And they didn&#8217;t really take off. They didn&#8217;t really get get some traction. And what I mean by that, it wasn&#8217;t necessarily traction from a, you know, where we&#8217;re making revenue or gaining customers. We were just like just the balance of of, you know, trying to do do that type of initiative while, you know, having a full time job and also like, you know, having a growing family and all that kind of stuff. And then in but was it was clear that.</p>\n\n\n\n<p>J.J. Toothman (00:16:06) &#8211; You know, I was exploring something. And, you know, again, that desire to to like be in more, you know, control of of of my destiny, so to speak, and be entrepreneurial is something I just couldn&#8217;t I couldn&#8217;t get rid of completely. And it wasn&#8217;t happening within big companies like Dell in the way that I wanted to know. I really wanted to be, you know, in control of a lot of decisions that wasn&#8217;t in control of, um, and, you know, that&#8217;s why people start their own things and, you know, be founders of companies. And, you know, I had dinner with a friend of mine who was also in the government contracting space. He&#8217;s like, you know, you&#8217;ve been thinking about. And he told me he&#8217;s like, You&#8217;ve been thinking about all these little product ideas, these digital product ideas, like, you know, just just start a services business, you know, like and that will satisfy your need or the desire. You have to be entrepreneurial and, you know, like, you know, look at balance sheets and think about marketing and, you know, attracting talent and retaining talent and stuff like that.</p>\n\n\n\n<p>J.J. Toothman (00:17:12) &#8211; And he was right. He was like, You know what? That&#8217;s a really good idea. And within 120 days, I&#8217;d like set the wheels in motion to, you know, start Lone Rock Point. Um, and, you know, we, we went from there. So it started in the fall of I started the company in the fall of 2016. It was just me for, you know, a year. And then it was like me and a virtual assistant for like another year. And I, you know, I started under this like this umbrella of like, digital transformation consulting. At the time, I was doing a lot of work with the public sector around cloud transformations. So people were were operating applications and on premise data centers and starting to make that migration into things like Amazon Web Services. And so working out a lot of change management type type projects associated with that. And it all kind of just fit under this like big umbrella of digital and cloud transformation, which, to be totally honest with you, is, is is too vague and too broad and borderline meaningless.</p>\n\n\n\n<p>J.J. Toothman (00:18:25) &#8211; You know, if you ask ten different people what digital transformation is, you&#8217;re probably going to get ten different definitions of it. Yeah. And so it&#8217;s really hard to like, you know, grow a services business out that way is really just like me being a consultant at that point. Um, and it wasn&#8217;t until like started niching down into, you know what, like let&#8217;s just do this WordPress thing, you know, was I was delivering, um, you know, whitepapers and providing analysis of like how what people should do with like their, their inventory of web applications and advising them on what is and what platforms they should be using. And a lot of times ended up started like you know, making recommendations around WordPress oriented applications, sometimes just building WordPress sites, sometimes using WordPress as an application framework. Um, in over the, in the time I&#8217;ve been with NASA. I&#8217;ve used WordPress with them and a lot of different ways. We&#8217;ve done it in a WordPress network multi-site kind of way for allowing smaller NASA missions and programs and projects to, you know, have their own websites where they all communicate what they&#8217;re up to and what their findings are and share what they learned with, you know, with, with interested stakeholders and visitors to their sites.</p>\n\n\n\n<p>J.J. Toothman (00:19:55) &#8211; Um, there, there&#8217;s been some internal things where needed to like communicate various services as it had to various corners of the agency. So we did like a WooCommerce thing where people can go to a web application, a website and just pick what, what services they want. Like I need, I need some Amazon cloud storage or processing or, you know, EC2 units. And they could apply, they could add all those things to a cart and then say, check out and, you know, check, you know, do a checkout with that and just start getting services provided to them that way. So um, and then, you know, over time it just became clear that like, this is, I keep recommending this, like there&#8217;s growth opportunity for me here and then, you know, niching down to being like, we&#8217;re going to be a WordPress, a more traditional WordPress agency is really when, you know, the growth started happening and the opportunity started becoming a little bit. And it isn&#8217;t just like strategic consulting, it became the execution part of it as well.</p>\n\n\n\n<p>J.J. Toothman (00:21:00) &#8211; And the tactics part of it too, and the tactics and execution. We&#8217;re all oriented for the most of the time.</p>\n\n\n\n<p>Cory Miller (00:21:06) &#8211; Yeah, I&#8217;d love to hear these stories because you got, you know, a big career in enterprise and public sector, you know, with your Raytheon and NASA days and then entrepreneurial hit. Okay, want to do this and then seeing you know when you say NASA and WordPress, it just seems like those things should always go together, you know, and that&#8217;s what really compelling to me is seeing WordPress more on the public sector enterprise. And now there&#8217;s really big institutions in in the US federal government anyway, probably around the world too, but that are starting to use WordPress more and more and leverage it and see that opportunity. Um, so I love kind of how those intersection of things happen. So that lone rock point would kind of exist and grow and then you hit your I was going to ask the question when the WordPress come into play, but you pretty much answered it. So like your 2 or 3 or so, it seems like, hey, we&#8217;re going to drill down.</p>\n\n\n\n<p>Cory Miller (00:22:04) &#8211; And then when you mention WooCommerce that like that use case for an internal tool within a big organization like that to procure and get resources and things, that&#8217;s so compelling. You know, most of my.</p>\n\n\n\n<p>J.J. Toothman (00:22:17) &#8211; Career that like, people just wanted that checkout expert, They wanted that. They wanted that experience of like, I want X, Y and Z, I want to add it to the cart and I want to tell you that I want it. And we just, you know, WooCommerce has that option to, you know, just do check payments, right? Which removes the credit card processing out of it. And so we kind of adapted that to, all right, we&#8217;re going to send this order to somebody who can fulfill that order via this WooCommerce WordPress system. Um, and, you know, it&#8217;s, it&#8217;s, it&#8217;s, you know, it&#8217;s using the WordPress ecosystem at its best, like using it almost kind of as Legos and want this part of it. I want that part of it. I want to, I want to glue them together in this way.</p>\n\n\n\n<p>J.J. Toothman (00:22:58) &#8211; And it&#8217;s, you know, kind of a no code kind of way around WordPress to solve some, you know, some very simple, narrow use cases. But, you know, my, my journey with WordPress, you know, starts way back in 2007 at my first stint with at Ames Research Center. Um, you know, I was working with all these various scientists and researchers and they just like need a place to like publish my, my research findings and publish my data and, and they, they all one, they all had the same, um. You know, requirements and needs. At the highest level, it&#8217;s like I just need a place to put it. And I want to I want to be able to manage it myself in a way. And I don&#8217;t know. I don&#8217;t know how to don&#8217;t know how to code. I don&#8217;t know. I don&#8217;t have anybody on my team who knows HTML. And so that, you know, that basically introduced the concept of like content management systems into all this back in 2007.</p>\n\n\n\n<p>J.J. Toothman (00:24:03) &#8211; And, you know, we were looking at things like wikis at the time and, and then discovered WordPress and around that and just the user experience of someone just, you know, managing their content with that type of, you know, WordPress, CMS, this is like version 2.0 of WordPress, you know, back when they added pages in addition to posts was the real thing. That&#8217;s like, oh, this is what this satisfies what everyone&#8217;s looking for. They want an easy place just to log into. And you know, they all some of them wanted to start blogging. Some of them wanted to start blogging without knowing that they wanted to start blogging. They just want to share what they know and tell their stories. Um, and then back in 2007, I created this is also the Web 2.0 era where, you know, your blogging was, was kind of heavy in the lexicon back then. And I was I did one of NASA&#8217;s first official public blogs on WordPress and, and kind of grew with WordPress, you know, from there that led to the ticket fly work.</p>\n\n\n\n<p>J.J. Toothman (00:25:13) &#8211; And so WordPress was kind of always in my DNA, even when wasn&#8217;t, you know, it wasn&#8217;t like a defined part of what I was, you know, of my, my role description. But my role was in some cases to be strategic and provide advice and provide some roadmaps. And, you know, how do we do things? Give us some give us some guidance here. And a lot of times just said like, well, you don&#8217;t have to create a custom bespoke application for this. Just use a content management system like WordPress, you know, teach your users how to how to how to manage using WordPress themselves. And and you go from there. So and the WordPress ecosystem is what makes all that happen mean there&#8217;s all these different, you know, there&#8217;s all these different plugins and themes and you just kind of integrate it all together, um, you know, in a unique way. And you have a great solution architecture, depending on how you put it together.</p>\n\n\n\n<p>Cory Miller (00:26:08) &#8211; What you&#8217;re talking kind of way back.</p>\n\n\n\n<p>Cory Miller (00:26:11) &#8211; But you know, remember a lot of the solutions that we have now didn&#8217;t exist. So, you know, big organizations were having to do like the the internal resourcing that you&#8217;re talking about. They&#8217;d have to custom code those things or build them because they didn&#8217;t exist off the shelf. Then you fast forward and you go, you could take WooCommerce save. I can&#8217;t even imagine how much time to kind of do git to feature like, you know, par with that and then take that open source solution and then utilize it and just customize with a with a great agency like you all to figure out what their exact needs are. So it&#8217;s it&#8217;s great to see how everything has fast forward to. Well, we touched on this. I know we&#8217;re going to have more conversations down the road. And and I want to talk more about the public sector and enterprise. And I know we&#8217;re talking and we&#8217;re going to have some great conversations in the next couple of months about this, because I know you&#8217;re passionate about it, about the public sector and bringing WordPress to the public sector, but we&#8217;ll save that for another time.</p>\n\n\n\n<p>Cory Miller (00:27:07) &#8211; I don&#8217;t want to spoil too much of that, but I appreciate so much the journey and what you&#8217;re doing. So thank you for telling us that. That&#8217;s, that&#8217;s that&#8217;s incredible. Um, okay. What are you excited about today? What are you excited about today and the future going forward and what you&#8217;re doing with the agency and your team and the work you&#8217;re doing?</p>\n\n\n\n<p>J.J. Toothman (00:27:27) &#8211; Yeah. So a few years ago, the government, Pervez passed a Congress passed an act called the Integrated Digital Experience Act. And within that act is basically it tells all these federal agencies how to modernize their website. So, you know. Obvious things like improve accessibility. They have to be accessible. They have to work on mobile. They. They. You have to have like good search. They should. People should be able to find content there. They also need to be based on user research and user needs. So they&#8217;re all logical things within. You know, public sector and it&#8217;s all so I&#8217;m really excited about that. Be something that initiates or triggers a lot of the work that I&#8217;ve been doing for the last couple of years.</p>\n\n\n\n<p>J.J. Toothman (00:28:26) &#8211; And so for the last few years I&#8217;ve been working on a web modernization project with NASA. It exists for a couple of reasons. It exists. One, because of that idea act. It also exists because NASA has a couple of thousand websites and they don&#8217;t want there to be a couple of thousand websites. They want all that information in one website. So we&#8217;ve been doing a lot of work with them. You know, that started back in kind of mid 2000, late 2000, and it started with, hey, what should be using for its main, you know, web source, major web properties. And so I spent a year taking a look at the landscape of you know, of all the available CMS&#8217;s that are out there, you know, Drupal source site, Adobe Experience manager and then some new newer ones like Wagtail. And then there&#8217;s even we even took a look at, you know, some of the software as a service type solutions like Contentful and just trying to understand the pros and cons of Elda.</p>\n\n\n\n<p>J.J. Toothman (00:29:38) &#8211; And so we spent a year taking a look at the CMS landscape and acquiring data for it, acquiring evidence of it. And while in my heart, you know, being a WordPress guy, I knew like, you know, WordPress makes a lot of sense here. You know, we it&#8217;s still there was a lot of benefit for me to kind of like take a look at like what, you know, all the driving factors for making a decision like that were, um, and you know at the end of it WordPress like was the, the solution, the CMS that NASA wanted to invest in for the future. And that&#8217;s what we&#8217;ve been working on for the last couple of years. So for the last couple of years we&#8217;ve been working on a couple of big. Uh, NASA WordPress projects. And a lot of, you know, I talked a lot about how I&#8217;ve been using WordPress and a no code kind of way. This is not a no code kind of way. There was a lot of Gutenberg custom development here.</p>\n\n\n\n<p>J.J. Toothman (00:30:34) &#8211; It&#8217;s the, it&#8217;s, it&#8217;s the project that has everything like, you know, an emphasis on SEO, an emphasis on accessibility. There&#8217;s a new atomic design system that was created for this. And so the seeing the marriage of an atomic design system and Gutenberg, you know, come to bring all that stuff to life has been really, really exciting. And I&#8217;m excited to like for, for, you know, people, you know, interested in what NASA is up to and people interested in WordPress to see the fruits of all this labor that we&#8217;ve been working on for the last couple of years and it&#8217;s all coming in the next few months. And yeah, so I&#8217;m really excited to share that with you and share that with other people in the community.</p>\n\n\n\n<p>Cory Miller (00:31:19) &#8211; Yeah, that&#8217;s excellent. So I want to take just a minute in sidebar because you did this whole year, you know, one of seeing what&#8217;s out there, seeing what the options are. And I love that you&#8217;ve done some deep, deep research for big organizations trying to make a big, important decision on it.</p>\n\n\n\n<p>Cory Miller (00:31:36) &#8211; Um, I&#8217;m just curious what we&#8217;re couple takeaways. As you just surveyed the landscape. You know, we love WordPress. We understand, you know, we, we support WordPress, but, but we know that there&#8217;s a lot of stuff out there. Um, but I&#8217;m curious, what, what did the landscape look like? Where were some of the things you saw when you looked at the other platforms you mentioned like Wagtail? I hadn&#8217;t heard that one before. I&#8217;ve heard of Contentful for instance, and of course Drupal. But what, what were a couple of the takeaways on that year of investigation out there?</p>\n\n\n\n<p>J.J. Toothman (00:32:08) &#8211; So the I, I would say that there are two major, maybe three major differentiators that separated WordPress from the rest from the rest of the pack. If you will. Um, you know, there&#8217;s a lot of great content management systems out there. You know, they all do the same thing or try to do people the same. They try to make it easy for people to publish information onto the web and make it easy for others to consume it.</p>\n\n\n\n<p>J.J. Toothman (00:32:35) &#8211; But the differentiators from WordPress versus the other CMS that we were looking at were number one. A lot of again, it had a lot of it had to do with the ecosystem. WordPress was the only CMS that had real time analysis tools around SEO. So and accessibility to kind of try to improve those situations before the point of publishing. So Yoast is the obvious example. So Yoast, you know, we&#8217;ve all been exposed to Yoast. Yoast allows you to allows the content creator user to be authoring and editing content and getting some real time analysis about how friendly or compatible, whatever the term you want to use it is before the point of publish. There&#8217;s accessibility tools out there that do the same things that are kind of integrated within the WordPress Admin WordPress dashboard that allow that content creator user to like, you know, when it&#8217;s in draft format to analyze. Do I have accessibly accessible content that I&#8217;m about to publish in here and make live other CMS didn&#8217;t have that baked in. You know, there&#8217;s WordPress plugins that do these things.</p>\n\n\n\n<p>J.J. Toothman (00:33:51) &#8211; Um, we could even, we even have the ability to prevent publishing until certain excessively thresholds and SEO optimization thresholds are met. That was really, really attractive. All the most of the majority of the other solutions are you publish it first it&#8217;s live and then you can go back and check it and then you kind of have to retrofit it. I&#8217;ve been working in enterprises enough to know that that doesn&#8217;t happen once it&#8217;s published, Once it&#8217;s out there, people are generally going to move on. They&#8217;re not going to do the analysis of like, All right, how do I go back and improve this thing? So you really got to you really got to catch those things early and often. Um, you know, up front in the, in the content publishing lifecycle. So that was one of the big differentiators was that and that again, that&#8217;s all a product of the WordPress ecosystem and the innovation that comes out of that ecosystem. The other one was just kind of like the resources around this. So we all, you know, you can take for a grain of salt like, you know, the the whole thing about, you know, WordPress powers, 40% of the web, you know, that kind of stuff.</p>\n\n\n\n<p>J.J. Toothman (00:34:57) &#8211; But there is some byproduct of that. And that is there&#8217;s a lot of people using it. There&#8217;s a lot of people building it. There&#8217;s a lot of people developing on it. There&#8217;s a lot of people extending on. There&#8217;s a lot of knowledge being shared around that. One of the things I did was I went in the stack overflow and compared WordPress with other CMS&#8217;s and just being like, How many conversations are happening around this thing, you know, that we&#8217;re looking at? And it was, you know, what you expected, the ability for, you know, to be able to. Try to solve a problem by getting by by, you know, interfacing or sponging up knowledge that was already contributed back in some way, you know, via via StackOverflow or, you know, other places on the Web, other groups, Slack channels, etcetera, that exists in WordPress in a way that it doesn&#8217;t exist in these other, you know, CMS products. You know, the if you want to if you want to get developer knowledge around Adobe Experience Manager, you for for the most part there are some Adobe experience manager specialists out there, but for the most part you got to go to Adobe for it.</p>\n\n\n\n<p>J.J. Toothman (00:36:02) &#8211; Um. Uh, you know, same thing with sorts. There&#8217;s not there&#8217;s not a huge community of sort site developers out there. So for a place like NASA, you know, resource acquisition becomes a problem. Like, where are they going to find talent for that? Yeah. And you know, again, WordPress, you know, kind of is head and shoulders above the rest in that area. Um, and then, you know, this whole concept of WordPress is for everyone to like that. That rang true in all this research too. Like it&#8217;s more than just developer community. There&#8217;s user communities out there that are also sharing their knowledge here. Um, you know, there&#8217;s all these kinds of like, there&#8217;s, there&#8217;s solutions for learning WordPress that are provided by the communities and multiple companies with the community that add a lot of value within the equals. So it&#8217;s not just like the software ecosystem, but it&#8217;s like, you know, the kind of service ecosystem to that exist within WordPress. Um, and then honestly, like, you know, portability matters to, um, you know, there&#8217;s, for the most part, like I really just wanted public sector to adopt open source.</p>\n\n\n\n<p>J.J. Toothman (00:37:11) &#8211; You know, that&#8217;s the first decision I want, I want them to do is just, just, you know, make an open source decision. And then you&#8217;ve done that. You know, you&#8217;re in a good you&#8217;re in a better place than picking a commercial, you know, bespoke solution. You know, And then, you know, once you get past that hurdle now, you know, the obvious open source can cannot exist. And you know, the user experience of WordPress and that whole concept of WordPress being for everyone and being considering everyone, depending on who you are, really rings true and is a differentiator as well.</p>\n\n\n\n<p>Cory Miller (00:37:50) &#8211; Well, that&#8217;s excellent. And that rings true. You know, I&#8217;m curious because as I talked to more enterprise agencies, all of you out there in the world interfacing with clients, with their needs, what they actually are trying to get done. That&#8217;s really, really great to hear and it&#8217;s reflective of the community. I think sometimes they&#8217;ve been in the community like you as long as we have.</p>\n\n\n\n<p>Cory Miller (00:38:10) &#8211; I take some of those things for granted. So I think that&#8217;s that&#8217;s excellent. Well, JJ, thanks so much for the time today. I know you just got back from a big trip and you&#8217;ve got work to pile out, but I appreciate you coming on the podcast and sharing your agency journey, and I look forward to our next conversation, sharing the good work you&#8217;re doing with WordPress in our world. That too.</p>\n\n\n\n<p>J.J. Toothman (00:38:31) &#8211; Corey Thanks for having me.</p>\n\n\n\n<p>Cory Miller (00:38:34) &#8211; All right. Thanks, everybody, for being here today. And we&#8217;ll talk to you. We&#8217;ll see. We&#8217;ll talk to you. We&#8217;ll hear from you. They&#8217;ll listen to us soon.</p>\n<p>This article was published at Post Status — the community for WordPress professionals.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 19 Aug 2023 03:00:33 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Cory Miller\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:49;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:68:\"Post Status: WordPress 6.3 RC1 • Field Guide • Gutenberg Phase 3\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:71:\"https://poststatus.com/wordpress-6-3-rc1-field-guide-gutenberg-phase-3/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:71:\"https://poststatus.com/wordpress-6-3-rc1-field-guide-gutenberg-phase-3/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:25778:\"<h2 class=\"wp-block-heading\" id=\"h-this-week-at-wordpress-org-april-3-2023\">This Week at WordPress.org (July 17, 2023)</h2>\n\n\n<div class=\"has-background has-theme-palette-8-background-color wp-block-post-excerpt\"><p class=\"wp-block-post-excerpt__excerpt\">WordPress 6.3 will arrive on August 8, so there isn&#8217;t much time left for testing compatibility. Whether you are a plugin or theme maintainer or managing clients&#8217; websites, now is the time to test the latest features. Mike Schroder shares their most anticipated feature with auto-rollbacks coming.Collaborative editing is coming to WordPress, but what might&hellip; </p></div>\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<div class=\"wp-block-kadence-infobox kt-info-box_94d1bd-77\"><div class=\"kt-blocks-info-box-link-wrap kt-blocks-info-box-media-align-left kt-info-halign-left\"><div class=\"kt-blocks-info-box-media-container\"><div class=\"kt-blocks-info-box-media kt-info-media-animate-none\"><div class=\"kadence-info-box-icon-container kt-info-icon-animate-none\"><div class=\"kadence-info-box-icon-inner-container\"><span class=\"kadence-dynamic-icon\"></span></div></div></div></div><div class=\"kt-infobox-textcontent\"><h2 class=\"kt-blocks-info-box-title\"> WP 6.3, Field Guide, Phase 3</h2><p class=\"kt-blocks-info-box-text\"><br />  <a href=\"https://wordpress.org/news/2023/07/wordpress-6-3-release-candidate-1/\">WordPress 6.3 Release Candidate 1</a><br /><br />  <a href=\"https://wordpress.org/news/2023/07/episode-60-sneak-a-peek-at-wordpress-6-3-with-special-guest-mike-schroder/\">Sneak a Peek at WP</a><a href=\"https://wordpress.org/news/2023/07/episode-60-sneak-a-peek-at-wordpress-6-3-with-special-guest-mike-schroder/\"> 6.3 with Mike Schroder</a><br /><br /> &#x200d;  <a href=\"https://make.wordpress.org/test/2023/06/27/help-test-wordpress-6-3/\">Help Test WordPress 6.3</a><br /><br />3&#x20e3; <a href=\"https://make.wordpress.org/core/tag/phase-3/\">Gutenberg Phase 3</a><br /><br />  <a href=\"https://make.wordpress.org/core/2023/07/18/wordpress-6-3-field-guide/\">WordPress 6.3 Field Guide</a><br />><br /></a><br /><br />><br /></a><br /><br /></p></div></div></div>\n\n\n\n<div class=\"wp-block-kadence-spacer aligncenter kt-block-spacer-_b57166-6e\"><div class=\"kt-block-spacer kt-block-spacer-halign-center\"><hr class=\"kt-divider\" /></div></div>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-news\"><a href=\"https://wordpress.org/news\">News</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://wordpress.org/news/2023/07/wordpress-6-3-release-candidate-1/\">WordPress 6.3 Release Candidate 1</a></li>\n\n\n\n<li><a href=\"https://wordpress.org/news/2023/07/episode-60-sneak-a-peek-at-wordpress-6-3-with-special-guest-mike-schroder/\">WP Briefing: Episode 60: Sneak a Peek at WordPress 6.3 with Special Guest Mike Schroder</a></li>\n\n\n\n<li><a href=\"https://wordpress.org/news/2023/07/designed-with-wordpress/\">Designed with WordPress</a></li>\n</ul>\n\n\n\n<div class=\"wp-block-kadence-spacer aligncenter kt-block-spacer-_8f6276-eb\"><div class=\"kt-block-spacer kt-block-spacer-halign-center\"><hr class=\"kt-divider\" /></div></div>\n\n\n\n<div class=\"wp-block-columns is-layout-flex wp-container-47 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<h2 class=\"wp-block-heading\">WordPress 6.3</h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/polyglots/2023/07/18/wordpress-6-3-ready-to-be-translated/\">WordPress 6.3 ready to be translated</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/19/wordpress-6-3-accessibility-improvements/\">WordPress 6.3 Accessibility Improvements</a></li>\n\n\n\n<li><a href=\"https://wordpress.org/news/2023/07/wordpress-6-3-release-candidate-1/\">WordPress 6.3 Release Candidate 1</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/19/wordpress-6-2-release-candidate-phase-2/\">WordPress 6.3 Release Candidate Phase</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/13/improvements-to-the-metadata-api-in-wordpress-6-3/\">Improvements to the metadata API in WordPress 6.3</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/06/30/6-3-release-parties-schedule-and-hosts/\">6.3 Release Parties Schedule and hosts</a></li>\n\n\n\n<li><a href=\"https://wordpress.org/news/2023/06/wordpress-6-3-beta-2/\">WordPress 6.3 Beta 2</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/design/2023/05/25/wordpress-6-3-design-kickoff/\">WordPress 6.3 design kickoff</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/05/25/bug-scrub-schedule-for-6-3/\">Bug Scrub Schedule for WordPress 6.3</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/05/18/wordpress-6-3-planning-roundup/\">WordPress 6.3 Planning Roundup</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/05/18/roadmap-to-6-3/\">Roadmap to 6.3</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\">WordPress 6.4</h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2023/07/18/wordpress-6-4-whats-on-your-wishlist/\">WordPress 6.4: What’s on your wishlist?</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/06/05/wordpress-6-4-development-cycle/\">WordPress 6.4 Development Cycle</a></li>\n</ul>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<h3 class=\"wp-block-heading\">WordPress 6.3 Field Guide and Dev-Notes</h3>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2023/07/18/wordpress-6-3-field-guide/\">WordPress 6.3 Field Guide</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/17/introducing-the-block-selectors-api/\">Introducing the Block Selectors API</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/17/introducing-the-wordpress-command-palette-api/\">Introducing the WordPress Command Palette API</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/14/layout-updates-in-the-editor-for-wordpress-6-3/\">Layout updates in the editor for WordPress 6.3</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/17/social-icons-block-applied-colors-now-dynamically-update-based-on-theme-json-and-global-styles/\">Social Icons block: Applied colors now dynamically update based on theme.json and Global Styles</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/18/miscellaneous-editor-changes-in-wordpress-6-3/\">Miscellaneous Editor changes in WordPress 6.3</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/18/bundled-themes-dropping-internet-explorer-scripts-and-styles/\">Bundled themes dropping Internet Explorer scripts and styles</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/17/improvements-to-the-cache-api-in-wordpress-6-3/\">Improvements to the Cache API in WordPress 6.3</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/14/configuring-development-mode-in-6-3/\">Configuring development mode in 6.3</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/14/i18n-improvements-in-6-3/\">I18N Improvements in 6.3</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/13/image-performance-enhancements-in-wordpress-6-3/\">Image performance enhancements in WordPress 6.3</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/13/improvements-to-the-metadata-api-in-wordpress-6-3/\">Improvements to the metadata API in WordPress 6.3</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/14/wp_query-used-internally-in-get_pages/\">WP_Query used internally in get_pages()</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/14/registering-scripts-with-async-and-defer-attributes-in-wordpress-6-3/\">Registering scripts with `async` and `defer` attributes in WordPress 6.3</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/11/new-in-6-3-rollback-for-failed-manual-plugin-and-theme-updates/\">New in 6.3: Rollback for failed manual plugin and theme updates</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/14/improved-caching-for-database-queries-in-wp_user_query/\">Improved Caching for Database Queries in WP_User_Query</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/18/miscellaneous-developer-changes-in-wordpress-6-3/\">Miscellaneous developer changes in WordPress 6.3</a></li>\n</ul>\n</div>\n</div>\n\n\n\n<div class=\"wp-block-columns is-layout-flex wp-container-52 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<div class=\"wp-block-columns is-layout-flex wp-container-50 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<h2 class=\"wp-block-heading\"><a href=\"https://make.wordpress.org/accessibility\">Accessibility</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/accessibility/2023/07/17/accessibility-team-meeting-agenda-july-21-2023/\">Accessibility Team Meeting Agenda: July 21, 2023</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-community\"><a href=\"https://make.wordpress.org/community\">Community</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/community/2023/07/13/recap-of-the-diverse-speaker-training-group-wpdiversity-amer-emea-on-july-12-2023/\">Recap of the Diverse Speaker Training group (#WPDiversity) AMER/EMEA on July 12, 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/community/2023/07/13/new-handbook-page-for-wordcamp-organizers-wordcamp-speaker-selection-for-content-and-diversity/\">New handbook page for WordCamp Organizers: WordCamp Speaker Selection (for content AND diversity)</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/community/2023/07/12/summary-of-the-q2-community-team-role-updates/\">Summary of the Q2 Community Team Role Updates</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-core\"><a href=\"https://make.wordpress.org/core\">Core</a> </h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2023/06/29/hallway-hangout-performance-improvements-for-wordpress-6-3/\">Hallway Hangout: Performance Improvements for WordPress 6.3</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/18/a-week-in-core-july-17-2023/\">A Week in Core – July 17, 2023</a></li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\">Phase 3 Ideations</h3>\n\n\n\n<ul>\n<li><a target=\"_blank\" href=\"https://make.wordpress.org/core/2023/07/03/real-time-collaboration/\" rel=\"noreferrer noopener\">Real-Time Collaboration</a></li>\n\n\n\n<li><a target=\"_blank\" href=\"https://make.wordpress.org/core/2023/07/04/workflows/\" rel=\"noreferrer noopener\">Workflows</a></li>\n\n\n\n<li><a target=\"_blank\" href=\"https://make.wordpress.org/core/2023/07/05/revisions/\" rel=\"noreferrer noopener\">Revisions</a></li>\n\n\n\n<li><a target=\"_blank\" href=\"https://make.wordpress.org/core/2023/07/07/media-library/\" rel=\"noreferrer noopener\">Media Library</a></li>\n\n\n\n<li><a target=\"_blank\" href=\"https://make.wordpress.org/core/2023/07/10/block-library/\" rel=\"noreferrer noopener\">Block Library</a></li>\n\n\n\n<li><a target=\"_blank\" href=\"https://make.wordpress.org/core/2023/07/12/admin-design/\" rel=\"noreferrer noopener\">Admin Design</a></li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-developer-blog\"><a href=\"https://developer.wordpress.org/news/\">Developer Blog</a></h3>\n\n\n\n<ul>\n<li><a href=\"https://developer.wordpress.org/news/2023/07/beyond-block-styles-part-1-using-the-wordpress-scripts-package-with-themes/\">Beyond block styles, part 1: using the WordPress scripts package with themes</a></li>\n\n\n\n<li><a href=\"https://developer.wordpress.org/news/2023/07/make-your-sites-typography-make-a-statement/\">Make your site’s typography make a statement</a></li>\n\n\n\n<li><a href=\"https://developer.wordpress.org/news/2023/07/whats-new-for-developers-july-2023/\">What’s new for developers? (July 2023)</a></li>\n\n\n\n<li><a href=\"https://developer.wordpress.org/news/2023/07/how-to-modify-theme-json-data-using-server-side-filters/\">How to modify theme.json data using server-side filters</a></li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-meetings\">Meetings</h3>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2023/07/19/editor-chat-agenda-july-19th-2023/\">Editor Chat Agenda: July 19th, 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/18/dev-chat-agenda-july-19-2023/\">Dev Chat agenda, July 19, 2023</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\">Design</h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/design/2023/07/03/design-share-jun-19-jun-30/\">Design Share: Jun 19–Jun&nbsp;30</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\"><a href=\"https://make.wordpress.org/docs\">Docs</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/docs/2023/07/18/call-for-volunteers-to-help-with-6-3-end-user-documentation/\">Call for volunteers to help with 6.3 end-user documentation</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/docs/2023/07/18/agenda-for-docs-team-bi-weekly-meeting-july-18-2023/\">Agenda for Docs Team bi-weekly meeting July 18, 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/updates/2023/07/17/documentation-team-update-july-17-2023/\">Documentation Team Update – July 17, 2023</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-hosting\"><a href=\"https://make.wordpress.org/hosting\">Hosting</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/hosting/2023/07/11/hosting-team-meeting-agenda-2023-07-12/\">Hosting Team meeting agenda 2023-07-12</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/hosting/2023/05/15/is-wordpress-compatible-with-php-8/\">Is WordPress compatible with PHP 8?</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\"><a href=\"https://make.wordpress.org/marketing\">Marketing</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/marketing/2023/06/26/notes-global-marketing-team-meeting-20-june-2023/\">Notes: Global Marketing Team meeting, 20 June 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/marketing/2023/06/19/notes-global-marketing-team-meeting-13-june-2023/\">Notes: Global Marketing Team meeting, 13 June 2023</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\"><a href=\"https://make.wordpress.org/meta\">Meta</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/meta/2023/06/20/make-team-dashboards/\">Make Team Dashboards</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/meta/2023/06/15/triaging-open-issues-on-trac-for-make-teams/\">Triaging open issues on Trac for Make Teams</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/meta/2023/06/13/new-filter-controls-discover-commercial-and-community-in-the-theme-and-plugin-directory/\">New Filter Controls: Discover “Commercial” and “Community” in the Theme and Plugin Directory</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/meta/2023/06/11/linking-to-supporting-orgs/\">Linking to Supporting Orgs</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/meta/2023/06/09/new-curation-filter-in-pattern-directory/\">New curation filter in Pattern Directory</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-mobile\"><a href=\"https://make.wordpress.org/mobile\">Mobile</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/updates/2023/07/12/mobile-team-update-july-12th/\">Mobile Team Update – July 12th</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/mobile/2023/04/11/contribute-to-the-future-of-the-wordpress-app/\">Contribute to the Future of the WordPress App</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/updates/2023/07/12/mobile-team-update-july-12th/\">Mobile Team Update – July 12th</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-openverse\"><a href=\"https://make.wordpress.org/openverse\">Openverse</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/openverse/2023/07/18/community-meeting-recap-2023-07-18/\">Community Meeting Recap (2023-07-18)</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/openverse/2023/07/17/last-week-openverse-2023-07-10-2023-07-17/\">A week in Openverse: 2023-07-10 – 2023-07-17</a></li>\n</ul>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<h2 class=\"wp-block-heading\" id=\"h-performance\"><a href=\"https://make.wordpress.org/performance/\">Performance</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2023/07/18/performance-chat-summary-18-july-2023/\">Performance Chat Summary: 11 July 2023</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-plugins\"><a href=\"https://make.wordpress.org/plugins\">Plugins</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/plugins/2023/06/29/plugin-review-team-update-the-next-phase-begins/\">Plugin Review Team Update: The next phase begins</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/updates/2023/07/17/plugin-review-team-17-jul-2023/\">Plugin Review Team: 17 Jul 2023</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-polyglots\"><a href=\"https://make.wordpress.org/polyglots\">Polyglots</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/polyglots/2023/07/19/weekly-polyglots-chat-july-19-2023-1300-utc/\">Weekly Polyglots Chat – July 19, 2023 (13:00 UTC)</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/polyglots/2023/07/18/wordpress-6-3-ready-to-be-translated/\">WordPress 6.3 ready to be translated</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-project\">Project</h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/project/2023/07/13/proposal-for-establishing-a-make-diversity-equity-inclusion-and-belonging-deib-team-within-the-wordpress-community/\">Proposal for Establishing a Make Diversity, Equity, Inclusion, and Belonging (“DEIB”) Team within the WordPress Community</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\">Support</h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/support/2023/06/wp-contributor-mentorship-program-support-team-edition/\">WP Contributor Mentorship Program: Support team edition</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\"><a href=\"https://make.wordpress.org/sustainability\">Sustainability</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/sustainability/2023/07/14/sustainability-chat-summary-july-14-2023/\">Sustainability Chat Summary, July 14, 2023</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-test\"><a href=\"https://make.wordpress.org/test\">Test</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/test/2023/06/27/help-test-wordpress-6-3/\">Help Test WordPress 6.3</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-theme\"><a href=\"https://make.wordpress.org/theme\">Theme</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/updates/2023/07/12/themes-team-update-july-12-2023/\">Themes team update July 12, 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/themes/2023/07/13/themes-team-meeting-notes-july-11-2023/\">Themes Team Meeting Notes –&nbsp;July 11, 2023</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-training\"><a href=\"https://make.wordpress.org/training\">Training</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://learn.wordpress.org/learn-wordpress-july-2023-newsletter/\">Learn WordPress July 2023 Newsletter</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/training/2023/07/10/training-team-2023-half-year-review/\">Training Team 2023 Half Year Review</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/training/2023/07/08/next-steps-for-github-updates/\">Next steps for GitHub updates</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/training/2023/07/08/announcement-updates-to-team-meeting-times/\">Announcement: Updates to team meeting times</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/training/2023/07/07/project-thread-learning-pathways-on-learn-wordpress/\">Project Thread: Learning Pathways on Learn WordPress</a></li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-tutorials\"><a href=\"https://learn.wordpress.org/tutorials\">Tutorials</a></h3>\n\n\n\n<ul>\n<li><a href=\"https://learn.wordpress.org/tutorial/it-choosing-and-installing-a-theme/\">Scegliere e installare un tema</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/tutorial/7-tips-to-improve-website-security/\">7 Tips to improve website security</a></li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-online-workshops\">Online Workshops</h3>\n\n\n\n<ul>\n<li><a href=\"https://learn.wordpress.org/?meeting=testing-wordpress-6-3\">Testing WordPress 6.3</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=come-join-the-wordpress-training-team-4\">Come join the WordPress Training Team!</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=how-to-validate-content-feedback-for-the-wordpress-training-team-3\">How to validate content feedback for the WordPress Training Team</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=how-to-validate-content-feedback-for-the-wordpress-training-team-2\">How to validate content feedback for the WordPress Training Team</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=mentorship-program-introduction-to-the-wordpress-open-source-project\">Mentorship Program: Introduction to the WordPress Open Source Project</a></li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-courses\"><a href=\"https://learn.wordpress.org/courses\">Courses</a></h3>\n\n\n\n<ul>\n<li><a href=\"https://learn.wordpress.org/course/developing-with-the-wordpress-rest-api/\">Introduction to developing with the WordPress REST API</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\"><a href=\"https://make.wordpress.org/tv\">WordPress TV</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/tv/2023/06/15/enhancing-slide-management-for-video-publications/\">Enhancing Slide Management for Video Publications</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\">WordCamp Central</h2>\n\n\n\n<ul>\n<li><a href=\"https://central.wordcamp.org/news/2023/07/wordcamp-dhaka-2023-has-been-cancelled/\">WordCamp Dhaka 2023 Has Been Cancelled</a></li>\n\n\n\n<li><a href=\"https://central.wordcamp.org/news/2023/07/wordcamp-rochester-is-back/\">WordCamp Rochester is Back!</a></li>\n\n\n\n<li><a href=\"https://central.wordcamp.org/news/2023/07/wordcamp-san-jose-2023-looking-for-speakers-and-sponsors/\">WordCamp San José 2023: Looking For Speakers And Sponsors!</a></li>\n\n\n\n<li><a href=\"https://central.wordcamp.org/news/2023/06/wordcamp-finland-back-to-tampere-with-educational-insightful-and-thought-provoking-talks/\">WordCamp Finland: back to Tampere with educational, insightful and thought-provoking talks</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-wptv\">WPTV</h2>\n\n\n\n<ul>\n<li><a href=\"https://wordpress.tv/category/year/2022/\">Latest WordPress TV videos</a></li>\n</ul>\n</div>\n</div>\n</div>\n</div>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-related-news\">Related News:</h2>\n\n\n\n<ul>\n<li><a href=\"https://blog.jquery.com/2023/05/11/jquery-3-7-0-released-staying-in-order/\">jQuery 3.7.0</a></li>\n\n\n\n<li><a href=\"https://nodejs.org/en/blog/release/v20.2.0\">Node v20.2.0 released</a></li>\n\n\n\n<li><a href=\"https://www.php.net/archive/2023.php#2023-07-06-1\">PHP 8.3.0 Alpha 3 available for testing</a></li>\n\n\n\n<li><a href=\"https://www.php.net/archive/2023.php#2023-05-11-1\"></a><a href=\"https://www.php.net/archive/2023.php#2023-07-06-2\">PHP 8.2.8 Released!</a></li>\n\n\n\n<li><a href=\"https://www.php.net/archive/2023.php#2023-07-06-3\">PHP 8.1.21 Released!</a></li>\n\n\n\n<li><a href=\"https://github.com/PHPMailer/PHPMailer/releases/tag/v6.8.0\">PHPMailer 6.8.0</a></li>\n\n\n\n<li><a href=\"https://262.ecma-international.org/\">TC39</a></li>\n\n\n\n<li><a href=\"http://github.com/composer/composer/releases/tag/2.5.8\">Composer 2.5.8</a></li>\n</ul>\n\n\n\n<p class=\"has-theme-palette-7-background-color has-background\">Thanks for reading our WP dot .org roundup! Each week we are highlighting the news and discussions coming from the good folks making WordPress possible. If you or your company create products or services that use WordPress, you need to be engaged with them and their work. Be sure to share this resource with your product and project managers. <br /><br /><strong>Are you interested in giving back and contributing your time and skills to WordPress.org?</strong>   <a href=\"https://wordpress.org/support/article/contributing-to-wordpress/\">Start Here ›</a><br /><br /><strong>Get our weekly WordPress community news digest</strong> — Post Status&#8217; <a href=\"https://poststatus.com/news/week-in-review/\">Week in Review</a> — covering the WP/Woo news plus significant writing and podcasts. It&#8217;s also available in <a href=\"https://poststatus.com/newsletter\">our newsletter</a>.  </p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<div class=\"wp-block-media-text alignwide is-stacked-on-mobile has-background\"><a href=\"https://poststatus.com/\"><img src=\"https://poststatus.com/wp-content/uploads/2021/09/vertical-post-status-logo-250.png\" alt=\"Post Status\" class=\"wp-image-85823 size-full\" /></a><div class=\"wp-block-media-text__content\">\n<p class=\"has-text-align-left has-normal-font-size\" id=\"h-get-ready-for-remote-work\">You — and <a href=\"https://poststatus.com/#Agency\">your whole team</a> can <a href=\"https://poststatus.com/#choose-membership\">Join Post Status</a> too!</p>\n\n\n\n<p class=\"has-text-align-left has-small-font-size\"><strong>Build your network. Learn with others. Find your next job — or your next hire.</strong> Read the <strong>Post Status</strong> <a href=\"https://poststatus.com/newsletter/\">newsletter</a>. <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/2709.png\" alt=\"✉\" class=\"wp-smiley\" /> Listen to <a href=\"https://poststatus.com/podcasts/\">podcasts</a>. <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f399.png\" alt=\"?\" class=\"wp-smiley\" /> Follow <a href=\"https://twitter.com/post_status/\">@Post_Status</a> <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f426.png\" alt=\"?\" class=\"wp-smiley\" /> and <a href=\"https://www.linkedin.com/company/post-status-llc/\">LinkedIn</a>. <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f4bc.png\" alt=\"?\" class=\"wp-smiley\" /></p>\n</div></div>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n<p>This article was published at Post Status — the community for WordPress professionals.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 19 Aug 2023 03:00:33 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"Courtney Robertson\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}}}}}}}}}}s:4:\"type\";i:128;s:7:\"headers\";O:48:\"WpOrg\\Requests\\Utility\\CaseInsensitiveDictionary\":1:{s:7:\"\0*\0data\";a:8:{s:6:\"server\";s:5:\"nginx\";s:4:\"date\";s:29:\"Thu, 07 Sep 2023 04:43:33 GMT\";s:12:\"content-type\";s:8:\"text/xml\";s:13:\"last-modified\";s:29:\"Thu, 07 Sep 2023 04:30:28 GMT\";s:4:\"vary\";s:15:\"Accept-Encoding\";s:15:\"x-frame-options\";s:10:\"SAMEORIGIN\";s:16:\"content-encoding\";s:2:\"br\";s:4:\"x-nc\";s:9:\"HIT ord 8\";}}s:5:\"build\";s:14:\"20230905061924\";}','no'),(303,'_transient_timeout_feed_mod_d117b5738fbd35bd8c0391cda1f2b5d9','1694105014','no'),(304,'_transient_feed_mod_d117b5738fbd35bd8c0391cda1f2b5d9','1694061814','no'),(305,'_transient_timeout_dash_v2_88ae138922fe95674369b1cb3d215a2b','1694105014','no'),(306,'_transient_dash_v2_88ae138922fe95674369b1cb3d215a2b','<div class=\"rss-widget\"><ul><li><a class=\'rsswidget\' href=\'https://wordpress.org/news/2023/09/episode-61-community-summit-all-at-washington-d-c/\'>WP Briefing: Episode 61: Community, Summit, all at  Washington D.C.</a></li><li><a class=\'rsswidget\' href=\'https://wordpress.org/news/2023/08/wordpress-6-3-1-maintenance-release/\'>WordPress 6.3.1 Maintenance Release</a></li></ul></div><div class=\"rss-widget\"><ul><li><a class=\'rsswidget\' href=\'https://wptavern.com/godaddy-retires-media-temple-brand\'>WPTavern: GoDaddy Retires Media Temple Brand</a></li><li><a class=\'rsswidget\' href=\'https://poststatus.com/community-summit-recaps-multilingual-documentation-performant-translations/\'>Post Status: Community Summit Recaps, Multilingual Documentation, Performant Translations</a></li><li><a class=\'rsswidget\' href=\'https://wptavern.com/podcast/89-scott-kingsley-clark-on-why-the-time-is-right-for-the-fields-api\'>WPTavern: #89 – Scott Kingsley Clark on Why the Time Is Right for the Fields API</a></li></ul></div>','no'),(307,'_site_transient_timeout_community-events-b002aba27767585db8736c87ee415da8','1694113073','no'),(308,'_site_transient_community-events-b002aba27767585db8736c87ee415da8','a:4:{s:9:\"sandboxed\";b:0;s:5:\"error\";N;s:8:\"location\";a:1:{s:2:\"ip\";s:11:\"172.69.94.0\";}s:6:\"events\";a:2:{i:0;a:10:{s:4:\"type\";s:6:\"meetup\";s:5:\"title\";s:71:\"WordPress Full Site Editing: Everything You Need to Know to get started\";s:3:\"url\";s:55:\"https://www.meetup.com/wordpressmumbai/events/295819965\";s:6:\"meetup\";s:23:\"Mumbai WordPress Meetup\";s:10:\"meetup_url\";s:39:\"https://www.meetup.com/wordpressmumbai/\";s:4:\"date\";s:19:\"2023-09-09 16:00:00\";s:8:\"end_date\";s:19:\"2023-09-09 18:00:00\";s:20:\"start_unix_timestamp\";i:1694255400;s:18:\"end_unix_timestamp\";i:1694262600;s:8:\"location\";a:4:{s:8:\"location\";s:13:\"Mumbai, India\";s:7:\"country\";s:2:\"in\";s:8:\"latitude\";d:19.152552;s:9:\"longitude\";d:72.855735999999993;}}i:1;a:10:{s:4:\"type\";s:8:\"wordcamp\";s:5:\"title\";s:20:\"WordCamp Mumbai 2023\";s:3:\"url\";s:33:\"https://mumbai.wordcamp.org/2023/\";s:6:\"meetup\";N;s:10:\"meetup_url\";N;s:4:\"date\";s:19:\"2023-10-28 00:00:00\";s:8:\"end_date\";s:19:\"2023-10-29 00:00:00\";s:20:\"start_unix_timestamp\";i:1698431400;s:18:\"end_unix_timestamp\";i:1698517800;s:8:\"location\";a:4:{s:8:\"location\";s:26:\"Mumbai, Maharashtra, India\";s:7:\"country\";s:2:\"IN\";s:8:\"latitude\";d:19.0507572;s:9:\"longitude\";d:72.829808700000001;}}}}','no'),(311,'_site_transient_timeout_browser_12cff7c401b241581c1f347ece73543d','1694678719','no'),(312,'_site_transient_browser_12cff7c401b241581c1f347ece73543d','a:10:{s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:9:\"116.0.0.0\";s:8:\"platform\";s:9:\"Macintosh\";s:10:\"update_url\";s:29:\"https://www.google.com/chrome\";s:7:\"img_src\";s:43:\"http://s.w.org/images/browsers/chrome.png?1\";s:11:\"img_src_ssl\";s:44:\"https://s.w.org/images/browsers/chrome.png?1\";s:15:\"current_version\";s:2:\"18\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;s:6:\"mobile\";b:0;}','no'),(313,'_site_transient_timeout_community-events-c22849b410fc5543faffd6537b41d251','1694117122','no'),(314,'_site_transient_community-events-c22849b410fc5543faffd6537b41d251','a:4:{s:9:\"sandboxed\";b:0;s:5:\"error\";N;s:8:\"location\";a:1:{s:2:\"ip\";s:11:\"172.69.86.0\";}s:6:\"events\";a:2:{i:0;a:10:{s:4:\"type\";s:6:\"meetup\";s:5:\"title\";s:71:\"WordPress Full Site Editing: Everything You Need to Know to get started\";s:3:\"url\";s:55:\"https://www.meetup.com/wordpressmumbai/events/295819965\";s:6:\"meetup\";s:23:\"Mumbai WordPress Meetup\";s:10:\"meetup_url\";s:39:\"https://www.meetup.com/wordpressmumbai/\";s:4:\"date\";s:19:\"2023-09-09 16:00:00\";s:8:\"end_date\";s:19:\"2023-09-09 18:00:00\";s:20:\"start_unix_timestamp\";i:1694255400;s:18:\"end_unix_timestamp\";i:1694262600;s:8:\"location\";a:4:{s:8:\"location\";s:13:\"Mumbai, India\";s:7:\"country\";s:2:\"in\";s:8:\"latitude\";d:19.152552;s:9:\"longitude\";d:72.855735999999993;}}i:1;a:10:{s:4:\"type\";s:8:\"wordcamp\";s:5:\"title\";s:20:\"WordCamp Mumbai 2023\";s:3:\"url\";s:33:\"https://mumbai.wordcamp.org/2023/\";s:6:\"meetup\";N;s:10:\"meetup_url\";N;s:4:\"date\";s:19:\"2023-10-28 00:00:00\";s:8:\"end_date\";s:19:\"2023-10-29 00:00:00\";s:20:\"start_unix_timestamp\";i:1698431400;s:18:\"end_unix_timestamp\";i:1698517800;s:8:\"location\";a:4:{s:8:\"location\";s:26:\"Mumbai, Maharashtra, India\";s:7:\"country\";s:2:\"IN\";s:8:\"latitude\";d:19.0507572;s:9:\"longitude\";d:72.829808700000001;}}}}','no'),(333,'elementor_1_elementor_updater_batch_6cf6cf2f8483e7c7dc9d2953c568','a:3:{i:0;a:1:{s:8:\"callback\";a:2:{i:0;s:31:\"Elementor\\Core\\Upgrade\\Upgrades\";i:1;s:16:\"_on_each_version\";}}i:1;a:1:{s:8:\"callback\";a:2:{i:0;s:31:\"Elementor\\Core\\Upgrade\\Upgrades\";i:1;s:27:\"_v_3_16_0_container_updates\";}}i:2;a:1:{s:8:\"callback\";a:2:{i:0;s:31:\"Elementor\\Core\\Upgrade\\Upgrades\";i:1;s:31:\"_v_3_17_0_site_settings_updates\";}}}','no'),(334,'elementor_log','a:1:{s:32:\"c0c8c1ca60fca26e6ecebf2ebbbbd778\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2023-09-21 18:09:40\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:47:\"Elementor data updater process has been queued.\";s:7:\"\0*\0meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:6:\"3.15.3\";s:2:\"to\";s:6:\"3.16.4\";}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2023-09-21 18:09:40\";}s:7:\"\0*\0args\";a:3:{s:4:\"meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:6:\"3.15.3\";s:2:\"to\";s:6:\"3.16.4\";}s:7:\"message\";s:47:\"Elementor data updater process has been queued.\";s:4:\"type\";s:4:\"info\";}}}','no'),(335,'_elementor_global_css','a:7:{s:4:\"time\";i:1695299981;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:5:\"empty\";i:0;b:0;s:3:\"css\";s:0:\"\";}','yes'),(336,'_elementor_assets_data','a:1:{s:3:\"css\";a:1:{s:7:\"widgets\";a:10:{s:5:\"image\";a:2:{s:7:\"content\";s:269:\"<style>/*! elementor - v3.21.0 - 08-05-2024 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>\";s:7:\"version\";s:6:\"3.21.5\";}s:15:\"navigation-menu\";a:2:{s:7:\"content\";s:0:\"\";s:7:\"version\";s:6:\"3.21.5\";}s:12:\"jkit_heading\";a:2:{s:7:\"content\";s:0:\"\";s:7:\"version\";s:6:\"3.21.5\";}s:11:\"text-editor\";a:2:{s:7:\"content\";s:719:\"<style>/*! elementor - v3.21.0 - 08-05-2024 */\n.elementor-widget-text-editor.elementor-drop-cap-view-stacked .elementor-drop-cap{background-color:#69727d;color:#fff}.elementor-widget-text-editor.elementor-drop-cap-view-framed .elementor-drop-cap{color:#69727d;border:3px solid;background-color:transparent}.elementor-widget-text-editor:not(.elementor-drop-cap-view-default) .elementor-drop-cap{margin-top:8px}.elementor-widget-text-editor:not(.elementor-drop-cap-view-default) .elementor-drop-cap-letter{width:1em;height:1em}.elementor-widget-text-editor .elementor-drop-cap{float:left;text-align:center;line-height:1;font-size:50px}.elementor-widget-text-editor .elementor-drop-cap-letter{display:inline-block}</style>\";s:7:\"version\";s:6:\"3.21.5\";}s:6:\"button\";a:2:{s:7:\"content\";s:0:\"\";s:7:\"version\";s:6:\"3.21.5\";}s:7:\"heading\";a:2:{s:7:\"content\";s:673:\"<style>/*! elementor - v3.21.0 - 08-05-2024 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style>\";s:7:\"version\";s:6:\"3.21.5\";}s:8:\"icon-box\";a:2:{s:7:\"content\";s:134:\"<link rel=\"stylesheet\" href=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">\";s:7:\"version\";s:6:\"3.21.5\";}s:11:\"star-rating\";a:2:{s:7:\"content\";s:2718:\"<style>/*! elementor - v3.21.0 - 08-05-2024 */\n@charset \"UTF-8\";.elementor-star-rating{color:#ccd6df;font-family:eicons;display:inline-block}.elementor-star-rating i{display:inline-block;position:relative;font-style:normal;cursor:default}.elementor-star-rating i:before{content:\"\\e934\";display:block;font-size:inherit;font-family:inherit;position:absolute;overflow:hidden;color:#f0ad4e;top:0;left:0}.elementor-star-rating .elementor-star-empty:before{content:none}.elementor-star-rating .elementor-star-1:before{width:10%}.elementor-star-rating .elementor-star-2:before{width:20%}.elementor-star-rating .elementor-star-3:before{width:30%}.elementor-star-rating .elementor-star-4:before{width:40%}.elementor-star-rating .elementor-star-5:before{width:50%}.elementor-star-rating .elementor-star-6:before{width:60%}.elementor-star-rating .elementor-star-7:before{width:70%}.elementor-star-rating .elementor-star-8:before{width:80%}.elementor-star-rating .elementor-star-9:before{width:90%}.elementor-star-rating__wrapper{display:flex;align-items:center}.elementor-star-rating__title{margin-inline-end:10px}.elementor-star-rating--align-right .elementor-star-rating__wrapper{text-align:right;justify-content:flex-end}.elementor-star-rating--align-left .elementor-star-rating__wrapper{text-align:left;justify-content:flex-start}.elementor-star-rating--align-center .elementor-star-rating__wrapper{text-align:center;justify-content:center}.elementor-star-rating--align-justify .elementor-star-rating__title{margin-inline-end:auto}@media (max-width:1024px){.elementor-star-rating-tablet--align-right .elementor-star-rating__wrapper{text-align:right;justify-content:flex-end}.elementor-star-rating-tablet--align-left .elementor-star-rating__wrapper{text-align:left;justify-content:flex-start}.elementor-star-rating-tablet--align-center .elementor-star-rating__wrapper{text-align:center;justify-content:center}.elementor-star-rating-tablet--align-justify .elementor-star-rating__title{margin-inline-end:auto}}@media (max-width:767px){.elementor-star-rating-mobile--align-right .elementor-star-rating__wrapper{text-align:right;justify-content:flex-end}.elementor-star-rating-mobile--align-left .elementor-star-rating__wrapper{text-align:left;justify-content:flex-start}.elementor-star-rating-mobile--align-center .elementor-star-rating__wrapper{text-align:center;justify-content:center}.elementor-star-rating-mobile--align-justify .elementor-star-rating__title{margin-inline-end:auto}}.last-star{letter-spacing:0}.elementor--star-style-star_unicode .elementor-star-rating{font-family:Arial,Helvetica,sans-serif}.elementor--star-style-star_unicode .elementor-star-rating i:not(.elementor-star-empty):before{content:\"★\"}</style>\";s:7:\"version\";s:6:\"3.21.5\";}s:9:\"icon-list\";a:2:{s:7:\"content\";s:135:\"<link rel=\"stylesheet\" href=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">\";s:7:\"version\";s:6:\"3.21.5\";}s:9:\"copyright\";a:2:{s:7:\"content\";s:0:\"\";s:7:\"version\";s:6:\"3.21.5\";}}}}','yes'),(399,'_transient_timeout_elementor_remote_info_api_data_3.18.0','1701886175','no'),(400,'_transient_elementor_remote_info_api_data_3.18.0','a:4:{s:9:\"timestamp\";s:10:\"1701840955\";s:14:\"upgrade_notice\";a:3:{s:7:\"version\";s:5:\"2.0.0\";s:7:\"message\";s:0:\"\";s:11:\"update_link\";s:0:\"\";}s:11:\"pro_widgets\";a:75:{i:0;a:4:{s:4:\"name\";s:5:\"posts\";s:5:\"title\";s:5:\"Posts\";s:4:\"icon\";s:15:\"eicon-post-list\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:1;a:4:{s:4:\"name\";s:9:\"portfolio\";s:5:\"title\";s:9:\"Portfolio\";s:4:\"icon\";s:18:\"eicon-gallery-grid\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:2;a:4:{s:4:\"name\";s:9:\"mega-menu\";s:5:\"title\";s:4:\"Menu\";s:4:\"icon\";s:15:\"eicon-mega-menu\";s:10:\"categories\";s:33:\"[\"pro-elements\",\"theme-elements\"]\";}i:3;a:4:{s:4:\"name\";s:4:\"form\";s:5:\"title\";s:4:\"Form\";s:4:\"icon\";s:21:\"eicon-form-horizontal\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:4;a:4:{s:4:\"name\";s:9:\"loop-grid\";s:5:\"title\";s:9:\"Loop Grid\";s:4:\"icon\";s:18:\"eicon-loop-builder\";s:10:\"categories\";s:33:\"[\"pro-elements\",\"theme-elements\"]\";}i:5;a:4:{s:4:\"name\";s:13:\"loop-carousel\";s:5:\"title\";s:13:\"Loop Carousel\";s:4:\"icon\";s:19:\"eicon-carousel-loop\";s:10:\"categories\";s:33:\"[\"pro-elements\",\"theme-elements\"]\";}i:6;a:4:{s:4:\"name\";s:7:\"gallery\";s:5:\"title\";s:7:\"Gallery\";s:4:\"icon\";s:23:\"eicon-gallery-justified\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:7;a:4:{s:4:\"name\";s:17:\"animated-headline\";s:5:\"title\";s:17:\"Animated Headline\";s:4:\"icon\";s:23:\"eicon-animated-headline\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:8;a:4:{s:4:\"name\";s:10:\"price-list\";s:5:\"title\";s:10:\"Price List\";s:4:\"icon\";s:16:\"eicon-price-list\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:9;a:4:{s:4:\"name\";s:11:\"price-table\";s:5:\"title\";s:11:\"Price Table\";s:4:\"icon\";s:17:\"eicon-price-table\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:10;a:4:{s:4:\"name\";s:8:\"flip-box\";s:5:\"title\";s:8:\"Flip Box\";s:4:\"icon\";s:14:\"eicon-flip-box\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:11;a:4:{s:4:\"name\";s:14:\"call-to-action\";s:5:\"title\";s:14:\"Call to Action\";s:4:\"icon\";s:20:\"eicon-image-rollover\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:12;a:4:{s:4:\"name\";s:14:\"media-carousel\";s:5:\"title\";s:14:\"Media Carousel\";s:4:\"icon\";s:20:\"eicon-media-carousel\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:13;a:4:{s:4:\"name\";s:15:\"nested-carousel\";s:5:\"title\";s:8:\"Carousel\";s:4:\"icon\";s:21:\"eicon-nested-carousel\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:14;a:4:{s:4:\"name\";s:9:\"countdown\";s:5:\"title\";s:9:\"Countdown\";s:4:\"icon\";s:15:\"eicon-countdown\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:15;a:4:{s:4:\"name\";s:13:\"share-buttons\";s:5:\"title\";s:13:\"Share Buttons\";s:4:\"icon\";s:11:\"eicon-share\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:16;a:4:{s:4:\"name\";s:10:\"blockquote\";s:5:\"title\";s:10:\"Blockquote\";s:4:\"icon\";s:16:\"eicon-blockquote\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:17;a:4:{s:4:\"name\";s:6:\"lottie\";s:5:\"title\";s:6:\"Lottie\";s:4:\"icon\";s:12:\"eicon-lottie\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:18;a:4:{s:4:\"name\";s:7:\"hotspot\";s:5:\"title\";s:7:\"Hotspot\";s:4:\"icon\";s:19:\"eicon-image-hotspot\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:19;a:4:{s:4:\"name\";s:13:\"paypal-button\";s:5:\"title\";s:13:\"PayPal Button\";s:4:\"icon\";s:19:\"eicon-paypal-button\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:20;a:4:{s:4:\"name\";s:14:\"code-highlight\";s:5:\"title\";s:14:\"Code Highlight\";s:4:\"icon\";s:20:\"eicon-code-highlight\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:21;a:4:{s:4:\"name\";s:14:\"video-playlist\";s:5:\"title\";s:14:\"Video Playlist\";s:4:\"icon\";s:20:\"eicon-video-playlist\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:22;a:4:{s:4:\"name\";s:8:\"template\";s:5:\"title\";s:8:\"Template\";s:4:\"icon\";s:19:\"eicon-document-file\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:23;a:4:{s:4:\"name\";s:13:\"stripe-button\";s:5:\"title\";s:13:\"Stripe Button\";s:4:\"icon\";s:19:\"eicon-stripe-button\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:24;a:4:{s:4:\"name\";s:16:\"progress-tracker\";s:5:\"title\";s:16:\"Progress Tracker\";s:4:\"icon\";s:22:\"eicon-progress-tracker\";s:10:\"categories\";s:40:\"[\"pro-elements\",\"theme-elements-single\"]\";}i:25;a:4:{s:4:\"name\";s:8:\"nav-menu\";s:5:\"title\";s:8:\"Nav Menu\";s:4:\"icon\";s:14:\"eicon-nav-menu\";s:10:\"categories\";s:33:\"[\"pro-elements\",\"theme-elements\"]\";}i:26;a:4:{s:4:\"name\";s:17:\"table-of-contents\";s:5:\"title\";s:17:\"Table of Contents\";s:4:\"icon\";s:23:\"eicon-table-of-contents\";s:10:\"categories\";s:33:\"[\"pro-elements\",\"theme-elements\"]\";}i:27;a:4:{s:4:\"name\";s:5:\"login\";s:5:\"title\";s:5:\"Login\";s:4:\"icon\";s:15:\"eicon-lock-user\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:28;a:4:{s:4:\"name\";s:6:\"slides\";s:5:\"title\";s:6:\"Slides\";s:4:\"icon\";s:12:\"eicon-slides\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:29;a:4:{s:4:\"name\";s:20:\"testimonial-carousel\";s:5:\"title\";s:20:\"Testimonial Carousel\";s:4:\"icon\";s:26:\"eicon-testimonial-carousel\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:30;a:4:{s:4:\"name\";s:7:\"reviews\";s:5:\"title\";s:7:\"Reviews\";s:4:\"icon\";s:12:\"eicon-review\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:31;a:4:{s:4:\"name\";s:15:\"facebook-button\";s:5:\"title\";s:15:\"Facebook Button\";s:4:\"icon\";s:23:\"eicon-facebook-like-box\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:32;a:4:{s:4:\"name\";s:17:\"facebook-comments\";s:5:\"title\";s:17:\"Facebook Comments\";s:4:\"icon\";s:23:\"eicon-facebook-comments\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:33;a:4:{s:4:\"name\";s:14:\"facebook-embed\";s:5:\"title\";s:14:\"Facebook Embed\";s:4:\"icon\";s:14:\"eicon-fb-embed\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:34;a:4:{s:4:\"name\";s:13:\"facebook-page\";s:5:\"title\";s:13:\"Facebook Page\";s:4:\"icon\";s:13:\"eicon-fb-feed\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:35;a:4:{s:4:\"name\";s:15:\"theme-site-logo\";s:5:\"title\";s:9:\"Site Logo\";s:4:\"icon\";s:15:\"eicon-site-logo\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:36;a:4:{s:4:\"name\";s:16:\"theme-site-title\";s:5:\"title\";s:10:\"Site Title\";s:4:\"icon\";s:16:\"eicon-site-title\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:37;a:4:{s:4:\"name\";s:16:\"theme-page-title\";s:5:\"title\";s:10:\"Page Title\";s:4:\"icon\";s:19:\"eicon-archive-title\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:38;a:4:{s:4:\"name\";s:16:\"theme-post-title\";s:5:\"title\";s:10:\"Post Title\";s:4:\"icon\";s:16:\"eicon-post-title\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:39;a:4:{s:4:\"name\";s:18:\"theme-post-excerpt\";s:5:\"title\";s:12:\"Post Excerpt\";s:4:\"icon\";s:18:\"eicon-post-excerpt\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:40;a:4:{s:4:\"name\";s:25:\"theme-post-featured-image\";s:5:\"title\";s:14:\"Featured Image\";s:4:\"icon\";s:20:\"eicon-featured-image\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:41;a:4:{s:4:\"name\";s:19:\"theme-archive-title\";s:5:\"title\";s:13:\"Archive Title\";s:4:\"icon\";s:19:\"eicon-archive-title\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:42;a:4:{s:4:\"name\";s:13:\"archive-posts\";s:5:\"title\";s:13:\"Archive Posts\";s:4:\"icon\";s:19:\"eicon-archive-posts\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:43;a:4:{s:4:\"name\";s:11:\"search-form\";s:5:\"title\";s:11:\"Search Form\";s:4:\"icon\";s:17:\"eicon-site-search\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:44;a:4:{s:4:\"name\";s:10:\"author-box\";s:5:\"title\";s:10:\"Author Box\";s:4:\"icon\";s:12:\"eicon-person\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:45;a:4:{s:4:\"name\";s:13:\"post-comments\";s:5:\"title\";s:13:\"Post Comments\";s:4:\"icon\";s:14:\"eicon-comments\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:46;a:4:{s:4:\"name\";s:15:\"post-navigation\";s:5:\"title\";s:15:\"Post Navigation\";s:4:\"icon\";s:21:\"eicon-post-navigation\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:47;a:4:{s:4:\"name\";s:9:\"post-info\";s:5:\"title\";s:9:\"Post Info\";s:4:\"icon\";s:15:\"eicon-post-info\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:48;a:4:{s:4:\"name\";s:7:\"sitemap\";s:5:\"title\";s:7:\"Sitemap\";s:4:\"icon\";s:13:\"eicon-sitemap\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:49;a:4:{s:4:\"name\";s:11:\"breadcrumbs\";s:5:\"title\";s:11:\"Breadcrumbs\";s:4:\"icon\";s:11:\"eicon-yoast\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:50;a:4:{s:4:\"name\";s:21:\"woocommerce-menu-cart\";s:5:\"title\";s:9:\"Menu Cart\";s:4:\"icon\";s:10:\"eicon-cart\";s:10:\"categories\";s:41:\"[\"theme-elements\",\"woocommerce-elements\"]\";}i:51;a:4:{s:4:\"name\";s:19:\"wc-archive-products\";s:5:\"title\";s:16:\"Archive Products\";s:4:\"icon\";s:14:\"eicon-products\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:52;a:4:{s:4:\"name\";s:31:\"woocommerce-archive-description\";s:5:\"title\";s:19:\"Archive Description\";s:4:\"icon\";s:25:\"eicon-product-description\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:53;a:4:{s:4:\"name\";s:20:\"woocommerce-products\";s:5:\"title\";s:8:\"Products\";s:4:\"icon\";s:14:\"eicon-products\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:54;a:4:{s:4:\"name\";s:22:\"woocommerce-breadcrumb\";s:5:\"title\";s:23:\"WooCommerce Breadcrumbs\";s:4:\"icon\";s:25:\"eicon-product-breadcrumbs\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:55;a:4:{s:4:\"name\";s:14:\"wc-add-to-cart\";s:5:\"title\";s:18:\"Custom Add To Cart\";s:4:\"icon\";s:17:\"eicon-woocommerce\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:56;a:4:{s:4:\"name\";s:11:\"wc-elements\";s:5:\"title\";s:17:\"WooCommerce Pages\";s:4:\"icon\";s:19:\"eicon-product-pages\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:57;a:4:{s:4:\"name\";s:13:\"wc-categories\";s:5:\"title\";s:18:\"Product Categories\";s:4:\"icon\";s:24:\"eicon-product-categories\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:58;a:4:{s:4:\"name\";s:25:\"woocommerce-product-title\";s:5:\"title\";s:13:\"Product Title\";s:4:\"icon\";s:19:\"eicon-product-title\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:59;a:4:{s:4:\"name\";s:26:\"woocommerce-product-images\";s:5:\"title\";s:14:\"Product Images\";s:4:\"icon\";s:20:\"eicon-product-images\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:60;a:4:{s:4:\"name\";s:25:\"woocommerce-product-price\";s:5:\"title\";s:13:\"Product Price\";s:4:\"icon\";s:19:\"eicon-product-price\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:61;a:4:{s:4:\"name\";s:31:\"woocommerce-product-add-to-cart\";s:5:\"title\";s:11:\"Add To Cart\";s:4:\"icon\";s:25:\"eicon-product-add-to-cart\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:62;a:4:{s:4:\"name\";s:26:\"woocommerce-product-rating\";s:5:\"title\";s:14:\"Product Rating\";s:4:\"icon\";s:20:\"eicon-product-rating\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:63;a:4:{s:4:\"name\";s:25:\"woocommerce-product-stock\";s:5:\"title\";s:13:\"Product Stock\";s:4:\"icon\";s:19:\"eicon-product-stock\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:64;a:4:{s:4:\"name\";s:24:\"woocommerce-product-meta\";s:5:\"title\";s:12:\"Product Meta\";s:4:\"icon\";s:18:\"eicon-product-meta\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:65;a:4:{s:4:\"name\";s:37:\"woocommerce-product-short-description\";s:5:\"title\";s:17:\"Short Description\";s:4:\"icon\";s:25:\"eicon-product-description\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:66;a:4:{s:4:\"name\";s:29:\"woocommerce-product-data-tabs\";s:5:\"title\";s:17:\"Product Data Tabs\";s:4:\"icon\";s:18:\"eicon-product-tabs\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:67;a:4:{s:4:\"name\";s:42:\"woocommerce-product-additional-information\";s:5:\"title\";s:22:\"Additional Information\";s:4:\"icon\";s:19:\" eicon-product-info\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:68;a:4:{s:4:\"name\";s:27:\"woocommerce-product-related\";s:5:\"title\";s:15:\"Product Related\";s:4:\"icon\";s:21:\"eicon-product-related\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:69;a:4:{s:4:\"name\";s:26:\"woocommerce-product-upsell\";s:5:\"title\";s:7:\"Upsells\";s:4:\"icon\";s:20:\"eicon-product-upsell\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:70;a:4:{s:4:\"name\";s:25:\"woocommerce-checkout-page\";s:5:\"title\";s:8:\"Checkout\";s:4:\"icon\";s:14:\"eicon-checkout\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:71;a:4:{s:4:\"name\";s:16:\"woocommerce-cart\";s:5:\"title\";s:4:\"Cart\";s:4:\"icon\";s:14:\"eicon-woo-cart\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:72;a:4:{s:4:\"name\";s:22:\"woocommerce-my-account\";s:5:\"title\";s:10:\"My Account\";s:4:\"icon\";s:16:\"eicon-my-account\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:73;a:4:{s:4:\"name\";s:28:\"woocommerce-purchase-summary\";s:5:\"title\";s:16:\"Purchase Summary\";s:4:\"icon\";s:22:\"eicon-purchase-summary\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:74;a:4:{s:4:\"name\";s:19:\"woocommerce-notices\";s:5:\"title\";s:19:\"WooCommerce Notices\";s:4:\"icon\";s:25:\"eicon-woocommerce-notices\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}}s:17:\"canary_deployment\";a:2:{s:11:\"plugin_info\";a:11:{s:2:\"id\";s:23:\"w.org/plugins/elementor\";s:4:\"slug\";s:9:\"elementor\";s:6:\"plugin\";s:23:\"elementor/elementor.php\";s:11:\"new_version\";s:5:\"3.6.0\";s:7:\"package\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.6.0.zip\";s:3:\"url\";s:40:\"https://wordpress.org/plugins/elementor/\";s:5:\"icons\";a:3:{s:2:\"2x\";s:62:\"https://ps.w.org/elementor/assets/icon-256x256.png?rev=1427768\";s:2:\"1x\";s:54:\"https://ps.w.org/elementor/assets/icon.svg?rev=1426809\";s:3:\"svg\";s:54:\"https://ps.w.org/elementor/assets/icon.svg?rev=1426809\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:65:\"https://ps.w.org/elementor/assets/banner-1544x500.png?rev=1475479\";s:2:\"1x\";s:64:\"https://ps.w.org/elementor/assets/banner-772x250.png?rev=1475479\";}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:5:\"6.4.1\";s:12:\"requires_php\";s:3:\"5.6\";}s:10:\"conditions\";a:0:{}}}','no'),(425,'_transient_timeout_elementor_remote_info_api_data_3.18.3','1704828000','no'),(426,'_transient_elementor_remote_info_api_data_3.18.3','a:4:{s:9:\"timestamp\";s:10:\"1704784205\";s:14:\"upgrade_notice\";a:3:{s:7:\"version\";s:5:\"2.0.0\";s:7:\"message\";s:0:\"\";s:11:\"update_link\";s:0:\"\";}s:11:\"pro_widgets\";a:75:{i:0;a:4:{s:4:\"name\";s:5:\"posts\";s:5:\"title\";s:5:\"Posts\";s:4:\"icon\";s:15:\"eicon-post-list\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:1;a:4:{s:4:\"name\";s:9:\"portfolio\";s:5:\"title\";s:9:\"Portfolio\";s:4:\"icon\";s:18:\"eicon-gallery-grid\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:2;a:4:{s:4:\"name\";s:9:\"mega-menu\";s:5:\"title\";s:4:\"Menu\";s:4:\"icon\";s:15:\"eicon-mega-menu\";s:10:\"categories\";s:33:\"[\"pro-elements\",\"theme-elements\"]\";}i:3;a:4:{s:4:\"name\";s:4:\"form\";s:5:\"title\";s:4:\"Form\";s:4:\"icon\";s:21:\"eicon-form-horizontal\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:4;a:4:{s:4:\"name\";s:9:\"loop-grid\";s:5:\"title\";s:9:\"Loop Grid\";s:4:\"icon\";s:18:\"eicon-loop-builder\";s:10:\"categories\";s:33:\"[\"pro-elements\",\"theme-elements\"]\";}i:5;a:4:{s:4:\"name\";s:13:\"loop-carousel\";s:5:\"title\";s:13:\"Loop Carousel\";s:4:\"icon\";s:19:\"eicon-carousel-loop\";s:10:\"categories\";s:33:\"[\"pro-elements\",\"theme-elements\"]\";}i:6;a:4:{s:4:\"name\";s:7:\"gallery\";s:5:\"title\";s:7:\"Gallery\";s:4:\"icon\";s:23:\"eicon-gallery-justified\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:7;a:4:{s:4:\"name\";s:17:\"animated-headline\";s:5:\"title\";s:17:\"Animated Headline\";s:4:\"icon\";s:23:\"eicon-animated-headline\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:8;a:4:{s:4:\"name\";s:10:\"price-list\";s:5:\"title\";s:10:\"Price List\";s:4:\"icon\";s:16:\"eicon-price-list\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:9;a:4:{s:4:\"name\";s:11:\"price-table\";s:5:\"title\";s:11:\"Price Table\";s:4:\"icon\";s:17:\"eicon-price-table\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:10;a:4:{s:4:\"name\";s:8:\"flip-box\";s:5:\"title\";s:8:\"Flip Box\";s:4:\"icon\";s:14:\"eicon-flip-box\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:11;a:4:{s:4:\"name\";s:14:\"call-to-action\";s:5:\"title\";s:14:\"Call to Action\";s:4:\"icon\";s:20:\"eicon-image-rollover\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:12;a:4:{s:4:\"name\";s:14:\"media-carousel\";s:5:\"title\";s:14:\"Media Carousel\";s:4:\"icon\";s:20:\"eicon-media-carousel\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:13;a:4:{s:4:\"name\";s:15:\"nested-carousel\";s:5:\"title\";s:8:\"Carousel\";s:4:\"icon\";s:21:\"eicon-nested-carousel\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:14;a:4:{s:4:\"name\";s:9:\"countdown\";s:5:\"title\";s:9:\"Countdown\";s:4:\"icon\";s:15:\"eicon-countdown\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:15;a:4:{s:4:\"name\";s:13:\"share-buttons\";s:5:\"title\";s:13:\"Share Buttons\";s:4:\"icon\";s:11:\"eicon-share\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:16;a:4:{s:4:\"name\";s:10:\"blockquote\";s:5:\"title\";s:10:\"Blockquote\";s:4:\"icon\";s:16:\"eicon-blockquote\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:17;a:4:{s:4:\"name\";s:6:\"lottie\";s:5:\"title\";s:6:\"Lottie\";s:4:\"icon\";s:12:\"eicon-lottie\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:18;a:4:{s:4:\"name\";s:7:\"hotspot\";s:5:\"title\";s:7:\"Hotspot\";s:4:\"icon\";s:19:\"eicon-image-hotspot\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:19;a:4:{s:4:\"name\";s:13:\"paypal-button\";s:5:\"title\";s:13:\"PayPal Button\";s:4:\"icon\";s:19:\"eicon-paypal-button\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:20;a:4:{s:4:\"name\";s:14:\"code-highlight\";s:5:\"title\";s:14:\"Code Highlight\";s:4:\"icon\";s:20:\"eicon-code-highlight\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:21;a:4:{s:4:\"name\";s:14:\"video-playlist\";s:5:\"title\";s:14:\"Video Playlist\";s:4:\"icon\";s:20:\"eicon-video-playlist\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:22;a:4:{s:4:\"name\";s:8:\"template\";s:5:\"title\";s:8:\"Template\";s:4:\"icon\";s:19:\"eicon-document-file\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:23;a:4:{s:4:\"name\";s:13:\"stripe-button\";s:5:\"title\";s:13:\"Stripe Button\";s:4:\"icon\";s:19:\"eicon-stripe-button\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:24;a:4:{s:4:\"name\";s:16:\"progress-tracker\";s:5:\"title\";s:16:\"Progress Tracker\";s:4:\"icon\";s:22:\"eicon-progress-tracker\";s:10:\"categories\";s:40:\"[\"pro-elements\",\"theme-elements-single\"]\";}i:25;a:4:{s:4:\"name\";s:8:\"nav-menu\";s:5:\"title\";s:8:\"Nav Menu\";s:4:\"icon\";s:14:\"eicon-nav-menu\";s:10:\"categories\";s:33:\"[\"pro-elements\",\"theme-elements\"]\";}i:26;a:4:{s:4:\"name\";s:17:\"table-of-contents\";s:5:\"title\";s:17:\"Table of Contents\";s:4:\"icon\";s:23:\"eicon-table-of-contents\";s:10:\"categories\";s:33:\"[\"pro-elements\",\"theme-elements\"]\";}i:27;a:4:{s:4:\"name\";s:5:\"login\";s:5:\"title\";s:5:\"Login\";s:4:\"icon\";s:15:\"eicon-lock-user\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:28;a:4:{s:4:\"name\";s:6:\"slides\";s:5:\"title\";s:6:\"Slides\";s:4:\"icon\";s:12:\"eicon-slides\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:29;a:4:{s:4:\"name\";s:20:\"testimonial-carousel\";s:5:\"title\";s:20:\"Testimonial Carousel\";s:4:\"icon\";s:26:\"eicon-testimonial-carousel\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:30;a:4:{s:4:\"name\";s:7:\"reviews\";s:5:\"title\";s:7:\"Reviews\";s:4:\"icon\";s:12:\"eicon-review\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:31;a:4:{s:4:\"name\";s:15:\"facebook-button\";s:5:\"title\";s:15:\"Facebook Button\";s:4:\"icon\";s:23:\"eicon-facebook-like-box\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:32;a:4:{s:4:\"name\";s:17:\"facebook-comments\";s:5:\"title\";s:17:\"Facebook Comments\";s:4:\"icon\";s:23:\"eicon-facebook-comments\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:33;a:4:{s:4:\"name\";s:14:\"facebook-embed\";s:5:\"title\";s:14:\"Facebook Embed\";s:4:\"icon\";s:14:\"eicon-fb-embed\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:34;a:4:{s:4:\"name\";s:13:\"facebook-page\";s:5:\"title\";s:13:\"Facebook Page\";s:4:\"icon\";s:13:\"eicon-fb-feed\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:35;a:4:{s:4:\"name\";s:15:\"theme-site-logo\";s:5:\"title\";s:9:\"Site Logo\";s:4:\"icon\";s:15:\"eicon-site-logo\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:36;a:4:{s:4:\"name\";s:16:\"theme-site-title\";s:5:\"title\";s:10:\"Site Title\";s:4:\"icon\";s:16:\"eicon-site-title\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:37;a:4:{s:4:\"name\";s:16:\"theme-page-title\";s:5:\"title\";s:10:\"Page Title\";s:4:\"icon\";s:19:\"eicon-archive-title\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:38;a:4:{s:4:\"name\";s:16:\"theme-post-title\";s:5:\"title\";s:10:\"Post Title\";s:4:\"icon\";s:16:\"eicon-post-title\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:39;a:4:{s:4:\"name\";s:18:\"theme-post-excerpt\";s:5:\"title\";s:12:\"Post Excerpt\";s:4:\"icon\";s:18:\"eicon-post-excerpt\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:40;a:4:{s:4:\"name\";s:25:\"theme-post-featured-image\";s:5:\"title\";s:14:\"Featured Image\";s:4:\"icon\";s:20:\"eicon-featured-image\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:41;a:4:{s:4:\"name\";s:19:\"theme-archive-title\";s:5:\"title\";s:13:\"Archive Title\";s:4:\"icon\";s:19:\"eicon-archive-title\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:42;a:4:{s:4:\"name\";s:13:\"archive-posts\";s:5:\"title\";s:13:\"Archive Posts\";s:4:\"icon\";s:19:\"eicon-archive-posts\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:43;a:4:{s:4:\"name\";s:11:\"search-form\";s:5:\"title\";s:11:\"Search Form\";s:4:\"icon\";s:17:\"eicon-site-search\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:44;a:4:{s:4:\"name\";s:10:\"author-box\";s:5:\"title\";s:10:\"Author Box\";s:4:\"icon\";s:12:\"eicon-person\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:45;a:4:{s:4:\"name\";s:13:\"post-comments\";s:5:\"title\";s:13:\"Post Comments\";s:4:\"icon\";s:14:\"eicon-comments\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:46;a:4:{s:4:\"name\";s:15:\"post-navigation\";s:5:\"title\";s:15:\"Post Navigation\";s:4:\"icon\";s:21:\"eicon-post-navigation\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:47;a:4:{s:4:\"name\";s:9:\"post-info\";s:5:\"title\";s:9:\"Post Info\";s:4:\"icon\";s:15:\"eicon-post-info\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:48;a:4:{s:4:\"name\";s:7:\"sitemap\";s:5:\"title\";s:7:\"Sitemap\";s:4:\"icon\";s:13:\"eicon-sitemap\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:49;a:4:{s:4:\"name\";s:11:\"breadcrumbs\";s:5:\"title\";s:11:\"Breadcrumbs\";s:4:\"icon\";s:11:\"eicon-yoast\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:50;a:4:{s:4:\"name\";s:21:\"woocommerce-menu-cart\";s:5:\"title\";s:9:\"Menu Cart\";s:4:\"icon\";s:10:\"eicon-cart\";s:10:\"categories\";s:41:\"[\"theme-elements\",\"woocommerce-elements\"]\";}i:51;a:4:{s:4:\"name\";s:19:\"wc-archive-products\";s:5:\"title\";s:16:\"Archive Products\";s:4:\"icon\";s:14:\"eicon-products\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:52;a:4:{s:4:\"name\";s:31:\"woocommerce-archive-description\";s:5:\"title\";s:19:\"Archive Description\";s:4:\"icon\";s:25:\"eicon-product-description\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:53;a:4:{s:4:\"name\";s:20:\"woocommerce-products\";s:5:\"title\";s:8:\"Products\";s:4:\"icon\";s:14:\"eicon-products\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:54;a:4:{s:4:\"name\";s:22:\"woocommerce-breadcrumb\";s:5:\"title\";s:23:\"WooCommerce Breadcrumbs\";s:4:\"icon\";s:25:\"eicon-product-breadcrumbs\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:55;a:4:{s:4:\"name\";s:14:\"wc-add-to-cart\";s:5:\"title\";s:18:\"Custom Add To Cart\";s:4:\"icon\";s:17:\"eicon-woocommerce\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:56;a:4:{s:4:\"name\";s:11:\"wc-elements\";s:5:\"title\";s:17:\"WooCommerce Pages\";s:4:\"icon\";s:19:\"eicon-product-pages\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:57;a:4:{s:4:\"name\";s:13:\"wc-categories\";s:5:\"title\";s:18:\"Product Categories\";s:4:\"icon\";s:24:\"eicon-product-categories\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:58;a:4:{s:4:\"name\";s:25:\"woocommerce-product-title\";s:5:\"title\";s:13:\"Product Title\";s:4:\"icon\";s:19:\"eicon-product-title\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:59;a:4:{s:4:\"name\";s:26:\"woocommerce-product-images\";s:5:\"title\";s:14:\"Product Images\";s:4:\"icon\";s:20:\"eicon-product-images\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:60;a:4:{s:4:\"name\";s:25:\"woocommerce-product-price\";s:5:\"title\";s:13:\"Product Price\";s:4:\"icon\";s:19:\"eicon-product-price\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:61;a:4:{s:4:\"name\";s:31:\"woocommerce-product-add-to-cart\";s:5:\"title\";s:11:\"Add To Cart\";s:4:\"icon\";s:25:\"eicon-product-add-to-cart\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:62;a:4:{s:4:\"name\";s:26:\"woocommerce-product-rating\";s:5:\"title\";s:14:\"Product Rating\";s:4:\"icon\";s:20:\"eicon-product-rating\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:63;a:4:{s:4:\"name\";s:25:\"woocommerce-product-stock\";s:5:\"title\";s:13:\"Product Stock\";s:4:\"icon\";s:19:\"eicon-product-stock\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:64;a:4:{s:4:\"name\";s:24:\"woocommerce-product-meta\";s:5:\"title\";s:12:\"Product Meta\";s:4:\"icon\";s:18:\"eicon-product-meta\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:65;a:4:{s:4:\"name\";s:37:\"woocommerce-product-short-description\";s:5:\"title\";s:17:\"Short Description\";s:4:\"icon\";s:25:\"eicon-product-description\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:66;a:4:{s:4:\"name\";s:29:\"woocommerce-product-data-tabs\";s:5:\"title\";s:17:\"Product Data Tabs\";s:4:\"icon\";s:18:\"eicon-product-tabs\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:67;a:4:{s:4:\"name\";s:42:\"woocommerce-product-additional-information\";s:5:\"title\";s:22:\"Additional Information\";s:4:\"icon\";s:19:\" eicon-product-info\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:68;a:4:{s:4:\"name\";s:27:\"woocommerce-product-related\";s:5:\"title\";s:15:\"Product Related\";s:4:\"icon\";s:21:\"eicon-product-related\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:69;a:4:{s:4:\"name\";s:26:\"woocommerce-product-upsell\";s:5:\"title\";s:7:\"Upsells\";s:4:\"icon\";s:20:\"eicon-product-upsell\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:70;a:4:{s:4:\"name\";s:25:\"woocommerce-checkout-page\";s:5:\"title\";s:8:\"Checkout\";s:4:\"icon\";s:14:\"eicon-checkout\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:71;a:4:{s:4:\"name\";s:16:\"woocommerce-cart\";s:5:\"title\";s:4:\"Cart\";s:4:\"icon\";s:14:\"eicon-woo-cart\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:72;a:4:{s:4:\"name\";s:22:\"woocommerce-my-account\";s:5:\"title\";s:10:\"My Account\";s:4:\"icon\";s:16:\"eicon-my-account\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:73;a:4:{s:4:\"name\";s:28:\"woocommerce-purchase-summary\";s:5:\"title\";s:16:\"Purchase Summary\";s:4:\"icon\";s:22:\"eicon-purchase-summary\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:74;a:4:{s:4:\"name\";s:19:\"woocommerce-notices\";s:5:\"title\";s:19:\"WooCommerce Notices\";s:4:\"icon\";s:25:\"eicon-woocommerce-notices\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}}s:17:\"canary_deployment\";a:2:{s:11:\"plugin_info\";a:11:{s:2:\"id\";s:23:\"w.org/plugins/elementor\";s:4:\"slug\";s:9:\"elementor\";s:6:\"plugin\";s:23:\"elementor/elementor.php\";s:11:\"new_version\";s:5:\"3.6.0\";s:7:\"package\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.6.0.zip\";s:3:\"url\";s:40:\"https://wordpress.org/plugins/elementor/\";s:5:\"icons\";a:3:{s:2:\"2x\";s:62:\"https://ps.w.org/elementor/assets/icon-256x256.png?rev=1427768\";s:2:\"1x\";s:54:\"https://ps.w.org/elementor/assets/icon.svg?rev=1426809\";s:3:\"svg\";s:54:\"https://ps.w.org/elementor/assets/icon.svg?rev=1426809\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:65:\"https://ps.w.org/elementor/assets/banner-1544x500.png?rev=1475479\";s:2:\"1x\";s:64:\"https://ps.w.org/elementor/assets/banner-772x250.png?rev=1475479\";}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:5:\"6.4.2\";s:12:\"requires_php\";s:3:\"5.6\";}s:10:\"conditions\";a:0:{}}}','no'),(447,'_transient_timeout_elementor_remote_info_api_data_3.19.2','1707422949','no'),(448,'_transient_elementor_remote_info_api_data_3.19.2','a:4:{s:9:\"timestamp\";s:10:\"1707378152\";s:14:\"upgrade_notice\";a:3:{s:7:\"version\";s:5:\"2.0.0\";s:7:\"message\";s:0:\"\";s:11:\"update_link\";s:0:\"\";}s:11:\"pro_widgets\";a:75:{i:0;a:4:{s:4:\"name\";s:5:\"posts\";s:5:\"title\";s:5:\"Posts\";s:4:\"icon\";s:15:\"eicon-post-list\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:1;a:4:{s:4:\"name\";s:9:\"portfolio\";s:5:\"title\";s:9:\"Portfolio\";s:4:\"icon\";s:18:\"eicon-gallery-grid\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:2;a:4:{s:4:\"name\";s:9:\"mega-menu\";s:5:\"title\";s:4:\"Menu\";s:4:\"icon\";s:15:\"eicon-mega-menu\";s:10:\"categories\";s:33:\"[\"pro-elements\",\"theme-elements\"]\";}i:3;a:4:{s:4:\"name\";s:4:\"form\";s:5:\"title\";s:4:\"Form\";s:4:\"icon\";s:21:\"eicon-form-horizontal\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:4;a:4:{s:4:\"name\";s:9:\"loop-grid\";s:5:\"title\";s:9:\"Loop Grid\";s:4:\"icon\";s:18:\"eicon-loop-builder\";s:10:\"categories\";s:33:\"[\"pro-elements\",\"theme-elements\"]\";}i:5;a:4:{s:4:\"name\";s:13:\"loop-carousel\";s:5:\"title\";s:13:\"Loop Carousel\";s:4:\"icon\";s:19:\"eicon-carousel-loop\";s:10:\"categories\";s:33:\"[\"pro-elements\",\"theme-elements\"]\";}i:6;a:4:{s:4:\"name\";s:7:\"gallery\";s:5:\"title\";s:7:\"Gallery\";s:4:\"icon\";s:23:\"eicon-gallery-justified\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:7;a:4:{s:4:\"name\";s:17:\"animated-headline\";s:5:\"title\";s:17:\"Animated Headline\";s:4:\"icon\";s:23:\"eicon-animated-headline\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:8;a:4:{s:4:\"name\";s:10:\"price-list\";s:5:\"title\";s:10:\"Price List\";s:4:\"icon\";s:16:\"eicon-price-list\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:9;a:4:{s:4:\"name\";s:11:\"price-table\";s:5:\"title\";s:11:\"Price Table\";s:4:\"icon\";s:17:\"eicon-price-table\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:10;a:4:{s:4:\"name\";s:8:\"flip-box\";s:5:\"title\";s:8:\"Flip Box\";s:4:\"icon\";s:14:\"eicon-flip-box\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:11;a:4:{s:4:\"name\";s:14:\"call-to-action\";s:5:\"title\";s:14:\"Call to Action\";s:4:\"icon\";s:20:\"eicon-image-rollover\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:12;a:4:{s:4:\"name\";s:14:\"media-carousel\";s:5:\"title\";s:14:\"Media Carousel\";s:4:\"icon\";s:20:\"eicon-media-carousel\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:13;a:4:{s:4:\"name\";s:15:\"nested-carousel\";s:5:\"title\";s:8:\"Carousel\";s:4:\"icon\";s:21:\"eicon-nested-carousel\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:14;a:4:{s:4:\"name\";s:9:\"countdown\";s:5:\"title\";s:9:\"Countdown\";s:4:\"icon\";s:15:\"eicon-countdown\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:15;a:4:{s:4:\"name\";s:13:\"share-buttons\";s:5:\"title\";s:13:\"Share Buttons\";s:4:\"icon\";s:11:\"eicon-share\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:16;a:4:{s:4:\"name\";s:10:\"blockquote\";s:5:\"title\";s:10:\"Blockquote\";s:4:\"icon\";s:16:\"eicon-blockquote\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:17;a:4:{s:4:\"name\";s:6:\"lottie\";s:5:\"title\";s:6:\"Lottie\";s:4:\"icon\";s:12:\"eicon-lottie\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:18;a:4:{s:4:\"name\";s:7:\"hotspot\";s:5:\"title\";s:7:\"Hotspot\";s:4:\"icon\";s:19:\"eicon-image-hotspot\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:19;a:4:{s:4:\"name\";s:13:\"paypal-button\";s:5:\"title\";s:13:\"PayPal Button\";s:4:\"icon\";s:19:\"eicon-paypal-button\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:20;a:4:{s:4:\"name\";s:14:\"code-highlight\";s:5:\"title\";s:14:\"Code Highlight\";s:4:\"icon\";s:20:\"eicon-code-highlight\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:21;a:4:{s:4:\"name\";s:14:\"video-playlist\";s:5:\"title\";s:14:\"Video Playlist\";s:4:\"icon\";s:20:\"eicon-video-playlist\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:22;a:4:{s:4:\"name\";s:8:\"template\";s:5:\"title\";s:8:\"Template\";s:4:\"icon\";s:19:\"eicon-document-file\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:23;a:4:{s:4:\"name\";s:13:\"stripe-button\";s:5:\"title\";s:13:\"Stripe Button\";s:4:\"icon\";s:19:\"eicon-stripe-button\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:24;a:4:{s:4:\"name\";s:16:\"progress-tracker\";s:5:\"title\";s:16:\"Progress Tracker\";s:4:\"icon\";s:22:\"eicon-progress-tracker\";s:10:\"categories\";s:40:\"[\"pro-elements\",\"theme-elements-single\"]\";}i:25;a:4:{s:4:\"name\";s:8:\"nav-menu\";s:5:\"title\";s:8:\"Nav Menu\";s:4:\"icon\";s:14:\"eicon-nav-menu\";s:10:\"categories\";s:33:\"[\"pro-elements\",\"theme-elements\"]\";}i:26;a:4:{s:4:\"name\";s:17:\"table-of-contents\";s:5:\"title\";s:17:\"Table of Contents\";s:4:\"icon\";s:23:\"eicon-table-of-contents\";s:10:\"categories\";s:33:\"[\"pro-elements\",\"theme-elements\"]\";}i:27;a:4:{s:4:\"name\";s:5:\"login\";s:5:\"title\";s:5:\"Login\";s:4:\"icon\";s:15:\"eicon-lock-user\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:28;a:4:{s:4:\"name\";s:6:\"slides\";s:5:\"title\";s:6:\"Slides\";s:4:\"icon\";s:12:\"eicon-slides\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:29;a:4:{s:4:\"name\";s:20:\"testimonial-carousel\";s:5:\"title\";s:20:\"Testimonial Carousel\";s:4:\"icon\";s:26:\"eicon-testimonial-carousel\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:30;a:4:{s:4:\"name\";s:7:\"reviews\";s:5:\"title\";s:7:\"Reviews\";s:4:\"icon\";s:12:\"eicon-review\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:31;a:4:{s:4:\"name\";s:15:\"facebook-button\";s:5:\"title\";s:15:\"Facebook Button\";s:4:\"icon\";s:23:\"eicon-facebook-like-box\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:32;a:4:{s:4:\"name\";s:17:\"facebook-comments\";s:5:\"title\";s:17:\"Facebook Comments\";s:4:\"icon\";s:23:\"eicon-facebook-comments\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:33;a:4:{s:4:\"name\";s:14:\"facebook-embed\";s:5:\"title\";s:14:\"Facebook Embed\";s:4:\"icon\";s:14:\"eicon-fb-embed\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:34;a:4:{s:4:\"name\";s:13:\"facebook-page\";s:5:\"title\";s:13:\"Facebook Page\";s:4:\"icon\";s:13:\"eicon-fb-feed\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:35;a:4:{s:4:\"name\";s:15:\"theme-site-logo\";s:5:\"title\";s:9:\"Site Logo\";s:4:\"icon\";s:15:\"eicon-site-logo\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:36;a:4:{s:4:\"name\";s:16:\"theme-site-title\";s:5:\"title\";s:10:\"Site Title\";s:4:\"icon\";s:16:\"eicon-site-title\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:37;a:4:{s:4:\"name\";s:16:\"theme-page-title\";s:5:\"title\";s:10:\"Page Title\";s:4:\"icon\";s:19:\"eicon-archive-title\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:38;a:4:{s:4:\"name\";s:16:\"theme-post-title\";s:5:\"title\";s:10:\"Post Title\";s:4:\"icon\";s:16:\"eicon-post-title\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:39;a:4:{s:4:\"name\";s:18:\"theme-post-excerpt\";s:5:\"title\";s:12:\"Post Excerpt\";s:4:\"icon\";s:18:\"eicon-post-excerpt\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:40;a:4:{s:4:\"name\";s:25:\"theme-post-featured-image\";s:5:\"title\";s:14:\"Featured Image\";s:4:\"icon\";s:20:\"eicon-featured-image\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:41;a:4:{s:4:\"name\";s:19:\"theme-archive-title\";s:5:\"title\";s:13:\"Archive Title\";s:4:\"icon\";s:19:\"eicon-archive-title\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:42;a:4:{s:4:\"name\";s:13:\"archive-posts\";s:5:\"title\";s:13:\"Archive Posts\";s:4:\"icon\";s:19:\"eicon-archive-posts\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:43;a:4:{s:4:\"name\";s:11:\"search-form\";s:5:\"title\";s:11:\"Search Form\";s:4:\"icon\";s:17:\"eicon-site-search\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:44;a:4:{s:4:\"name\";s:10:\"author-box\";s:5:\"title\";s:10:\"Author Box\";s:4:\"icon\";s:12:\"eicon-person\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:45;a:4:{s:4:\"name\";s:13:\"post-comments\";s:5:\"title\";s:13:\"Post Comments\";s:4:\"icon\";s:14:\"eicon-comments\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:46;a:4:{s:4:\"name\";s:15:\"post-navigation\";s:5:\"title\";s:15:\"Post Navigation\";s:4:\"icon\";s:21:\"eicon-post-navigation\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:47;a:4:{s:4:\"name\";s:9:\"post-info\";s:5:\"title\";s:9:\"Post Info\";s:4:\"icon\";s:15:\"eicon-post-info\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:48;a:4:{s:4:\"name\";s:7:\"sitemap\";s:5:\"title\";s:7:\"Sitemap\";s:4:\"icon\";s:13:\"eicon-sitemap\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:49;a:4:{s:4:\"name\";s:11:\"breadcrumbs\";s:5:\"title\";s:11:\"Breadcrumbs\";s:4:\"icon\";s:11:\"eicon-yoast\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:50;a:4:{s:4:\"name\";s:21:\"woocommerce-menu-cart\";s:5:\"title\";s:9:\"Menu Cart\";s:4:\"icon\";s:10:\"eicon-cart\";s:10:\"categories\";s:41:\"[\"theme-elements\",\"woocommerce-elements\"]\";}i:51;a:4:{s:4:\"name\";s:19:\"wc-archive-products\";s:5:\"title\";s:16:\"Archive Products\";s:4:\"icon\";s:14:\"eicon-products\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:52;a:4:{s:4:\"name\";s:31:\"woocommerce-archive-description\";s:5:\"title\";s:19:\"Archive Description\";s:4:\"icon\";s:25:\"eicon-product-description\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:53;a:4:{s:4:\"name\";s:20:\"woocommerce-products\";s:5:\"title\";s:8:\"Products\";s:4:\"icon\";s:14:\"eicon-products\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:54;a:4:{s:4:\"name\";s:22:\"woocommerce-breadcrumb\";s:5:\"title\";s:23:\"WooCommerce Breadcrumbs\";s:4:\"icon\";s:25:\"eicon-product-breadcrumbs\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:55;a:4:{s:4:\"name\";s:14:\"wc-add-to-cart\";s:5:\"title\";s:18:\"Custom Add To Cart\";s:4:\"icon\";s:17:\"eicon-woocommerce\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:56;a:4:{s:4:\"name\";s:11:\"wc-elements\";s:5:\"title\";s:17:\"WooCommerce Pages\";s:4:\"icon\";s:19:\"eicon-product-pages\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:57;a:4:{s:4:\"name\";s:13:\"wc-categories\";s:5:\"title\";s:18:\"Product Categories\";s:4:\"icon\";s:24:\"eicon-product-categories\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:58;a:4:{s:4:\"name\";s:25:\"woocommerce-product-title\";s:5:\"title\";s:13:\"Product Title\";s:4:\"icon\";s:19:\"eicon-product-title\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:59;a:4:{s:4:\"name\";s:26:\"woocommerce-product-images\";s:5:\"title\";s:14:\"Product Images\";s:4:\"icon\";s:20:\"eicon-product-images\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:60;a:4:{s:4:\"name\";s:25:\"woocommerce-product-price\";s:5:\"title\";s:13:\"Product Price\";s:4:\"icon\";s:19:\"eicon-product-price\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:61;a:4:{s:4:\"name\";s:31:\"woocommerce-product-add-to-cart\";s:5:\"title\";s:11:\"Add To Cart\";s:4:\"icon\";s:25:\"eicon-product-add-to-cart\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:62;a:4:{s:4:\"name\";s:26:\"woocommerce-product-rating\";s:5:\"title\";s:14:\"Product Rating\";s:4:\"icon\";s:20:\"eicon-product-rating\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:63;a:4:{s:4:\"name\";s:25:\"woocommerce-product-stock\";s:5:\"title\";s:13:\"Product Stock\";s:4:\"icon\";s:19:\"eicon-product-stock\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:64;a:4:{s:4:\"name\";s:24:\"woocommerce-product-meta\";s:5:\"title\";s:12:\"Product Meta\";s:4:\"icon\";s:18:\"eicon-product-meta\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:65;a:4:{s:4:\"name\";s:37:\"woocommerce-product-short-description\";s:5:\"title\";s:17:\"Short Description\";s:4:\"icon\";s:25:\"eicon-product-description\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:66;a:4:{s:4:\"name\";s:29:\"woocommerce-product-data-tabs\";s:5:\"title\";s:17:\"Product Data Tabs\";s:4:\"icon\";s:18:\"eicon-product-tabs\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:67;a:4:{s:4:\"name\";s:42:\"woocommerce-product-additional-information\";s:5:\"title\";s:22:\"Additional Information\";s:4:\"icon\";s:19:\" eicon-product-info\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:68;a:4:{s:4:\"name\";s:27:\"woocommerce-product-related\";s:5:\"title\";s:15:\"Product Related\";s:4:\"icon\";s:21:\"eicon-product-related\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:69;a:4:{s:4:\"name\";s:26:\"woocommerce-product-upsell\";s:5:\"title\";s:7:\"Upsells\";s:4:\"icon\";s:20:\"eicon-product-upsell\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:70;a:4:{s:4:\"name\";s:25:\"woocommerce-checkout-page\";s:5:\"title\";s:8:\"Checkout\";s:4:\"icon\";s:14:\"eicon-checkout\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:71;a:4:{s:4:\"name\";s:16:\"woocommerce-cart\";s:5:\"title\";s:4:\"Cart\";s:4:\"icon\";s:14:\"eicon-woo-cart\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:72;a:4:{s:4:\"name\";s:22:\"woocommerce-my-account\";s:5:\"title\";s:10:\"My Account\";s:4:\"icon\";s:16:\"eicon-my-account\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:73;a:4:{s:4:\"name\";s:28:\"woocommerce-purchase-summary\";s:5:\"title\";s:16:\"Purchase Summary\";s:4:\"icon\";s:22:\"eicon-purchase-summary\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:74;a:4:{s:4:\"name\";s:19:\"woocommerce-notices\";s:5:\"title\";s:19:\"WooCommerce Notices\";s:4:\"icon\";s:25:\"eicon-woocommerce-notices\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}}s:17:\"canary_deployment\";a:2:{s:11:\"plugin_info\";a:11:{s:2:\"id\";s:23:\"w.org/plugins/elementor\";s:4:\"slug\";s:9:\"elementor\";s:6:\"plugin\";s:23:\"elementor/elementor.php\";s:11:\"new_version\";s:5:\"3.6.0\";s:7:\"package\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.6.0.zip\";s:3:\"url\";s:40:\"https://wordpress.org/plugins/elementor/\";s:5:\"icons\";a:3:{s:2:\"2x\";s:62:\"https://ps.w.org/elementor/assets/icon-256x256.png?rev=1427768\";s:2:\"1x\";s:54:\"https://ps.w.org/elementor/assets/icon.svg?rev=1426809\";s:3:\"svg\";s:54:\"https://ps.w.org/elementor/assets/icon.svg?rev=1426809\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:65:\"https://ps.w.org/elementor/assets/banner-1544x500.png?rev=1475479\";s:2:\"1x\";s:64:\"https://ps.w.org/elementor/assets/banner-772x250.png?rev=1475479\";}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:5:\"6.4.3\";s:12:\"requires_php\";s:3:\"5.6\";}s:10:\"conditions\";a:0:{}}}','no'),(472,'_transient_timeout_elementor_remote_info_api_data_3.19.4','1710103269','no'),(473,'_transient_elementor_remote_info_api_data_3.19.4','a:4:{s:9:\"timestamp\";s:10:\"1710058299\";s:14:\"upgrade_notice\";a:3:{s:7:\"version\";s:5:\"2.0.0\";s:7:\"message\";s:0:\"\";s:11:\"update_link\";s:0:\"\";}s:11:\"pro_widgets\";a:75:{i:0;a:4:{s:4:\"name\";s:5:\"posts\";s:5:\"title\";s:5:\"Posts\";s:4:\"icon\";s:15:\"eicon-post-list\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:1;a:4:{s:4:\"name\";s:9:\"portfolio\";s:5:\"title\";s:9:\"Portfolio\";s:4:\"icon\";s:18:\"eicon-gallery-grid\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:2;a:4:{s:4:\"name\";s:9:\"mega-menu\";s:5:\"title\";s:4:\"Menu\";s:4:\"icon\";s:15:\"eicon-mega-menu\";s:10:\"categories\";s:33:\"[\"pro-elements\",\"theme-elements\"]\";}i:3;a:4:{s:4:\"name\";s:4:\"form\";s:5:\"title\";s:4:\"Form\";s:4:\"icon\";s:21:\"eicon-form-horizontal\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:4;a:4:{s:4:\"name\";s:9:\"loop-grid\";s:5:\"title\";s:9:\"Loop Grid\";s:4:\"icon\";s:18:\"eicon-loop-builder\";s:10:\"categories\";s:33:\"[\"pro-elements\",\"theme-elements\"]\";}i:5;a:4:{s:4:\"name\";s:13:\"loop-carousel\";s:5:\"title\";s:13:\"Loop Carousel\";s:4:\"icon\";s:19:\"eicon-carousel-loop\";s:10:\"categories\";s:33:\"[\"pro-elements\",\"theme-elements\"]\";}i:6;a:4:{s:4:\"name\";s:7:\"gallery\";s:5:\"title\";s:7:\"Gallery\";s:4:\"icon\";s:23:\"eicon-gallery-justified\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:7;a:4:{s:4:\"name\";s:17:\"animated-headline\";s:5:\"title\";s:17:\"Animated Headline\";s:4:\"icon\";s:23:\"eicon-animated-headline\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:8;a:4:{s:4:\"name\";s:10:\"price-list\";s:5:\"title\";s:10:\"Price List\";s:4:\"icon\";s:16:\"eicon-price-list\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:9;a:4:{s:4:\"name\";s:11:\"price-table\";s:5:\"title\";s:11:\"Price Table\";s:4:\"icon\";s:17:\"eicon-price-table\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:10;a:4:{s:4:\"name\";s:8:\"flip-box\";s:5:\"title\";s:8:\"Flip Box\";s:4:\"icon\";s:14:\"eicon-flip-box\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:11;a:4:{s:4:\"name\";s:14:\"call-to-action\";s:5:\"title\";s:14:\"Call to Action\";s:4:\"icon\";s:20:\"eicon-image-rollover\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:12;a:4:{s:4:\"name\";s:14:\"media-carousel\";s:5:\"title\";s:14:\"Media Carousel\";s:4:\"icon\";s:20:\"eicon-media-carousel\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:13;a:4:{s:4:\"name\";s:15:\"nested-carousel\";s:5:\"title\";s:8:\"Carousel\";s:4:\"icon\";s:21:\"eicon-nested-carousel\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:14;a:4:{s:4:\"name\";s:9:\"countdown\";s:5:\"title\";s:9:\"Countdown\";s:4:\"icon\";s:15:\"eicon-countdown\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:15;a:4:{s:4:\"name\";s:13:\"share-buttons\";s:5:\"title\";s:13:\"Share Buttons\";s:4:\"icon\";s:11:\"eicon-share\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:16;a:4:{s:4:\"name\";s:10:\"blockquote\";s:5:\"title\";s:10:\"Blockquote\";s:4:\"icon\";s:16:\"eicon-blockquote\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:17;a:4:{s:4:\"name\";s:6:\"lottie\";s:5:\"title\";s:6:\"Lottie\";s:4:\"icon\";s:12:\"eicon-lottie\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:18;a:4:{s:4:\"name\";s:7:\"hotspot\";s:5:\"title\";s:7:\"Hotspot\";s:4:\"icon\";s:19:\"eicon-image-hotspot\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:19;a:4:{s:4:\"name\";s:13:\"paypal-button\";s:5:\"title\";s:13:\"PayPal Button\";s:4:\"icon\";s:19:\"eicon-paypal-button\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:20;a:4:{s:4:\"name\";s:14:\"code-highlight\";s:5:\"title\";s:14:\"Code Highlight\";s:4:\"icon\";s:20:\"eicon-code-highlight\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:21;a:4:{s:4:\"name\";s:14:\"video-playlist\";s:5:\"title\";s:14:\"Video Playlist\";s:4:\"icon\";s:20:\"eicon-video-playlist\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:22;a:4:{s:4:\"name\";s:8:\"template\";s:5:\"title\";s:8:\"Template\";s:4:\"icon\";s:19:\"eicon-document-file\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:23;a:4:{s:4:\"name\";s:13:\"stripe-button\";s:5:\"title\";s:13:\"Stripe Button\";s:4:\"icon\";s:19:\"eicon-stripe-button\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:24;a:4:{s:4:\"name\";s:16:\"progress-tracker\";s:5:\"title\";s:16:\"Progress Tracker\";s:4:\"icon\";s:22:\"eicon-progress-tracker\";s:10:\"categories\";s:40:\"[\"pro-elements\",\"theme-elements-single\"]\";}i:25;a:4:{s:4:\"name\";s:8:\"nav-menu\";s:5:\"title\";s:8:\"Nav Menu\";s:4:\"icon\";s:14:\"eicon-nav-menu\";s:10:\"categories\";s:33:\"[\"pro-elements\",\"theme-elements\"]\";}i:26;a:4:{s:4:\"name\";s:17:\"table-of-contents\";s:5:\"title\";s:17:\"Table of Contents\";s:4:\"icon\";s:23:\"eicon-table-of-contents\";s:10:\"categories\";s:33:\"[\"pro-elements\",\"theme-elements\"]\";}i:27;a:4:{s:4:\"name\";s:5:\"login\";s:5:\"title\";s:5:\"Login\";s:4:\"icon\";s:15:\"eicon-lock-user\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:28;a:4:{s:4:\"name\";s:6:\"slides\";s:5:\"title\";s:6:\"Slides\";s:4:\"icon\";s:12:\"eicon-slides\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:29;a:4:{s:4:\"name\";s:20:\"testimonial-carousel\";s:5:\"title\";s:20:\"Testimonial Carousel\";s:4:\"icon\";s:26:\"eicon-testimonial-carousel\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:30;a:4:{s:4:\"name\";s:7:\"reviews\";s:5:\"title\";s:7:\"Reviews\";s:4:\"icon\";s:12:\"eicon-review\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:31;a:4:{s:4:\"name\";s:15:\"facebook-button\";s:5:\"title\";s:15:\"Facebook Button\";s:4:\"icon\";s:23:\"eicon-facebook-like-box\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:32;a:4:{s:4:\"name\";s:17:\"facebook-comments\";s:5:\"title\";s:17:\"Facebook Comments\";s:4:\"icon\";s:23:\"eicon-facebook-comments\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:33;a:4:{s:4:\"name\";s:14:\"facebook-embed\";s:5:\"title\";s:14:\"Facebook Embed\";s:4:\"icon\";s:14:\"eicon-fb-embed\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:34;a:4:{s:4:\"name\";s:13:\"facebook-page\";s:5:\"title\";s:13:\"Facebook Page\";s:4:\"icon\";s:13:\"eicon-fb-feed\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:35;a:4:{s:4:\"name\";s:15:\"theme-site-logo\";s:5:\"title\";s:9:\"Site Logo\";s:4:\"icon\";s:15:\"eicon-site-logo\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:36;a:4:{s:4:\"name\";s:16:\"theme-site-title\";s:5:\"title\";s:10:\"Site Title\";s:4:\"icon\";s:16:\"eicon-site-title\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:37;a:4:{s:4:\"name\";s:16:\"theme-page-title\";s:5:\"title\";s:10:\"Page Title\";s:4:\"icon\";s:19:\"eicon-archive-title\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:38;a:4:{s:4:\"name\";s:16:\"theme-post-title\";s:5:\"title\";s:10:\"Post Title\";s:4:\"icon\";s:16:\"eicon-post-title\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:39;a:4:{s:4:\"name\";s:18:\"theme-post-excerpt\";s:5:\"title\";s:12:\"Post Excerpt\";s:4:\"icon\";s:18:\"eicon-post-excerpt\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:40;a:4:{s:4:\"name\";s:25:\"theme-post-featured-image\";s:5:\"title\";s:14:\"Featured Image\";s:4:\"icon\";s:20:\"eicon-featured-image\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:41;a:4:{s:4:\"name\";s:19:\"theme-archive-title\";s:5:\"title\";s:13:\"Archive Title\";s:4:\"icon\";s:19:\"eicon-archive-title\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:42;a:4:{s:4:\"name\";s:13:\"archive-posts\";s:5:\"title\";s:13:\"Archive Posts\";s:4:\"icon\";s:19:\"eicon-archive-posts\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:43;a:4:{s:4:\"name\";s:11:\"search-form\";s:5:\"title\";s:11:\"Search Form\";s:4:\"icon\";s:17:\"eicon-site-search\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:44;a:4:{s:4:\"name\";s:10:\"author-box\";s:5:\"title\";s:10:\"Author Box\";s:4:\"icon\";s:12:\"eicon-person\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:45;a:4:{s:4:\"name\";s:13:\"post-comments\";s:5:\"title\";s:13:\"Post Comments\";s:4:\"icon\";s:14:\"eicon-comments\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:46;a:4:{s:4:\"name\";s:15:\"post-navigation\";s:5:\"title\";s:15:\"Post Navigation\";s:4:\"icon\";s:21:\"eicon-post-navigation\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:47;a:4:{s:4:\"name\";s:9:\"post-info\";s:5:\"title\";s:9:\"Post Info\";s:4:\"icon\";s:15:\"eicon-post-info\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:48;a:4:{s:4:\"name\";s:7:\"sitemap\";s:5:\"title\";s:7:\"Sitemap\";s:4:\"icon\";s:13:\"eicon-sitemap\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:49;a:4:{s:4:\"name\";s:11:\"breadcrumbs\";s:5:\"title\";s:11:\"Breadcrumbs\";s:4:\"icon\";s:11:\"eicon-yoast\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:50;a:4:{s:4:\"name\";s:21:\"woocommerce-menu-cart\";s:5:\"title\";s:9:\"Menu Cart\";s:4:\"icon\";s:10:\"eicon-cart\";s:10:\"categories\";s:41:\"[\"theme-elements\",\"woocommerce-elements\"]\";}i:51;a:4:{s:4:\"name\";s:19:\"wc-archive-products\";s:5:\"title\";s:16:\"Archive Products\";s:4:\"icon\";s:14:\"eicon-products\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:52;a:4:{s:4:\"name\";s:31:\"woocommerce-archive-description\";s:5:\"title\";s:19:\"Archive Description\";s:4:\"icon\";s:25:\"eicon-product-description\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:53;a:4:{s:4:\"name\";s:20:\"woocommerce-products\";s:5:\"title\";s:8:\"Products\";s:4:\"icon\";s:14:\"eicon-products\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:54;a:4:{s:4:\"name\";s:22:\"woocommerce-breadcrumb\";s:5:\"title\";s:23:\"WooCommerce Breadcrumbs\";s:4:\"icon\";s:25:\"eicon-product-breadcrumbs\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:55;a:4:{s:4:\"name\";s:14:\"wc-add-to-cart\";s:5:\"title\";s:18:\"Custom Add To Cart\";s:4:\"icon\";s:17:\"eicon-woocommerce\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:56;a:4:{s:4:\"name\";s:11:\"wc-elements\";s:5:\"title\";s:17:\"WooCommerce Pages\";s:4:\"icon\";s:19:\"eicon-product-pages\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:57;a:4:{s:4:\"name\";s:13:\"wc-categories\";s:5:\"title\";s:18:\"Product Categories\";s:4:\"icon\";s:24:\"eicon-product-categories\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:58;a:4:{s:4:\"name\";s:25:\"woocommerce-product-title\";s:5:\"title\";s:13:\"Product Title\";s:4:\"icon\";s:19:\"eicon-product-title\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:59;a:4:{s:4:\"name\";s:26:\"woocommerce-product-images\";s:5:\"title\";s:14:\"Product Images\";s:4:\"icon\";s:20:\"eicon-product-images\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:60;a:4:{s:4:\"name\";s:25:\"woocommerce-product-price\";s:5:\"title\";s:13:\"Product Price\";s:4:\"icon\";s:19:\"eicon-product-price\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:61;a:4:{s:4:\"name\";s:31:\"woocommerce-product-add-to-cart\";s:5:\"title\";s:11:\"Add To Cart\";s:4:\"icon\";s:25:\"eicon-product-add-to-cart\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:62;a:4:{s:4:\"name\";s:26:\"woocommerce-product-rating\";s:5:\"title\";s:14:\"Product Rating\";s:4:\"icon\";s:20:\"eicon-product-rating\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:63;a:4:{s:4:\"name\";s:25:\"woocommerce-product-stock\";s:5:\"title\";s:13:\"Product Stock\";s:4:\"icon\";s:19:\"eicon-product-stock\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:64;a:4:{s:4:\"name\";s:24:\"woocommerce-product-meta\";s:5:\"title\";s:12:\"Product Meta\";s:4:\"icon\";s:18:\"eicon-product-meta\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:65;a:4:{s:4:\"name\";s:37:\"woocommerce-product-short-description\";s:5:\"title\";s:17:\"Short Description\";s:4:\"icon\";s:25:\"eicon-product-description\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:66;a:4:{s:4:\"name\";s:29:\"woocommerce-product-data-tabs\";s:5:\"title\";s:17:\"Product Data Tabs\";s:4:\"icon\";s:18:\"eicon-product-tabs\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:67;a:4:{s:4:\"name\";s:42:\"woocommerce-product-additional-information\";s:5:\"title\";s:22:\"Additional Information\";s:4:\"icon\";s:19:\" eicon-product-info\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:68;a:4:{s:4:\"name\";s:27:\"woocommerce-product-related\";s:5:\"title\";s:15:\"Product Related\";s:4:\"icon\";s:21:\"eicon-product-related\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:69;a:4:{s:4:\"name\";s:26:\"woocommerce-product-upsell\";s:5:\"title\";s:7:\"Upsells\";s:4:\"icon\";s:20:\"eicon-product-upsell\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:70;a:4:{s:4:\"name\";s:25:\"woocommerce-checkout-page\";s:5:\"title\";s:8:\"Checkout\";s:4:\"icon\";s:14:\"eicon-checkout\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:71;a:4:{s:4:\"name\";s:16:\"woocommerce-cart\";s:5:\"title\";s:4:\"Cart\";s:4:\"icon\";s:14:\"eicon-woo-cart\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:72;a:4:{s:4:\"name\";s:22:\"woocommerce-my-account\";s:5:\"title\";s:10:\"My Account\";s:4:\"icon\";s:16:\"eicon-my-account\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:73;a:4:{s:4:\"name\";s:28:\"woocommerce-purchase-summary\";s:5:\"title\";s:16:\"Purchase Summary\";s:4:\"icon\";s:22:\"eicon-purchase-summary\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:74;a:4:{s:4:\"name\";s:19:\"woocommerce-notices\";s:5:\"title\";s:19:\"WooCommerce Notices\";s:4:\"icon\";s:25:\"eicon-woocommerce-notices\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}}s:17:\"canary_deployment\";a:2:{s:11:\"plugin_info\";a:11:{s:2:\"id\";s:23:\"w.org/plugins/elementor\";s:4:\"slug\";s:9:\"elementor\";s:6:\"plugin\";s:23:\"elementor/elementor.php\";s:11:\"new_version\";s:5:\"3.6.0\";s:7:\"package\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.6.0.zip\";s:3:\"url\";s:40:\"https://wordpress.org/plugins/elementor/\";s:5:\"icons\";a:3:{s:2:\"2x\";s:62:\"https://ps.w.org/elementor/assets/icon-256x256.png?rev=1427768\";s:2:\"1x\";s:54:\"https://ps.w.org/elementor/assets/icon.svg?rev=1426809\";s:3:\"svg\";s:54:\"https://ps.w.org/elementor/assets/icon.svg?rev=1426809\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:65:\"https://ps.w.org/elementor/assets/banner-1544x500.png?rev=1475479\";s:2:\"1x\";s:64:\"https://ps.w.org/elementor/assets/banner-772x250.png?rev=1475479\";}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:5:\"6.4.3\";s:12:\"requires_php\";s:3:\"5.6\";}s:10:\"conditions\";a:0:{}}}','no'),(503,'_transient_timeout_elementor_remote_info_api_data_3.20.3','1712752650','no'),(504,'_transient_elementor_remote_info_api_data_3.20.3','a:4:{s:9:\"timestamp\";s:10:\"1712707272\";s:14:\"upgrade_notice\";a:3:{s:7:\"version\";s:5:\"2.0.0\";s:7:\"message\";s:0:\"\";s:11:\"update_link\";s:0:\"\";}s:11:\"pro_widgets\";a:75:{i:0;a:4:{s:4:\"name\";s:5:\"posts\";s:5:\"title\";s:5:\"Posts\";s:4:\"icon\";s:15:\"eicon-post-list\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:1;a:4:{s:4:\"name\";s:9:\"portfolio\";s:5:\"title\";s:9:\"Portfolio\";s:4:\"icon\";s:18:\"eicon-gallery-grid\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:2;a:4:{s:4:\"name\";s:9:\"mega-menu\";s:5:\"title\";s:4:\"Menu\";s:4:\"icon\";s:15:\"eicon-mega-menu\";s:10:\"categories\";s:33:\"[\"pro-elements\",\"theme-elements\"]\";}i:3;a:4:{s:4:\"name\";s:4:\"form\";s:5:\"title\";s:4:\"Form\";s:4:\"icon\";s:21:\"eicon-form-horizontal\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:4;a:4:{s:4:\"name\";s:9:\"loop-grid\";s:5:\"title\";s:9:\"Loop Grid\";s:4:\"icon\";s:18:\"eicon-loop-builder\";s:10:\"categories\";s:33:\"[\"pro-elements\",\"theme-elements\"]\";}i:5;a:4:{s:4:\"name\";s:13:\"loop-carousel\";s:5:\"title\";s:13:\"Loop Carousel\";s:4:\"icon\";s:19:\"eicon-carousel-loop\";s:10:\"categories\";s:33:\"[\"pro-elements\",\"theme-elements\"]\";}i:6;a:4:{s:4:\"name\";s:7:\"gallery\";s:5:\"title\";s:7:\"Gallery\";s:4:\"icon\";s:23:\"eicon-gallery-justified\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:7;a:4:{s:4:\"name\";s:17:\"animated-headline\";s:5:\"title\";s:17:\"Animated Headline\";s:4:\"icon\";s:23:\"eicon-animated-headline\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:8;a:4:{s:4:\"name\";s:10:\"price-list\";s:5:\"title\";s:10:\"Price List\";s:4:\"icon\";s:16:\"eicon-price-list\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:9;a:4:{s:4:\"name\";s:11:\"price-table\";s:5:\"title\";s:11:\"Price Table\";s:4:\"icon\";s:17:\"eicon-price-table\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:10;a:4:{s:4:\"name\";s:8:\"flip-box\";s:5:\"title\";s:8:\"Flip Box\";s:4:\"icon\";s:14:\"eicon-flip-box\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:11;a:4:{s:4:\"name\";s:14:\"call-to-action\";s:5:\"title\";s:14:\"Call to Action\";s:4:\"icon\";s:20:\"eicon-image-rollover\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:12;a:4:{s:4:\"name\";s:14:\"media-carousel\";s:5:\"title\";s:14:\"Media Carousel\";s:4:\"icon\";s:20:\"eicon-media-carousel\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:13;a:4:{s:4:\"name\";s:15:\"nested-carousel\";s:5:\"title\";s:8:\"Carousel\";s:4:\"icon\";s:21:\"eicon-nested-carousel\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:14;a:4:{s:4:\"name\";s:9:\"countdown\";s:5:\"title\";s:9:\"Countdown\";s:4:\"icon\";s:15:\"eicon-countdown\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:15;a:4:{s:4:\"name\";s:13:\"share-buttons\";s:5:\"title\";s:13:\"Share Buttons\";s:4:\"icon\";s:11:\"eicon-share\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:16;a:4:{s:4:\"name\";s:10:\"blockquote\";s:5:\"title\";s:10:\"Blockquote\";s:4:\"icon\";s:16:\"eicon-blockquote\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:17;a:4:{s:4:\"name\";s:6:\"lottie\";s:5:\"title\";s:6:\"Lottie\";s:4:\"icon\";s:12:\"eicon-lottie\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:18;a:4:{s:4:\"name\";s:7:\"hotspot\";s:5:\"title\";s:7:\"Hotspot\";s:4:\"icon\";s:19:\"eicon-image-hotspot\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:19;a:4:{s:4:\"name\";s:13:\"paypal-button\";s:5:\"title\";s:13:\"PayPal Button\";s:4:\"icon\";s:19:\"eicon-paypal-button\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:20;a:4:{s:4:\"name\";s:14:\"code-highlight\";s:5:\"title\";s:14:\"Code Highlight\";s:4:\"icon\";s:20:\"eicon-code-highlight\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:21;a:4:{s:4:\"name\";s:14:\"video-playlist\";s:5:\"title\";s:14:\"Video Playlist\";s:4:\"icon\";s:20:\"eicon-video-playlist\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:22;a:4:{s:4:\"name\";s:8:\"template\";s:5:\"title\";s:8:\"Template\";s:4:\"icon\";s:19:\"eicon-document-file\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:23;a:4:{s:4:\"name\";s:13:\"stripe-button\";s:5:\"title\";s:13:\"Stripe Button\";s:4:\"icon\";s:19:\"eicon-stripe-button\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:24;a:4:{s:4:\"name\";s:16:\"progress-tracker\";s:5:\"title\";s:16:\"Progress Tracker\";s:4:\"icon\";s:22:\"eicon-progress-tracker\";s:10:\"categories\";s:40:\"[\"pro-elements\",\"theme-elements-single\"]\";}i:25;a:4:{s:4:\"name\";s:8:\"nav-menu\";s:5:\"title\";s:8:\"Nav Menu\";s:4:\"icon\";s:14:\"eicon-nav-menu\";s:10:\"categories\";s:33:\"[\"pro-elements\",\"theme-elements\"]\";}i:26;a:4:{s:4:\"name\";s:17:\"table-of-contents\";s:5:\"title\";s:17:\"Table of Contents\";s:4:\"icon\";s:23:\"eicon-table-of-contents\";s:10:\"categories\";s:33:\"[\"pro-elements\",\"theme-elements\"]\";}i:27;a:4:{s:4:\"name\";s:5:\"login\";s:5:\"title\";s:5:\"Login\";s:4:\"icon\";s:15:\"eicon-lock-user\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:28;a:4:{s:4:\"name\";s:6:\"slides\";s:5:\"title\";s:6:\"Slides\";s:4:\"icon\";s:12:\"eicon-slides\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:29;a:4:{s:4:\"name\";s:20:\"testimonial-carousel\";s:5:\"title\";s:20:\"Testimonial Carousel\";s:4:\"icon\";s:26:\"eicon-testimonial-carousel\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:30;a:4:{s:4:\"name\";s:7:\"reviews\";s:5:\"title\";s:7:\"Reviews\";s:4:\"icon\";s:12:\"eicon-review\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:31;a:4:{s:4:\"name\";s:15:\"facebook-button\";s:5:\"title\";s:15:\"Facebook Button\";s:4:\"icon\";s:23:\"eicon-facebook-like-box\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:32;a:4:{s:4:\"name\";s:17:\"facebook-comments\";s:5:\"title\";s:17:\"Facebook Comments\";s:4:\"icon\";s:23:\"eicon-facebook-comments\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:33;a:4:{s:4:\"name\";s:14:\"facebook-embed\";s:5:\"title\";s:14:\"Facebook Embed\";s:4:\"icon\";s:14:\"eicon-fb-embed\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:34;a:4:{s:4:\"name\";s:13:\"facebook-page\";s:5:\"title\";s:13:\"Facebook Page\";s:4:\"icon\";s:13:\"eicon-fb-feed\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:35;a:4:{s:4:\"name\";s:15:\"theme-site-logo\";s:5:\"title\";s:9:\"Site Logo\";s:4:\"icon\";s:15:\"eicon-site-logo\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:36;a:4:{s:4:\"name\";s:16:\"theme-site-title\";s:5:\"title\";s:10:\"Site Title\";s:4:\"icon\";s:16:\"eicon-site-title\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:37;a:4:{s:4:\"name\";s:16:\"theme-page-title\";s:5:\"title\";s:10:\"Page Title\";s:4:\"icon\";s:19:\"eicon-archive-title\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:38;a:4:{s:4:\"name\";s:16:\"theme-post-title\";s:5:\"title\";s:10:\"Post Title\";s:4:\"icon\";s:16:\"eicon-post-title\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:39;a:4:{s:4:\"name\";s:18:\"theme-post-excerpt\";s:5:\"title\";s:12:\"Post Excerpt\";s:4:\"icon\";s:18:\"eicon-post-excerpt\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:40;a:4:{s:4:\"name\";s:25:\"theme-post-featured-image\";s:5:\"title\";s:14:\"Featured Image\";s:4:\"icon\";s:20:\"eicon-featured-image\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:41;a:4:{s:4:\"name\";s:19:\"theme-archive-title\";s:5:\"title\";s:13:\"Archive Title\";s:4:\"icon\";s:19:\"eicon-archive-title\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:42;a:4:{s:4:\"name\";s:13:\"archive-posts\";s:5:\"title\";s:13:\"Archive Posts\";s:4:\"icon\";s:19:\"eicon-archive-posts\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:43;a:4:{s:4:\"name\";s:11:\"search-form\";s:5:\"title\";s:11:\"Search Form\";s:4:\"icon\";s:17:\"eicon-site-search\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:44;a:4:{s:4:\"name\";s:10:\"author-box\";s:5:\"title\";s:10:\"Author Box\";s:4:\"icon\";s:12:\"eicon-person\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:45;a:4:{s:4:\"name\";s:13:\"post-comments\";s:5:\"title\";s:13:\"Post Comments\";s:4:\"icon\";s:14:\"eicon-comments\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:46;a:4:{s:4:\"name\";s:15:\"post-navigation\";s:5:\"title\";s:15:\"Post Navigation\";s:4:\"icon\";s:21:\"eicon-post-navigation\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:47;a:4:{s:4:\"name\";s:9:\"post-info\";s:5:\"title\";s:9:\"Post Info\";s:4:\"icon\";s:15:\"eicon-post-info\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:48;a:4:{s:4:\"name\";s:7:\"sitemap\";s:5:\"title\";s:7:\"Sitemap\";s:4:\"icon\";s:13:\"eicon-sitemap\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:49;a:4:{s:4:\"name\";s:11:\"breadcrumbs\";s:5:\"title\";s:11:\"Breadcrumbs\";s:4:\"icon\";s:11:\"eicon-yoast\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:50;a:4:{s:4:\"name\";s:21:\"woocommerce-menu-cart\";s:5:\"title\";s:9:\"Menu Cart\";s:4:\"icon\";s:10:\"eicon-cart\";s:10:\"categories\";s:41:\"[\"theme-elements\",\"woocommerce-elements\"]\";}i:51;a:4:{s:4:\"name\";s:19:\"wc-archive-products\";s:5:\"title\";s:16:\"Archive Products\";s:4:\"icon\";s:14:\"eicon-products\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:52;a:4:{s:4:\"name\";s:31:\"woocommerce-archive-description\";s:5:\"title\";s:19:\"Archive Description\";s:4:\"icon\";s:25:\"eicon-product-description\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:53;a:4:{s:4:\"name\";s:20:\"woocommerce-products\";s:5:\"title\";s:8:\"Products\";s:4:\"icon\";s:14:\"eicon-products\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:54;a:4:{s:4:\"name\";s:22:\"woocommerce-breadcrumb\";s:5:\"title\";s:23:\"WooCommerce Breadcrumbs\";s:4:\"icon\";s:25:\"eicon-product-breadcrumbs\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:55;a:4:{s:4:\"name\";s:14:\"wc-add-to-cart\";s:5:\"title\";s:18:\"Custom Add To Cart\";s:4:\"icon\";s:17:\"eicon-woocommerce\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:56;a:4:{s:4:\"name\";s:11:\"wc-elements\";s:5:\"title\";s:17:\"WooCommerce Pages\";s:4:\"icon\";s:19:\"eicon-product-pages\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:57;a:4:{s:4:\"name\";s:13:\"wc-categories\";s:5:\"title\";s:18:\"Product Categories\";s:4:\"icon\";s:24:\"eicon-product-categories\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:58;a:4:{s:4:\"name\";s:25:\"woocommerce-product-title\";s:5:\"title\";s:13:\"Product Title\";s:4:\"icon\";s:19:\"eicon-product-title\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:59;a:4:{s:4:\"name\";s:26:\"woocommerce-product-images\";s:5:\"title\";s:14:\"Product Images\";s:4:\"icon\";s:20:\"eicon-product-images\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:60;a:4:{s:4:\"name\";s:25:\"woocommerce-product-price\";s:5:\"title\";s:13:\"Product Price\";s:4:\"icon\";s:19:\"eicon-product-price\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:61;a:4:{s:4:\"name\";s:31:\"woocommerce-product-add-to-cart\";s:5:\"title\";s:11:\"Add To Cart\";s:4:\"icon\";s:25:\"eicon-product-add-to-cart\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:62;a:4:{s:4:\"name\";s:26:\"woocommerce-product-rating\";s:5:\"title\";s:14:\"Product Rating\";s:4:\"icon\";s:20:\"eicon-product-rating\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:63;a:4:{s:4:\"name\";s:25:\"woocommerce-product-stock\";s:5:\"title\";s:13:\"Product Stock\";s:4:\"icon\";s:19:\"eicon-product-stock\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:64;a:4:{s:4:\"name\";s:24:\"woocommerce-product-meta\";s:5:\"title\";s:12:\"Product Meta\";s:4:\"icon\";s:18:\"eicon-product-meta\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:65;a:4:{s:4:\"name\";s:37:\"woocommerce-product-short-description\";s:5:\"title\";s:17:\"Short Description\";s:4:\"icon\";s:25:\"eicon-product-description\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:66;a:4:{s:4:\"name\";s:29:\"woocommerce-product-data-tabs\";s:5:\"title\";s:17:\"Product Data Tabs\";s:4:\"icon\";s:18:\"eicon-product-tabs\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:67;a:4:{s:4:\"name\";s:42:\"woocommerce-product-additional-information\";s:5:\"title\";s:22:\"Additional Information\";s:4:\"icon\";s:19:\" eicon-product-info\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:68;a:4:{s:4:\"name\";s:27:\"woocommerce-product-related\";s:5:\"title\";s:15:\"Product Related\";s:4:\"icon\";s:21:\"eicon-product-related\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:69;a:4:{s:4:\"name\";s:26:\"woocommerce-product-upsell\";s:5:\"title\";s:7:\"Upsells\";s:4:\"icon\";s:20:\"eicon-product-upsell\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:70;a:4:{s:4:\"name\";s:25:\"woocommerce-checkout-page\";s:5:\"title\";s:8:\"Checkout\";s:4:\"icon\";s:14:\"eicon-checkout\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:71;a:4:{s:4:\"name\";s:16:\"woocommerce-cart\";s:5:\"title\";s:4:\"Cart\";s:4:\"icon\";s:14:\"eicon-woo-cart\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:72;a:4:{s:4:\"name\";s:22:\"woocommerce-my-account\";s:5:\"title\";s:10:\"My Account\";s:4:\"icon\";s:16:\"eicon-my-account\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:73;a:4:{s:4:\"name\";s:28:\"woocommerce-purchase-summary\";s:5:\"title\";s:16:\"Purchase Summary\";s:4:\"icon\";s:22:\"eicon-purchase-summary\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:74;a:4:{s:4:\"name\";s:19:\"woocommerce-notices\";s:5:\"title\";s:19:\"WooCommerce Notices\";s:4:\"icon\";s:25:\"eicon-woocommerce-notices\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}}s:17:\"canary_deployment\";a:2:{s:11:\"plugin_info\";a:11:{s:2:\"id\";s:23:\"w.org/plugins/elementor\";s:4:\"slug\";s:9:\"elementor\";s:6:\"plugin\";s:23:\"elementor/elementor.php\";s:11:\"new_version\";s:5:\"3.6.0\";s:7:\"package\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.6.0.zip\";s:3:\"url\";s:40:\"https://wordpress.org/plugins/elementor/\";s:5:\"icons\";a:3:{s:2:\"2x\";s:62:\"https://ps.w.org/elementor/assets/icon-256x256.png?rev=1427768\";s:2:\"1x\";s:54:\"https://ps.w.org/elementor/assets/icon.svg?rev=1426809\";s:3:\"svg\";s:54:\"https://ps.w.org/elementor/assets/icon.svg?rev=1426809\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:65:\"https://ps.w.org/elementor/assets/banner-1544x500.png?rev=1475479\";s:2:\"1x\";s:64:\"https://ps.w.org/elementor/assets/banner-772x250.png?rev=1475479\";}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:5:\"6.5.2\";s:12:\"requires_php\";s:3:\"5.6\";}s:10:\"conditions\";a:0:{}}}','no'),(536,'_site_transient_update_core','O:8:\"stdClass\":4:{s:7:\"updates\";a:1:{i:0;O:8:\"stdClass\":10:{s:8:\"response\";s:6:\"latest\";s:8:\"download\";s:59:\"https://downloads.wordpress.org/release/wordpress-6.5.3.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:59:\"https://downloads.wordpress.org/release/wordpress-6.5.3.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/release/wordpress-6.5.3-no-content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/release/wordpress-6.5.3-new-bundled.zip\";s:7:\"partial\";s:0:\"\";s:8:\"rollback\";s:0:\"\";}s:7:\"current\";s:5:\"6.5.3\";s:7:\"version\";s:5:\"6.5.3\";s:11:\"php_version\";s:5:\"7.0.0\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"6.4\";s:15:\"partial_version\";s:0:\"\";}}s:12:\"last_checked\";i:1717189549;s:15:\"version_checked\";s:5:\"6.5.3\";s:12:\"translations\";a:0:{}}','no'),(540,'_transient_timeout_elementor_remote_info_api_data_3.21.5','1715345608','no'),(541,'_transient_elementor_remote_info_api_data_3.21.5','a:4:{s:9:\"timestamp\";s:10:\"1715298888\";s:14:\"upgrade_notice\";a:3:{s:7:\"version\";s:5:\"2.0.0\";s:7:\"message\";s:0:\"\";s:11:\"update_link\";s:0:\"\";}s:11:\"pro_widgets\";a:75:{i:0;a:4:{s:4:\"name\";s:5:\"posts\";s:5:\"title\";s:5:\"Posts\";s:4:\"icon\";s:15:\"eicon-post-list\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:1;a:4:{s:4:\"name\";s:9:\"portfolio\";s:5:\"title\";s:9:\"Portfolio\";s:4:\"icon\";s:18:\"eicon-gallery-grid\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:2;a:4:{s:4:\"name\";s:9:\"mega-menu\";s:5:\"title\";s:4:\"Menu\";s:4:\"icon\";s:15:\"eicon-mega-menu\";s:10:\"categories\";s:33:\"[\"pro-elements\",\"theme-elements\"]\";}i:3;a:4:{s:4:\"name\";s:4:\"form\";s:5:\"title\";s:4:\"Form\";s:4:\"icon\";s:21:\"eicon-form-horizontal\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:4;a:4:{s:4:\"name\";s:9:\"loop-grid\";s:5:\"title\";s:9:\"Loop Grid\";s:4:\"icon\";s:18:\"eicon-loop-builder\";s:10:\"categories\";s:33:\"[\"pro-elements\",\"theme-elements\"]\";}i:5;a:4:{s:4:\"name\";s:13:\"loop-carousel\";s:5:\"title\";s:13:\"Loop Carousel\";s:4:\"icon\";s:19:\"eicon-carousel-loop\";s:10:\"categories\";s:33:\"[\"pro-elements\",\"theme-elements\"]\";}i:6;a:4:{s:4:\"name\";s:7:\"gallery\";s:5:\"title\";s:7:\"Gallery\";s:4:\"icon\";s:23:\"eicon-gallery-justified\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:7;a:4:{s:4:\"name\";s:17:\"animated-headline\";s:5:\"title\";s:17:\"Animated Headline\";s:4:\"icon\";s:23:\"eicon-animated-headline\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:8;a:4:{s:4:\"name\";s:10:\"price-list\";s:5:\"title\";s:10:\"Price List\";s:4:\"icon\";s:16:\"eicon-price-list\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:9;a:4:{s:4:\"name\";s:11:\"price-table\";s:5:\"title\";s:11:\"Price Table\";s:4:\"icon\";s:17:\"eicon-price-table\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:10;a:4:{s:4:\"name\";s:8:\"flip-box\";s:5:\"title\";s:8:\"Flip Box\";s:4:\"icon\";s:14:\"eicon-flip-box\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:11;a:4:{s:4:\"name\";s:14:\"call-to-action\";s:5:\"title\";s:14:\"Call to Action\";s:4:\"icon\";s:20:\"eicon-image-rollover\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:12;a:4:{s:4:\"name\";s:14:\"media-carousel\";s:5:\"title\";s:14:\"Media Carousel\";s:4:\"icon\";s:20:\"eicon-media-carousel\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:13;a:4:{s:4:\"name\";s:15:\"nested-carousel\";s:5:\"title\";s:8:\"Carousel\";s:4:\"icon\";s:21:\"eicon-nested-carousel\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:14;a:4:{s:4:\"name\";s:9:\"countdown\";s:5:\"title\";s:9:\"Countdown\";s:4:\"icon\";s:15:\"eicon-countdown\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:15;a:4:{s:4:\"name\";s:13:\"share-buttons\";s:5:\"title\";s:13:\"Share Buttons\";s:4:\"icon\";s:11:\"eicon-share\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:16;a:4:{s:4:\"name\";s:10:\"blockquote\";s:5:\"title\";s:10:\"Blockquote\";s:4:\"icon\";s:16:\"eicon-blockquote\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:17;a:4:{s:4:\"name\";s:6:\"lottie\";s:5:\"title\";s:6:\"Lottie\";s:4:\"icon\";s:12:\"eicon-lottie\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:18;a:4:{s:4:\"name\";s:7:\"hotspot\";s:5:\"title\";s:7:\"Hotspot\";s:4:\"icon\";s:19:\"eicon-image-hotspot\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:19;a:4:{s:4:\"name\";s:13:\"paypal-button\";s:5:\"title\";s:13:\"PayPal Button\";s:4:\"icon\";s:19:\"eicon-paypal-button\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:20;a:4:{s:4:\"name\";s:14:\"code-highlight\";s:5:\"title\";s:14:\"Code Highlight\";s:4:\"icon\";s:20:\"eicon-code-highlight\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:21;a:4:{s:4:\"name\";s:14:\"video-playlist\";s:5:\"title\";s:14:\"Video Playlist\";s:4:\"icon\";s:20:\"eicon-video-playlist\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:22;a:4:{s:4:\"name\";s:8:\"template\";s:5:\"title\";s:8:\"Template\";s:4:\"icon\";s:19:\"eicon-document-file\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:23;a:4:{s:4:\"name\";s:13:\"stripe-button\";s:5:\"title\";s:13:\"Stripe Button\";s:4:\"icon\";s:19:\"eicon-stripe-button\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:24;a:4:{s:4:\"name\";s:16:\"progress-tracker\";s:5:\"title\";s:16:\"Progress Tracker\";s:4:\"icon\";s:22:\"eicon-progress-tracker\";s:10:\"categories\";s:40:\"[\"pro-elements\",\"theme-elements-single\"]\";}i:25;a:4:{s:4:\"name\";s:8:\"nav-menu\";s:5:\"title\";s:8:\"Nav Menu\";s:4:\"icon\";s:14:\"eicon-nav-menu\";s:10:\"categories\";s:33:\"[\"pro-elements\",\"theme-elements\"]\";}i:26;a:4:{s:4:\"name\";s:17:\"table-of-contents\";s:5:\"title\";s:17:\"Table of Contents\";s:4:\"icon\";s:23:\"eicon-table-of-contents\";s:10:\"categories\";s:33:\"[\"pro-elements\",\"theme-elements\"]\";}i:27;a:4:{s:4:\"name\";s:5:\"login\";s:5:\"title\";s:5:\"Login\";s:4:\"icon\";s:15:\"eicon-lock-user\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:28;a:4:{s:4:\"name\";s:6:\"slides\";s:5:\"title\";s:6:\"Slides\";s:4:\"icon\";s:12:\"eicon-slides\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:29;a:4:{s:4:\"name\";s:20:\"testimonial-carousel\";s:5:\"title\";s:20:\"Testimonial Carousel\";s:4:\"icon\";s:26:\"eicon-testimonial-carousel\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:30;a:4:{s:4:\"name\";s:7:\"reviews\";s:5:\"title\";s:7:\"Reviews\";s:4:\"icon\";s:12:\"eicon-review\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:31;a:4:{s:4:\"name\";s:15:\"facebook-button\";s:5:\"title\";s:15:\"Facebook Button\";s:4:\"icon\";s:23:\"eicon-facebook-like-box\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:32;a:4:{s:4:\"name\";s:17:\"facebook-comments\";s:5:\"title\";s:17:\"Facebook Comments\";s:4:\"icon\";s:23:\"eicon-facebook-comments\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:33;a:4:{s:4:\"name\";s:14:\"facebook-embed\";s:5:\"title\";s:14:\"Facebook Embed\";s:4:\"icon\";s:14:\"eicon-fb-embed\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:34;a:4:{s:4:\"name\";s:13:\"facebook-page\";s:5:\"title\";s:13:\"Facebook Page\";s:4:\"icon\";s:13:\"eicon-fb-feed\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:35;a:4:{s:4:\"name\";s:15:\"theme-site-logo\";s:5:\"title\";s:9:\"Site Logo\";s:4:\"icon\";s:15:\"eicon-site-logo\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:36;a:4:{s:4:\"name\";s:16:\"theme-site-title\";s:5:\"title\";s:10:\"Site Title\";s:4:\"icon\";s:16:\"eicon-site-title\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:37;a:4:{s:4:\"name\";s:16:\"theme-page-title\";s:5:\"title\";s:10:\"Page Title\";s:4:\"icon\";s:19:\"eicon-archive-title\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:38;a:4:{s:4:\"name\";s:16:\"theme-post-title\";s:5:\"title\";s:10:\"Post Title\";s:4:\"icon\";s:16:\"eicon-post-title\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:39;a:4:{s:4:\"name\";s:18:\"theme-post-excerpt\";s:5:\"title\";s:12:\"Post Excerpt\";s:4:\"icon\";s:18:\"eicon-post-excerpt\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:40;a:4:{s:4:\"name\";s:25:\"theme-post-featured-image\";s:5:\"title\";s:14:\"Featured Image\";s:4:\"icon\";s:20:\"eicon-featured-image\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:41;a:4:{s:4:\"name\";s:19:\"theme-archive-title\";s:5:\"title\";s:13:\"Archive Title\";s:4:\"icon\";s:19:\"eicon-archive-title\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:42;a:4:{s:4:\"name\";s:13:\"archive-posts\";s:5:\"title\";s:13:\"Archive Posts\";s:4:\"icon\";s:19:\"eicon-archive-posts\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:43;a:4:{s:4:\"name\";s:11:\"search-form\";s:5:\"title\";s:11:\"Search Form\";s:4:\"icon\";s:17:\"eicon-site-search\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:44;a:4:{s:4:\"name\";s:10:\"author-box\";s:5:\"title\";s:10:\"Author Box\";s:4:\"icon\";s:12:\"eicon-person\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:45;a:4:{s:4:\"name\";s:13:\"post-comments\";s:5:\"title\";s:13:\"Post Comments\";s:4:\"icon\";s:14:\"eicon-comments\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:46;a:4:{s:4:\"name\";s:15:\"post-navigation\";s:5:\"title\";s:15:\"Post Navigation\";s:4:\"icon\";s:21:\"eicon-post-navigation\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:47;a:4:{s:4:\"name\";s:9:\"post-info\";s:5:\"title\";s:9:\"Post Info\";s:4:\"icon\";s:15:\"eicon-post-info\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:48;a:4:{s:4:\"name\";s:7:\"sitemap\";s:5:\"title\";s:7:\"Sitemap\";s:4:\"icon\";s:13:\"eicon-sitemap\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:49;a:4:{s:4:\"name\";s:11:\"breadcrumbs\";s:5:\"title\";s:11:\"Breadcrumbs\";s:4:\"icon\";s:11:\"eicon-yoast\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:50;a:4:{s:4:\"name\";s:21:\"woocommerce-menu-cart\";s:5:\"title\";s:9:\"Menu Cart\";s:4:\"icon\";s:10:\"eicon-cart\";s:10:\"categories\";s:41:\"[\"theme-elements\",\"woocommerce-elements\"]\";}i:51;a:4:{s:4:\"name\";s:19:\"wc-archive-products\";s:5:\"title\";s:16:\"Archive Products\";s:4:\"icon\";s:14:\"eicon-products\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:52;a:4:{s:4:\"name\";s:31:\"woocommerce-archive-description\";s:5:\"title\";s:19:\"Archive Description\";s:4:\"icon\";s:25:\"eicon-product-description\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:53;a:4:{s:4:\"name\";s:20:\"woocommerce-products\";s:5:\"title\";s:8:\"Products\";s:4:\"icon\";s:14:\"eicon-products\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:54;a:4:{s:4:\"name\";s:22:\"woocommerce-breadcrumb\";s:5:\"title\";s:23:\"WooCommerce Breadcrumbs\";s:4:\"icon\";s:25:\"eicon-product-breadcrumbs\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:55;a:4:{s:4:\"name\";s:14:\"wc-add-to-cart\";s:5:\"title\";s:18:\"Custom Add To Cart\";s:4:\"icon\";s:17:\"eicon-woocommerce\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:56;a:4:{s:4:\"name\";s:11:\"wc-elements\";s:5:\"title\";s:17:\"WooCommerce Pages\";s:4:\"icon\";s:19:\"eicon-product-pages\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:57;a:4:{s:4:\"name\";s:13:\"wc-categories\";s:5:\"title\";s:18:\"Product Categories\";s:4:\"icon\";s:24:\"eicon-product-categories\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:58;a:4:{s:4:\"name\";s:25:\"woocommerce-product-title\";s:5:\"title\";s:13:\"Product Title\";s:4:\"icon\";s:19:\"eicon-product-title\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:59;a:4:{s:4:\"name\";s:26:\"woocommerce-product-images\";s:5:\"title\";s:14:\"Product Images\";s:4:\"icon\";s:20:\"eicon-product-images\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:60;a:4:{s:4:\"name\";s:25:\"woocommerce-product-price\";s:5:\"title\";s:13:\"Product Price\";s:4:\"icon\";s:19:\"eicon-product-price\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:61;a:4:{s:4:\"name\";s:31:\"woocommerce-product-add-to-cart\";s:5:\"title\";s:11:\"Add To Cart\";s:4:\"icon\";s:25:\"eicon-product-add-to-cart\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:62;a:4:{s:4:\"name\";s:26:\"woocommerce-product-rating\";s:5:\"title\";s:14:\"Product Rating\";s:4:\"icon\";s:20:\"eicon-product-rating\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:63;a:4:{s:4:\"name\";s:25:\"woocommerce-product-stock\";s:5:\"title\";s:13:\"Product Stock\";s:4:\"icon\";s:19:\"eicon-product-stock\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:64;a:4:{s:4:\"name\";s:24:\"woocommerce-product-meta\";s:5:\"title\";s:12:\"Product Meta\";s:4:\"icon\";s:18:\"eicon-product-meta\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:65;a:4:{s:4:\"name\";s:37:\"woocommerce-product-short-description\";s:5:\"title\";s:17:\"Short Description\";s:4:\"icon\";s:25:\"eicon-product-description\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:66;a:4:{s:4:\"name\";s:29:\"woocommerce-product-data-tabs\";s:5:\"title\";s:17:\"Product Data Tabs\";s:4:\"icon\";s:18:\"eicon-product-tabs\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:67;a:4:{s:4:\"name\";s:42:\"woocommerce-product-additional-information\";s:5:\"title\";s:22:\"Additional Information\";s:4:\"icon\";s:19:\" eicon-product-info\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:68;a:4:{s:4:\"name\";s:27:\"woocommerce-product-related\";s:5:\"title\";s:15:\"Product Related\";s:4:\"icon\";s:21:\"eicon-product-related\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:69;a:4:{s:4:\"name\";s:26:\"woocommerce-product-upsell\";s:5:\"title\";s:7:\"Upsells\";s:4:\"icon\";s:20:\"eicon-product-upsell\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:70;a:4:{s:4:\"name\";s:25:\"woocommerce-checkout-page\";s:5:\"title\";s:8:\"Checkout\";s:4:\"icon\";s:14:\"eicon-checkout\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:71;a:4:{s:4:\"name\";s:16:\"woocommerce-cart\";s:5:\"title\";s:4:\"Cart\";s:4:\"icon\";s:14:\"eicon-woo-cart\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:72;a:4:{s:4:\"name\";s:22:\"woocommerce-my-account\";s:5:\"title\";s:10:\"My Account\";s:4:\"icon\";s:16:\"eicon-my-account\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:73;a:4:{s:4:\"name\";s:28:\"woocommerce-purchase-summary\";s:5:\"title\";s:16:\"Purchase Summary\";s:4:\"icon\";s:22:\"eicon-purchase-summary\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:74;a:4:{s:4:\"name\";s:19:\"woocommerce-notices\";s:5:\"title\";s:19:\"WooCommerce Notices\";s:4:\"icon\";s:25:\"eicon-woocommerce-notices\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}}s:17:\"canary_deployment\";a:2:{s:11:\"plugin_info\";a:11:{s:2:\"id\";s:23:\"w.org/plugins/elementor\";s:4:\"slug\";s:9:\"elementor\";s:6:\"plugin\";s:23:\"elementor/elementor.php\";s:11:\"new_version\";s:5:\"3.6.0\";s:7:\"package\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.6.0.zip\";s:3:\"url\";s:40:\"https://wordpress.org/plugins/elementor/\";s:5:\"icons\";a:3:{s:2:\"2x\";s:62:\"https://ps.w.org/elementor/assets/icon-256x256.png?rev=1427768\";s:2:\"1x\";s:54:\"https://ps.w.org/elementor/assets/icon.svg?rev=1426809\";s:3:\"svg\";s:54:\"https://ps.w.org/elementor/assets/icon.svg?rev=1426809\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:65:\"https://ps.w.org/elementor/assets/banner-1544x500.png?rev=1475479\";s:2:\"1x\";s:64:\"https://ps.w.org/elementor/assets/banner-772x250.png?rev=1475479\";}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:5:\"6.5.3\";s:12:\"requires_php\";s:3:\"5.6\";}s:10:\"conditions\";a:0:{}}}','no'),(566,'_site_transient_update_plugins','O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1717189551;s:8:\"response\";a:0:{}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:51:\"all-in-one-wp-migration/all-in-one-wp-migration.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:37:\"w.org/plugins/all-in-one-wp-migration\";s:4:\"slug\";s:23:\"all-in-one-wp-migration\";s:6:\"plugin\";s:51:\"all-in-one-wp-migration/all-in-one-wp-migration.php\";s:11:\"new_version\";s:4:\"7.82\";s:3:\"url\";s:54:\"https://wordpress.org/plugins/all-in-one-wp-migration/\";s:7:\"package\";s:71:\"https://downloads.wordpress.org/plugin/all-in-one-wp-migration.7.82.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:76:\"https://ps.w.org/all-in-one-wp-migration/assets/icon-256x256.png?rev=2458334\";s:2:\"1x\";s:76:\"https://ps.w.org/all-in-one-wp-migration/assets/icon-128x128.png?rev=2458334\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:79:\"https://ps.w.org/all-in-one-wp-migration/assets/banner-1544x500.png?rev=2990457\";s:2:\"1x\";s:78:\"https://ps.w.org/all-in-one-wp-migration/assets/banner-772x250.png?rev=2990457\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"3.3\";}s:23:\"elementor/elementor.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:23:\"w.org/plugins/elementor\";s:4:\"slug\";s:9:\"elementor\";s:6:\"plugin\";s:23:\"elementor/elementor.php\";s:11:\"new_version\";s:6:\"3.21.8\";s:3:\"url\";s:40:\"https://wordpress.org/plugins/elementor/\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.21.8.zip\";s:5:\"icons\";a:2:{s:2:\"1x\";s:54:\"https://ps.w.org/elementor/assets/icon.svg?rev=2597493\";s:3:\"svg\";s:54:\"https://ps.w.org/elementor/assets/icon.svg?rev=2597493\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:65:\"https://ps.w.org/elementor/assets/banner-1544x500.png?rev=3005087\";s:2:\"1x\";s:64:\"https://ps.w.org/elementor/assets/banner-772x250.png?rev=3005087\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"6.0\";}s:51:\"header-footer-elementor/header-footer-elementor.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:37:\"w.org/plugins/header-footer-elementor\";s:4:\"slug\";s:23:\"header-footer-elementor\";s:6:\"plugin\";s:51:\"header-footer-elementor/header-footer-elementor.php\";s:11:\"new_version\";s:6:\"1.6.35\";s:3:\"url\";s:54:\"https://wordpress.org/plugins/header-footer-elementor/\";s:7:\"package\";s:73:\"https://downloads.wordpress.org/plugin/header-footer-elementor.1.6.35.zip\";s:5:\"icons\";a:2:{s:2:\"1x\";s:68:\"https://ps.w.org/header-footer-elementor/assets/icon.svg?rev=2813167\";s:3:\"svg\";s:68:\"https://ps.w.org/header-footer-elementor/assets/icon.svg?rev=2813167\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:79:\"https://ps.w.org/header-footer-elementor/assets/banner-1544x500.jpg?rev=2813167\";s:2:\"1x\";s:78:\"https://ps.w.org/header-footer-elementor/assets/banner-772x250.jpg?rev=2813167\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.4\";}s:37:\"elementskit-lite/elementskit-lite.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:30:\"w.org/plugins/elementskit-lite\";s:4:\"slug\";s:16:\"elementskit-lite\";s:6:\"plugin\";s:37:\"elementskit-lite/elementskit-lite.php\";s:11:\"new_version\";s:5:\"3.1.4\";s:3:\"url\";s:47:\"https://wordpress.org/plugins/elementskit-lite/\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/plugin/elementskit-lite.3.1.4.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:69:\"https://ps.w.org/elementskit-lite/assets/icon-256x256.gif?rev=2518175\";s:2:\"1x\";s:69:\"https://ps.w.org/elementskit-lite/assets/icon-128x128.gif?rev=2518175\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:72:\"https://ps.w.org/elementskit-lite/assets/banner-1544x500.png?rev=2118488\";s:2:\"1x\";s:71:\"https://ps.w.org/elementskit-lite/assets/banner-772x250.png?rev=2118488\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.0\";}s: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:39:\"jeg-elementor-kit/jeg-elementor-kit.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:31:\"w.org/plugins/jeg-elementor-kit\";s:4:\"slug\";s:17:\"jeg-elementor-kit\";s:6:\"plugin\";s:39:\"jeg-elementor-kit/jeg-elementor-kit.php\";s:11:\"new_version\";s:5:\"2.6.5\";s:3:\"url\";s:48:\"https://wordpress.org/plugins/jeg-elementor-kit/\";s:7:\"package\";s:66:\"https://downloads.wordpress.org/plugin/jeg-elementor-kit.2.6.5.zip\";s:5:\"icons\";a:2:{s:2:\"1x\";s:62:\"https://ps.w.org/jeg-elementor-kit/assets/icon.svg?rev=2587455\";s:3:\"svg\";s:62:\"https://ps.w.org/jeg-elementor-kit/assets/icon.svg?rev=2587455\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:73:\"https://ps.w.org/jeg-elementor-kit/assets/banner-1544x500.png?rev=2575635\";s:2:\"1x\";s:72:\"https://ps.w.org/jeg-elementor-kit/assets/banner-772x250.png?rev=2575635\";}s:11:\"banners_rtl\";a:2:{s:2:\"2x\";s:77:\"https://ps.w.org/jeg-elementor-kit/assets/banner-1544x500-rtl.png?rev=2575635\";s:2:\"1x\";s:76:\"https://ps.w.org/jeg-elementor-kit/assets/banner-772x250-rtl.png?rev=2575635\";}s:8:\"requires\";s:3:\"5.0\";}s:19:\"metform/metform.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:21:\"w.org/plugins/metform\";s:4:\"slug\";s:7:\"metform\";s:6:\"plugin\";s:19:\"metform/metform.php\";s:11:\"new_version\";s:5:\"3.8.8\";s:3:\"url\";s:38:\"https://wordpress.org/plugins/metform/\";s:7:\"package\";s:56:\"https://downloads.wordpress.org/plugin/metform.3.8.8.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:60:\"https://ps.w.org/metform/assets/icon-256x256.png?rev=2544152\";s:2:\"1x\";s:60:\"https://ps.w.org/metform/assets/icon-128x128.png?rev=2544152\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:63:\"https://ps.w.org/metform/assets/banner-1544x500.png?rev=2544152\";s:2:\"1x\";s:62:\"https://ps.w.org/metform/assets/banner-772x250.png?rev=2544152\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.0\";}s:43:\"template-kit-import/template-kit-import.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:33:\"w.org/plugins/template-kit-import\";s:4:\"slug\";s:19:\"template-kit-import\";s:6:\"plugin\";s:43:\"template-kit-import/template-kit-import.php\";s:11:\"new_version\";s:6:\"1.0.15\";s:3:\"url\";s:50:\"https://wordpress.org/plugins/template-kit-import/\";s:7:\"package\";s:69:\"https://downloads.wordpress.org/plugin/template-kit-import.1.0.15.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:72:\"https://ps.w.org/template-kit-import/assets/icon-256x256.png?rev=2228216\";s:2:\"1x\";s:72:\"https://ps.w.org/template-kit-import/assets/icon-128x128.png?rev=2228216\";}s:7:\"banners\";a:0:{}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.3\";}}s:7:\"checked\";a:10:{s:19:\"akismet/akismet.php\";s:5:\"5.3.2\";s:51:\"all-in-one-wp-migration/all-in-one-wp-migration.php\";s:4:\"7.82\";s:91:\"all-in-one-wp-migration-unlimited-extension/all-in-one-wp-migration-unlimited-extension.php\";s:4:\"2.53\";s:23:\"elementor/elementor.php\";s:6:\"3.21.8\";s:51:\"header-footer-elementor/header-footer-elementor.php\";s:6:\"1.6.35\";s:37:\"elementskit-lite/elementskit-lite.php\";s:5:\"3.1.4\";s:9:\"hello.php\";s:5:\"1.7.2\";s:39:\"jeg-elementor-kit/jeg-elementor-kit.php\";s:5:\"2.6.5\";s:19:\"metform/metform.php\";s:5:\"3.8.8\";s:43:\"template-kit-import/template-kit-import.php\";s:6:\"1.0.15\";}}','no'),(567,'_site_transient_timeout_theme_roots','1717104900','no'),(568,'_site_transient_theme_roots','a:4:{s:15:\"hello-elementor\";s:7:\"/themes\";s:16:\"twentytwentyfour\";s:7:\"/themes\";s:17:\"twentytwentythree\";s:7:\"/themes\";s:15:\"twentytwentytwo\";s:7:\"/themes\";}','no');
/*!40000 ALTER TABLE `wp_options` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_postmeta`
--

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

--
-- Dumping data for table `wp_postmeta`
--

LOCK TABLES `wp_postmeta` WRITE;
/*!40000 ALTER TABLE `wp_postmeta` DISABLE KEYS */;
INSERT INTO `wp_postmeta` VALUES (1,2,'_wp_page_template','default'),(2,3,'_wp_page_template','default'),(3,5,'_elementor_edit_mode','builder'),(4,5,'_elementor_template_type','kit'),(5,6,'envato_tk_manifest','a:7:{s:16:\"manifest_version\";s:6:\"1.0.21\";s:5:\"title\";s:6:\"Lessan\";s:12:\"page_builder\";s:9:\"elementor\";s:11:\"kit_version\";s:5:\"1.0.1\";s:9:\"templates\";a:14:{i:0;a:9:{s:4:\"name\";s:17:\"Global Kit Styles\";s:10:\"screenshot\";s:33:\"screenshots/global-kit-styles.jpg\";s:6:\"source\";s:21:\"templates/global.json\";s:11:\"preview_url\";s:19:\"https://kitpro.site\";s:4:\"type\";s:7:\"section\";s:8:\"category\";s:4:\"page\";s:8:\"metadata\";a:4:{s:13:\"template_type\";s:13:\"global-styles\";s:14:\"include_in_zip\";s:1:\"1\";s:22:\"elementor_pro_required\";N;s:31:\"additional_template_information\";a:1:{i:0;s:85:\"These are the global theme styles configured through the Elementor Theme Styles area.\";}}s:22:\"elementor_pro_required\";b:0;s:7:\"imports\";a:1:{i:0;a:1:{s:20:\"imported_template_id\";i:8;}}}i:1;a:9:{s:4:\"name\";s:4:\"Home\";s:10:\"screenshot\";s:20:\"screenshots/home.jpg\";s:6:\"source\";s:19:\"templates/home.json\";s:11:\"preview_url\";s:45:\"https://kitpro.site/lessan/template-kit/home/\";s:4:\"type\";s:7:\"section\";s:8:\"category\";s:4:\"page\";s:8:\"metadata\";a:3:{s:13:\"template_type\";s:11:\"single-home\";s:14:\"include_in_zip\";s:1:\"1\";s:22:\"elementor_pro_required\";N;}s:22:\"elementor_pro_required\";b:0;s:7:\"imports\";a:1:{i:0;a:1:{s:20:\"imported_template_id\";i:90;}}}i:2;a:8:{s:4:\"name\";s:8:\"About Us\";s:10:\"screenshot\";s:24:\"screenshots/about-us.jpg\";s:6:\"source\";s:23:\"templates/about-us.json\";s:11:\"preview_url\";s:49:\"https://kitpro.site/lessan/template-kit/about-us/\";s:4:\"type\";s:4:\"page\";s:8:\"category\";s:4:\"page\";s:8:\"metadata\";a:3:{s:13:\"template_type\";s:11:\"single-page\";s:14:\"include_in_zip\";s:1:\"1\";s:22:\"elementor_pro_required\";N;}s:22:\"elementor_pro_required\";b:0;}i:3;a:9:{s:4:\"name\";s:7:\"Service\";s:10:\"screenshot\";s:23:\"screenshots/service.jpg\";s:6:\"source\";s:22:\"templates/service.json\";s:11:\"preview_url\";s:48:\"https://kitpro.site/lessan/template-kit/service/\";s:4:\"type\";s:4:\"page\";s:8:\"category\";s:4:\"page\";s:8:\"metadata\";a:3:{s:13:\"template_type\";s:11:\"single-page\";s:14:\"include_in_zip\";s:1:\"1\";s:22:\"elementor_pro_required\";N;}s:22:\"elementor_pro_required\";b:0;s:7:\"imports\";a:1:{i:0;a:1:{s:20:\"imported_template_id\";i:82;}}}i:4;a:9:{s:4:\"name\";s:10:\"Contact Us\";s:10:\"screenshot\";s:26:\"screenshots/contact-us.jpg\";s:6:\"source\";s:25:\"templates/contact-us.json\";s:11:\"preview_url\";s:51:\"https://kitpro.site/lessan/template-kit/contact-us/\";s:4:\"type\";s:4:\"page\";s:8:\"category\";s:4:\"page\";s:8:\"metadata\";a:3:{s:13:\"template_type\";s:11:\"single-page\";s:14:\"include_in_zip\";s:1:\"1\";s:22:\"elementor_pro_required\";N;}s:22:\"elementor_pro_required\";b:0;s:7:\"imports\";a:1:{i:0;a:1:{s:20:\"imported_template_id\";i:59;}}}i:5;a:9:{s:4:\"name\";s:7:\"Teacher\";s:10:\"screenshot\";s:23:\"screenshots/teacher.jpg\";s:6:\"source\";s:22:\"templates/teacher.json\";s:11:\"preview_url\";s:48:\"https://kitpro.site/lessan/template-kit/teacher/\";s:4:\"type\";s:4:\"page\";s:8:\"category\";s:4:\"page\";s:8:\"metadata\";a:3:{s:13:\"template_type\";s:11:\"single-page\";s:14:\"include_in_zip\";s:1:\"1\";s:22:\"elementor_pro_required\";N;}s:22:\"elementor_pro_required\";b:0;s:7:\"imports\";a:1:{i:0;a:1:{s:20:\"imported_template_id\";i:85;}}}i:6;a:9:{s:4:\"name\";s:5:\"Class\";s:10:\"screenshot\";s:21:\"screenshots/class.jpg\";s:6:\"source\";s:20:\"templates/class.json\";s:11:\"preview_url\";s:46:\"https://kitpro.site/lessan/template-kit/class/\";s:4:\"type\";s:4:\"page\";s:8:\"category\";s:4:\"page\";s:8:\"metadata\";a:3:{s:13:\"template_type\";s:11:\"single-page\";s:14:\"include_in_zip\";s:1:\"1\";s:22:\"elementor_pro_required\";N;}s:22:\"elementor_pro_required\";b:0;s:7:\"imports\";a:1:{i:0;a:1:{s:20:\"imported_template_id\";i:88;}}}i:7;a:9:{s:4:\"name\";s:12:\"Class-Detail\";s:10:\"screenshot\";s:28:\"screenshots/class-detail.jpg\";s:6:\"source\";s:27:\"templates/class-detail.json\";s:11:\"preview_url\";s:53:\"https://kitpro.site/lessan/template-kit/class-detail/\";s:4:\"type\";s:4:\"page\";s:8:\"category\";s:4:\"page\";s:8:\"metadata\";a:3:{s:13:\"template_type\";s:11:\"single-page\";s:14:\"include_in_zip\";s:1:\"1\";s:22:\"elementor_pro_required\";N;}s:22:\"elementor_pro_required\";b:0;s:7:\"imports\";a:1:{i:0;a:1:{s:20:\"imported_template_id\";i:78;}}}i:8;a:8:{s:4:\"name\";s:7:\"Pricing\";s:10:\"screenshot\";s:23:\"screenshots/pricing.jpg\";s:6:\"source\";s:22:\"templates/pricing.json\";s:11:\"preview_url\";s:48:\"https://kitpro.site/lessan/template-kit/pricing/\";s:4:\"type\";s:4:\"page\";s:8:\"category\";s:4:\"page\";s:8:\"metadata\";a:3:{s:13:\"template_type\";s:11:\"single-page\";s:14:\"include_in_zip\";s:1:\"1\";s:22:\"elementor_pro_required\";N;}s:22:\"elementor_pro_required\";b:0;}i:9;a:9:{s:4:\"name\";s:4:\"Blog\";s:10:\"screenshot\";s:20:\"screenshots/blog.jpg\";s:6:\"source\";s:19:\"templates/blog.json\";s:11:\"preview_url\";s:45:\"https://kitpro.site/lessan/template-kit/blog/\";s:4:\"type\";s:4:\"page\";s:8:\"category\";s:4:\"page\";s:8:\"metadata\";a:3:{s:13:\"template_type\";s:11:\"single-page\";s:14:\"include_in_zip\";s:1:\"1\";s:22:\"elementor_pro_required\";N;}s:22:\"elementor_pro_required\";b:0;s:7:\"imports\";a:1:{i:0;a:1:{s:20:\"imported_template_id\";i:72;}}}i:10;a:9:{s:4:\"name\";s:3:\"404\";s:10:\"screenshot\";s:19:\"screenshots/404.jpg\";s:6:\"source\";s:18:\"templates/404.json\";s:11:\"preview_url\";s:44:\"https://kitpro.site/lessan/template-kit/404/\";s:4:\"type\";s:4:\"page\";s:8:\"category\";s:4:\"page\";s:8:\"metadata\";a:3:{s:13:\"template_type\";s:11:\"single-page\";s:14:\"include_in_zip\";s:1:\"1\";s:22:\"elementor_pro_required\";N;}s:22:\"elementor_pro_required\";b:0;s:7:\"imports\";a:1:{i:0;a:1:{s:20:\"imported_template_id\";i:42;}}}i:11;a:9:{s:4:\"name\";s:15:\"Contact-Metform\";s:10:\"screenshot\";s:31:\"screenshots/contact-metform.jpg\";s:6:\"source\";s:30:\"templates/contact-metform.json\";s:11:\"preview_url\";s:56:\"https://kitpro.site/lessan/template-kit/contact-metform/\";s:4:\"type\";s:7:\"section\";s:8:\"category\";s:7:\"section\";s:8:\"metadata\";a:3:{s:13:\"template_type\";s:13:\"section-other\";s:14:\"include_in_zip\";s:1:\"1\";s:22:\"elementor_pro_required\";N;}s:22:\"elementor_pro_required\";b:0;s:7:\"imports\";a:1:{i:0;a:1:{s:20:\"imported_template_id\";i:21;}}}i:12;a:9:{s:4:\"name\";s:6:\"Header\";s:10:\"screenshot\";s:22:\"screenshots/header.jpg\";s:6:\"source\";s:21:\"templates/header.json\";s:11:\"preview_url\";s:47:\"https://kitpro.site/lessan/template-kit/header/\";s:4:\"type\";s:7:\"section\";s:8:\"category\";s:7:\"section\";s:8:\"metadata\";a:3:{s:13:\"template_type\";s:14:\"section-header\";s:14:\"include_in_zip\";s:1:\"1\";s:22:\"elementor_pro_required\";N;}s:22:\"elementor_pro_required\";b:0;s:7:\"imports\";a:1:{i:0;a:1:{s:20:\"imported_template_id\";i:36;}}}i:13;a:9:{s:4:\"name\";s:6:\"Footer\";s:10:\"screenshot\";s:22:\"screenshots/footer.jpg\";s:6:\"source\";s:21:\"templates/footer.json\";s:11:\"preview_url\";s:47:\"https://kitpro.site/lessan/template-kit/footer/\";s:4:\"type\";s:7:\"section\";s:8:\"category\";s:7:\"section\";s:8:\"metadata\";a:3:{s:13:\"template_type\";s:14:\"section-footer\";s:14:\"include_in_zip\";s:1:\"1\";s:22:\"elementor_pro_required\";N;}s:22:\"elementor_pro_required\";b:0;s:7:\"imports\";a:1:{i:0;a:1:{s:20:\"imported_template_id\";i:31;}}}}s:16:\"required_plugins\";a:5:{i:0;a:4:{s:4:\"name\";s:16:\"ElementsKit Lite\";s:7:\"version\";s:5:\"2.6.2\";s:4:\"file\";s:37:\"elementskit-lite/elementskit-lite.php\";s:6:\"author\";s:5:\"Wpmet\";}i:1;a:4:{s:4:\"name\";s:17:\"Jeg Elementor Kit\";s:7:\"version\";s:6:\"2.5.10\";s:4:\"file\";s:39:\"jeg-elementor-kit/jeg-elementor-kit.php\";s:6:\"author\";s:8:\"Jegtheme\";}i:2;a:4:{s:4:\"name\";s:33:\"Elementor Header & Footer Builder\";s:7:\"version\";s:5:\"1.6.9\";s:4:\"file\";s:51:\"header-footer-elementor/header-footer-elementor.php\";s:6:\"author\";s:31:\"Brainstorm Force, Nikhil Chavan\";}i:3;a:4:{s:4:\"name\";s:7:\"MetForm\";s:7:\"version\";s:5:\"3.2.1\";s:4:\"file\";s:19:\"metform/metform.php\";s:6:\"author\";s:5:\"Wpmet\";}i:4;a:4:{s:4:\"name\";s:9:\"Elementor\";s:7:\"version\";s:6:\"3.11.2\";s:4:\"file\";s:23:\"elementor/elementor.php\";s:6:\"author\";s:13:\"Elementor.com\";}}s:6:\"images\";a:44:{i:0;a:8:{s:8:\"filename\";s:10:\"2-copy.jpg\";s:13:\"thumbnail_url\";s:82:\"https://kitpro.site/lessan/wp-content/uploads/sites/159/2023/04/2-copy-800x533.jpg\";s:9:\"templates\";a:10:{i:0;a:2:{s:6:\"source\";s:19:\"templates/home.json\";s:4:\"name\";s:4:\"Home\";}i:1;a:2:{s:6:\"source\";s:23:\"templates/about-us.json\";s:4:\"name\";s:8:\"About Us\";}i:2;a:2:{s:6:\"source\";s:22:\"templates/service.json\";s:4:\"name\";s:7:\"Service\";}i:3;a:2:{s:6:\"source\";s:25:\"templates/contact-us.json\";s:4:\"name\";s:10:\"Contact Us\";}i:4;a:2:{s:6:\"source\";s:22:\"templates/teacher.json\";s:4:\"name\";s:7:\"Teacher\";}i:5;a:2:{s:6:\"source\";s:20:\"templates/class.json\";s:4:\"name\";s:5:\"Class\";}i:6;a:2:{s:6:\"source\";s:27:\"templates/class-detail.json\";s:4:\"name\";s:12:\"Class-Detail\";}i:7;a:2:{s:6:\"source\";s:22:\"templates/pricing.json\";s:4:\"name\";s:7:\"Pricing\";}i:8;a:2:{s:6:\"source\";s:19:\"templates/blog.json\";s:4:\"name\";s:4:\"Blog\";}i:9;a:2:{s:6:\"source\";s:18:\"templates/404.json\";s:4:\"name\";s:3:\"404\";}}s:8:\"filesize\";i:185374;s:10:\"dimensions\";a:2:{i:0;i:1500;i:1;i:1000;}s:12:\"image_source\";s:15:\"envato_elements\";s:15:\"person_or_place\";s:2:\"no\";s:10:\"image_urls\";s:50:\"https://elements.envato.com/collections/WVACSX3TU4\";}i:1;a:8:{s:8:\"filename\";s:8:\"boy3.png\";s:13:\"thumbnail_url\";s:80:\"https://kitpro.site/lessan/wp-content/uploads/sites/159/2023/04/boy3-800x800.png\";s:9:\"templates\";a:1:{i:0;a:2:{s:6:\"source\";s:19:\"templates/home.json\";s:4:\"name\";s:4:\"Home\";}}s:8:\"filesize\";i:123404;s:10:\"dimensions\";a:2:{i:0;i:1000;i:1;i:1000;}s:12:\"image_source\";s:15:\"envato_elements\";s:15:\"person_or_place\";s:3:\"yes\";s:10:\"image_urls\";s:50:\"https://elements.envato.com/collections/WVACSX3TU4\";}i:2;a:8:{s:8:\"filename\";s:6:\"c3.png\";s:13:\"thumbnail_url\";s:70:\"https://kitpro.site/lessan/wp-content/uploads/sites/159/2023/04/c3.png\";s:9:\"templates\";a:10:{i:0;a:2:{s:6:\"source\";s:19:\"templates/home.json\";s:4:\"name\";s:4:\"Home\";}i:1;a:2:{s:6:\"source\";s:23:\"templates/about-us.json\";s:4:\"name\";s:8:\"About Us\";}i:2;a:2:{s:6:\"source\";s:22:\"templates/service.json\";s:4:\"name\";s:7:\"Service\";}i:3;a:2:{s:6:\"source\";s:25:\"templates/contact-us.json\";s:4:\"name\";s:10:\"Contact Us\";}i:4;a:2:{s:6:\"source\";s:22:\"templates/teacher.json\";s:4:\"name\";s:7:\"Teacher\";}i:5;a:2:{s:6:\"source\";s:20:\"templates/class.json\";s:4:\"name\";s:5:\"Class\";}i:6;a:2:{s:6:\"source\";s:27:\"templates/class-detail.json\";s:4:\"name\";s:12:\"Class-Detail\";}i:7;a:2:{s:6:\"source\";s:22:\"templates/pricing.json\";s:4:\"name\";s:7:\"Pricing\";}i:8;a:2:{s:6:\"source\";s:19:\"templates/blog.json\";s:4:\"name\";s:4:\"Blog\";}i:9;a:2:{s:6:\"source\";s:18:\"templates/404.json\";s:4:\"name\";s:3:\"404\";}}s:8:\"filesize\";i:6943;s:10:\"dimensions\";a:2:{i:0;i:184;i:1;i:181;}s:12:\"image_source\";s:12:\"self_created\";s:15:\"person_or_place\";s:2:\"no\";s:10:\"image_urls\";s:0:\"\";}i:3;a:8:{s:8:\"filename\";s:8:\"edge.png\";s:13:\"thumbnail_url\";s:72:\"https://kitpro.site/lessan/wp-content/uploads/sites/159/2023/04/edge.png\";s:9:\"templates\";a:9:{i:0;a:2:{s:6:\"source\";s:19:\"templates/home.json\";s:4:\"name\";s:4:\"Home\";}i:1;a:2:{s:6:\"source\";s:23:\"templates/about-us.json\";s:4:\"name\";s:8:\"About Us\";}i:2;a:2:{s:6:\"source\";s:22:\"templates/service.json\";s:4:\"name\";s:7:\"Service\";}i:3;a:2:{s:6:\"source\";s:25:\"templates/contact-us.json\";s:4:\"name\";s:10:\"Contact Us\";}i:4;a:2:{s:6:\"source\";s:22:\"templates/teacher.json\";s:4:\"name\";s:7:\"Teacher\";}i:5;a:2:{s:6:\"source\";s:20:\"templates/class.json\";s:4:\"name\";s:5:\"Class\";}i:6;a:2:{s:6:\"source\";s:27:\"templates/class-detail.json\";s:4:\"name\";s:12:\"Class-Detail\";}i:7;a:2:{s:6:\"source\";s:22:\"templates/pricing.json\";s:4:\"name\";s:7:\"Pricing\";}i:8;a:2:{s:6:\"source\";s:19:\"templates/blog.json\";s:4:\"name\";s:4:\"Blog\";}}s:8:\"filesize\";i:1112;s:10:\"dimensions\";a:2:{i:0;i:324;i:1;i:287;}s:12:\"image_source\";s:12:\"self_created\";s:15:\"person_or_place\";s:2:\"no\";s:10:\"image_urls\";s:0:\"\";}i:4;a:8:{s:8:\"filename\";s:6:\"c1.png\";s:13:\"thumbnail_url\";s:70:\"https://kitpro.site/lessan/wp-content/uploads/sites/159/2023/04/c1.png\";s:9:\"templates\";a:6:{i:0;a:2:{s:6:\"source\";s:19:\"templates/home.json\";s:4:\"name\";s:4:\"Home\";}i:1;a:2:{s:6:\"source\";s:23:\"templates/about-us.json\";s:4:\"name\";s:8:\"About Us\";}i:2;a:2:{s:6:\"source\";s:22:\"templates/service.json\";s:4:\"name\";s:7:\"Service\";}i:3;a:2:{s:6:\"source\";s:20:\"templates/class.json\";s:4:\"name\";s:5:\"Class\";}i:4;a:2:{s:6:\"source\";s:19:\"templates/blog.json\";s:4:\"name\";s:4:\"Blog\";}i:5;a:2:{s:6:\"source\";s:18:\"templates/404.json\";s:4:\"name\";s:3:\"404\";}}s:8:\"filesize\";i:7379;s:10:\"dimensions\";a:2:{i:0;i:195;i:1;i:196;}s:12:\"image_source\";s:12:\"self_created\";s:15:\"person_or_place\";s:2:\"no\";s:10:\"image_urls\";s:0:\"\";}i:5;a:8:{s:8:\"filename\";s:6:\"c2.png\";s:13:\"thumbnail_url\";s:70:\"https://kitpro.site/lessan/wp-content/uploads/sites/159/2023/04/c2.png\";s:9:\"templates\";a:9:{i:0;a:2:{s:6:\"source\";s:19:\"templates/home.json\";s:4:\"name\";s:4:\"Home\";}i:1;a:2:{s:6:\"source\";s:23:\"templates/about-us.json\";s:4:\"name\";s:8:\"About Us\";}i:2;a:2:{s:6:\"source\";s:22:\"templates/service.json\";s:4:\"name\";s:7:\"Service\";}i:3;a:2:{s:6:\"source\";s:25:\"templates/contact-us.json\";s:4:\"name\";s:10:\"Contact Us\";}i:4;a:2:{s:6:\"source\";s:22:\"templates/teacher.json\";s:4:\"name\";s:7:\"Teacher\";}i:5;a:2:{s:6:\"source\";s:20:\"templates/class.json\";s:4:\"name\";s:5:\"Class\";}i:6;a:2:{s:6:\"source\";s:27:\"templates/class-detail.json\";s:4:\"name\";s:12:\"Class-Detail\";}i:7;a:2:{s:6:\"source\";s:22:\"templates/pricing.json\";s:4:\"name\";s:7:\"Pricing\";}i:8;a:2:{s:6:\"source\";s:19:\"templates/blog.json\";s:4:\"name\";s:4:\"Blog\";}}s:8:\"filesize\";i:6807;s:10:\"dimensions\";a:2:{i:0;i:179;i:1;i:177;}s:12:\"image_source\";s:12:\"self_created\";s:15:\"person_or_place\";s:2:\"no\";s:10:\"image_urls\";s:0:\"\";}i:6;a:8:{s:8:\"filename\";s:83:\"little-boy-is-having-online-lessons-by-using-lapto-2022-02-03-17-43-51-utc-copy.jpg\";s:13:\"thumbnail_url\";s:155:\"https://kitpro.site/lessan/wp-content/uploads/sites/159/2023/04/little-boy-is-having-online-lessons-by-using-lapto-2022-02-03-17-43-51-utc-copy-800x800.jpg\";s:9:\"templates\";a:1:{i:0;a:2:{s:6:\"source\";s:19:\"templates/home.json\";s:4:\"name\";s:4:\"Home\";}}s:8:\"filesize\";i:149559;s:10:\"dimensions\";a:2:{i:0;i:1000;i:1;i:1000;}s:12:\"image_source\";s:15:\"envato_elements\";s:15:\"person_or_place\";s:3:\"yes\";s:10:\"image_urls\";s:50:\"https://elements.envato.com/collections/WVACSX3TU4\";}i:7;a:8:{s:8:\"filename\";s:6:\"c4.png\";s:13:\"thumbnail_url\";s:70:\"https://kitpro.site/lessan/wp-content/uploads/sites/159/2023/04/c4.png\";s:9:\"templates\";a:9:{i:0;a:2:{s:6:\"source\";s:19:\"templates/home.json\";s:4:\"name\";s:4:\"Home\";}i:1;a:2:{s:6:\"source\";s:23:\"templates/about-us.json\";s:4:\"name\";s:8:\"About Us\";}i:2;a:2:{s:6:\"source\";s:22:\"templates/service.json\";s:4:\"name\";s:7:\"Service\";}i:3;a:2:{s:6:\"source\";s:25:\"templates/contact-us.json\";s:4:\"name\";s:10:\"Contact Us\";}i:4;a:2:{s:6:\"source\";s:22:\"templates/teacher.json\";s:4:\"name\";s:7:\"Teacher\";}i:5;a:2:{s:6:\"source\";s:20:\"templates/class.json\";s:4:\"name\";s:5:\"Class\";}i:6;a:2:{s:6:\"source\";s:27:\"templates/class-detail.json\";s:4:\"name\";s:12:\"Class-Detail\";}i:7;a:2:{s:6:\"source\";s:22:\"templates/pricing.json\";s:4:\"name\";s:7:\"Pricing\";}i:8;a:2:{s:6:\"source\";s:19:\"templates/blog.json\";s:4:\"name\";s:4:\"Blog\";}}s:8:\"filesize\";i:6932;s:10:\"dimensions\";a:2:{i:0;i:183;i:1;i:183;}s:12:\"image_source\";s:12:\"self_created\";s:15:\"person_or_place\";s:2:\"no\";s:10:\"image_urls\";s:0:\"\";}i:8;a:8:{s:8:\"filename\";s:9:\"edge2.png\";s:13:\"thumbnail_url\";s:73:\"https://kitpro.site/lessan/wp-content/uploads/sites/159/2023/04/edge2.png\";s:9:\"templates\";a:4:{i:0;a:2:{s:6:\"source\";s:19:\"templates/home.json\";s:4:\"name\";s:4:\"Home\";}i:1;a:2:{s:6:\"source\";s:23:\"templates/about-us.json\";s:4:\"name\";s:8:\"About Us\";}i:2;a:2:{s:6:\"source\";s:22:\"templates/service.json\";s:4:\"name\";s:7:\"Service\";}i:3;a:2:{s:6:\"source\";s:20:\"templates/class.json\";s:4:\"name\";s:5:\"Class\";}}s:8:\"filesize\";i:1114;s:10:\"dimensions\";a:2:{i:0;i:324;i:1;i:287;}s:12:\"image_source\";s:12:\"self_created\";s:15:\"person_or_place\";s:2:\"no\";s:10:\"image_urls\";s:0:\"\";}i:9;a:8:{s:8:\"filename\";s:59:\"kids-taking-exam-in-school-2022-06-29-19-26-45-utc-copy.jpg\";s:13:\"thumbnail_url\";s:131:\"https://kitpro.site/lessan/wp-content/uploads/sites/159/2023/04/kids-taking-exam-in-school-2022-06-29-19-26-45-utc-copy-800x533.jpg\";s:9:\"templates\";a:2:{i:0;a:2:{s:6:\"source\";s:19:\"templates/home.json\";s:4:\"name\";s:4:\"Home\";}i:1;a:2:{s:6:\"source\";s:20:\"templates/class.json\";s:4:\"name\";s:5:\"Class\";}}s:8:\"filesize\";i:225969;s:10:\"dimensions\";a:2:{i:0;i:1200;i:1;i:800;}s:12:\"image_source\";s:15:\"envato_elements\";s:15:\"person_or_place\";s:3:\"yes\";s:10:\"image_urls\";s:50:\"https://elements.envato.com/collections/WVACSX3TU4\";}i:10;a:8:{s:8:\"filename\";s:83:\"portrait-of-happy-caucasian-boy-standing-at-chalkb-2021-09-03-06-28-24-utc-copy.jpg\";s:13:\"thumbnail_url\";s:155:\"https://kitpro.site/lessan/wp-content/uploads/sites/159/2023/04/portrait-of-happy-caucasian-boy-standing-at-chalkb-2021-09-03-06-28-24-utc-copy-800x533.jpg\";s:9:\"templates\";a:3:{i:0;a:2:{s:6:\"source\";s:19:\"templates/home.json\";s:4:\"name\";s:4:\"Home\";}i:1;a:2:{s:6:\"source\";s:20:\"templates/class.json\";s:4:\"name\";s:5:\"Class\";}i:2;a:2:{s:6:\"source\";s:27:\"templates/class-detail.json\";s:4:\"name\";s:12:\"Class-Detail\";}}s:8:\"filesize\";i:140675;s:10:\"dimensions\";a:2:{i:0;i:1200;i:1;i:800;}s:12:\"image_source\";s:15:\"envato_elements\";s:15:\"person_or_place\";s:3:\"yes\";s:10:\"image_urls\";s:50:\"https://elements.envato.com/collections/WVACSX3TU4\";}i:11;a:8:{s:8:\"filename\";s:62:\"woman-learning-english-online-2021-08-26-15-34-41-utc-copy.jpg\";s:13:\"thumbnail_url\";s:134:\"https://kitpro.site/lessan/wp-content/uploads/sites/159/2023/04/woman-learning-english-online-2021-08-26-15-34-41-utc-copy-800x533.jpg\";s:9:\"templates\";a:2:{i:0;a:2:{s:6:\"source\";s:19:\"templates/home.json\";s:4:\"name\";s:4:\"Home\";}i:1;a:2:{s:6:\"source\";s:20:\"templates/class.json\";s:4:\"name\";s:5:\"Class\";}}s:8:\"filesize\";i:178715;s:10:\"dimensions\";a:2:{i:0;i:1200;i:1;i:800;}s:12:\"image_source\";s:15:\"envato_elements\";s:15:\"person_or_place\";s:3:\"yes\";s:10:\"image_urls\";s:50:\"https://elements.envato.com/collections/WVACSX3TU4\";}i:12;a:8:{s:8:\"filename\";s:10:\"3-copy.jpg\";s:13:\"thumbnail_url\";s:82:\"https://kitpro.site/lessan/wp-content/uploads/sites/159/2023/04/3-copy-800x533.jpg\";s:9:\"templates\";a:1:{i:0;a:2:{s:6:\"source\";s:19:\"templates/home.json\";s:4:\"name\";s:4:\"Home\";}}s:8:\"filesize\";i:208230;s:10:\"dimensions\";a:2:{i:0;i:1200;i:1;i:800;}s:12:\"image_source\";s:15:\"envato_elements\";s:15:\"person_or_place\";s:2:\"no\";s:10:\"image_urls\";s:50:\"https://elements.envato.com/collections/WVACSX3TU4\";}i:13;a:8:{s:8:\"filename\";s:40:\"aged-teacher-2021-09-24-03-26-41-utc.jpg\";s:13:\"thumbnail_url\";s:104:\"https://kitpro.site/lessan/wp-content/uploads/sites/159/2023/04/aged-teacher-2021-09-24-03-26-41-utc.jpg\";s:9:\"templates\";a:2:{i:0;a:2:{s:6:\"source\";s:19:\"templates/home.json\";s:4:\"name\";s:4:\"Home\";}i:1;a:2:{s:6:\"source\";s:23:\"templates/about-us.json\";s:4:\"name\";s:8:\"About Us\";}}s:8:\"filesize\";i:167503;s:10:\"dimensions\";a:2:{i:0;i:600;i:1;i:748;}s:12:\"image_source\";s:15:\"envato_elements\";s:15:\"person_or_place\";s:3:\"yes\";s:10:\"image_urls\";s:50:\"https://elements.envato.com/collections/WVACSX3TU4\";}i:14;a:8:{s:8:\"filename\";s:42:\"aged-teacher-2021-09-24-03-26-41-utc-2.png\";s:13:\"thumbnail_url\";s:106:\"https://kitpro.site/lessan/wp-content/uploads/sites/159/2023/04/aged-teacher-2021-09-24-03-26-41-utc-2.png\";s:9:\"templates\";a:2:{i:0;a:2:{s:6:\"source\";s:19:\"templates/home.json\";s:4:\"name\";s:4:\"Home\";}i:1;a:2:{s:6:\"source\";s:23:\"templates/about-us.json\";s:4:\"name\";s:8:\"About Us\";}}s:8:\"filesize\";i:187839;s:10:\"dimensions\";a:2:{i:0;i:600;i:1;i:748;}s:12:\"image_source\";s:15:\"envato_elements\";s:15:\"person_or_place\";s:3:\"yes\";s:10:\"image_urls\";s:50:\"https://elements.envato.com/collections/WVACSX3TU4\";}i:15;a:8:{s:8:\"filename\";s:46:\"boy-at-lesson-2021-09-24-03-25-58-utc-copy.jpg\";s:13:\"thumbnail_url\";s:118:\"https://kitpro.site/lessan/wp-content/uploads/sites/159/2023/04/boy-at-lesson-2021-09-24-03-25-58-utc-copy-800x533.jpg\";s:9:\"templates\";a:3:{i:0;a:2:{s:6:\"source\";s:19:\"templates/home.json\";s:4:\"name\";s:4:\"Home\";}i:1;a:2:{s:6:\"source\";s:23:\"templates/about-us.json\";s:4:\"name\";s:8:\"About Us\";}i:2;a:2:{s:6:\"source\";s:20:\"templates/class.json\";s:4:\"name\";s:5:\"Class\";}}s:8:\"filesize\";i:176932;s:10:\"dimensions\";a:2:{i:0;i:1500;i:1;i:1000;}s:12:\"image_source\";s:15:\"envato_elements\";s:15:\"person_or_place\";s:3:\"yes\";s:10:\"image_urls\";s:50:\"https://elements.envato.com/collections/WVACSX3TU4\";}i:16;a:8:{s:8:\"filename\";s:9:\"grade.png\";s:13:\"thumbnail_url\";s:73:\"https://kitpro.site/lessan/wp-content/uploads/sites/159/2023/04/grade.png\";s:9:\"templates\";a:3:{i:0;a:2:{s:6:\"source\";s:19:\"templates/home.json\";s:4:\"name\";s:4:\"Home\";}i:1;a:2:{s:6:\"source\";s:22:\"templates/service.json\";s:4:\"name\";s:7:\"Service\";}i:2;a:2:{s:6:\"source\";s:20:\"templates/class.json\";s:4:\"name\";s:5:\"Class\";}}s:8:\"filesize\";i:15083;s:10:\"dimensions\";a:2:{i:0;i:255;i:1;i:255;}s:12:\"image_source\";s:15:\"envato_elements\";s:15:\"person_or_place\";s:2:\"no\";s:10:\"image_urls\";s:50:\"https://elements.envato.com/collections/WVACSX3TU4\";}i:17;a:8:{s:8:\"filename\";s:9:\"chart.png\";s:13:\"thumbnail_url\";s:73:\"https://kitpro.site/lessan/wp-content/uploads/sites/159/2023/04/chart.png\";s:9:\"templates\";a:3:{i:0;a:2:{s:6:\"source\";s:19:\"templates/home.json\";s:4:\"name\";s:4:\"Home\";}i:1;a:2:{s:6:\"source\";s:22:\"templates/service.json\";s:4:\"name\";s:7:\"Service\";}i:2;a:2:{s:6:\"source\";s:20:\"templates/class.json\";s:4:\"name\";s:5:\"Class\";}}s:8:\"filesize\";i:11024;s:10:\"dimensions\";a:2:{i:0;i:255;i:1;i:255;}s:12:\"image_source\";s:15:\"envato_elements\";s:15:\"person_or_place\";s:2:\"no\";s:10:\"image_urls\";s:50:\"https://elements.envato.com/collections/WVACSX3TU4\";}i:18;a:8:{s:8:\"filename\";s:19:\"test-exam-sheet.png\";s:13:\"thumbnail_url\";s:83:\"https://kitpro.site/lessan/wp-content/uploads/sites/159/2023/04/test-exam-sheet.png\";s:9:\"templates\";a:3:{i:0;a:2:{s:6:\"source\";s:19:\"templates/home.json\";s:4:\"name\";s:4:\"Home\";}i:1;a:2:{s:6:\"source\";s:22:\"templates/service.json\";s:4:\"name\";s:7:\"Service\";}i:2;a:2:{s:6:\"source\";s:20:\"templates/class.json\";s:4:\"name\";s:5:\"Class\";}}s:8:\"filesize\";i:5416;s:10:\"dimensions\";a:2:{i:0;i:255;i:1;i:255;}s:12:\"image_source\";s:15:\"envato_elements\";s:15:\"person_or_place\";s:2:\"no\";s:10:\"image_urls\";s:50:\"https://elements.envato.com/collections/WVACSX3TU4\";}i:19;a:8:{s:8:\"filename\";s:18:\"schedule-sheet.png\";s:13:\"thumbnail_url\";s:82:\"https://kitpro.site/lessan/wp-content/uploads/sites/159/2023/04/schedule-sheet.png\";s:9:\"templates\";a:3:{i:0;a:2:{s:6:\"source\";s:19:\"templates/home.json\";s:4:\"name\";s:4:\"Home\";}i:1;a:2:{s:6:\"source\";s:22:\"templates/service.json\";s:4:\"name\";s:7:\"Service\";}i:2;a:2:{s:6:\"source\";s:20:\"templates/class.json\";s:4:\"name\";s:5:\"Class\";}}s:8:\"filesize\";i:7075;s:10:\"dimensions\";a:2:{i:0;i:255;i:1;i:255;}s:12:\"image_source\";s:15:\"envato_elements\";s:15:\"person_or_place\";s:2:\"no\";s:10:\"image_urls\";s:50:\"https://elements.envato.com/collections/WVACSX3TU4\";}i:20;a:8:{s:8:\"filename\";s:11:\"13-copy.jpg\";s:13:\"thumbnail_url\";s:83:\"https://kitpro.site/lessan/wp-content/uploads/sites/159/2023/04/13-copy-800x533.jpg\";s:9:\"templates\";a:9:{i:0;a:2:{s:6:\"source\";s:19:\"templates/home.json\";s:4:\"name\";s:4:\"Home\";}i:1;a:2:{s:6:\"source\";s:23:\"templates/about-us.json\";s:4:\"name\";s:8:\"About Us\";}i:2;a:2:{s:6:\"source\";s:22:\"templates/service.json\";s:4:\"name\";s:7:\"Service\";}i:3;a:2:{s:6:\"source\";s:25:\"templates/contact-us.json\";s:4:\"name\";s:10:\"Contact Us\";}i:4;a:2:{s:6:\"source\";s:22:\"templates/teacher.json\";s:4:\"name\";s:7:\"Teacher\";}i:5;a:2:{s:6:\"source\";s:20:\"templates/class.json\";s:4:\"name\";s:5:\"Class\";}i:6;a:2:{s:6:\"source\";s:27:\"templates/class-detail.json\";s:4:\"name\";s:12:\"Class-Detail\";}i:7;a:2:{s:6:\"source\";s:22:\"templates/pricing.json\";s:4:\"name\";s:7:\"Pricing\";}i:8;a:2:{s:6:\"source\";s:19:\"templates/blog.json\";s:4:\"name\";s:4:\"Blog\";}}s:8:\"filesize\";i:201413;s:10:\"dimensions\";a:2:{i:0;i:1200;i:1;i:800;}s:12:\"image_source\";s:15:\"envato_elements\";s:15:\"person_or_place\";s:2:\"no\";s:10:\"image_urls\";s:50:\"https://elements.envato.com/collections/WVACSX3TU4\";}i:21;a:8:{s:8:\"filename\";s:32:\"Acanthus-black-white-02-copy.png\";s:13:\"thumbnail_url\";s:104:\"https://kitpro.site/lessan/wp-content/uploads/sites/159/2023/04/Acanthus-black-white-02-copy-800x800.png\";s:9:\"templates\";a:2:{i:0;a:2:{s:6:\"source\";s:19:\"templates/home.json\";s:4:\"name\";s:4:\"Home\";}i:1;a:2:{s:6:\"source\";s:22:\"templates/pricing.json\";s:4:\"name\";s:7:\"Pricing\";}}s:8:\"filesize\";i:102379;s:10:\"dimensions\";a:2:{i:0;i:1000;i:1;i:1000;}s:12:\"image_source\";s:15:\"envato_elements\";s:15:\"person_or_place\";s:2:\"no\";s:10:\"image_urls\";s:50:\"https://elements.envato.com/collections/WVACSX3TU4\";}i:22;a:8:{s:8:\"filename\";s:7:\"pp1.jpg\";s:13:\"thumbnail_url\";s:71:\"https://kitpro.site/lessan/wp-content/uploads/sites/159/2023/04/pp1.jpg\";s:9:\"templates\";a:2:{i:0;a:2:{s:6:\"source\";s:19:\"templates/home.json\";s:4:\"name\";s:4:\"Home\";}i:1;a:2:{s:6:\"source\";s:22:\"templates/teacher.json\";s:4:\"name\";s:7:\"Teacher\";}}s:8:\"filesize\";i:141989;s:10:\"dimensions\";a:2:{i:0;i:800;i:1;i:800;}s:12:\"image_source\";s:15:\"envato_elements\";s:15:\"person_or_place\";s:3:\"yes\";s:10:\"image_urls\";s:50:\"https://elements.envato.com/collections/WVACSX3TU4\";}i:23;a:8:{s:8:\"filename\";s:7:\"pp2.jpg\";s:13:\"thumbnail_url\";s:71:\"https://kitpro.site/lessan/wp-content/uploads/sites/159/2023/04/pp2.jpg\";s:9:\"templates\";a:2:{i:0;a:2:{s:6:\"source\";s:19:\"templates/home.json\";s:4:\"name\";s:4:\"Home\";}i:1;a:2:{s:6:\"source\";s:22:\"templates/teacher.json\";s:4:\"name\";s:7:\"Teacher\";}}s:8:\"filesize\";i:158373;s:10:\"dimensions\";a:2:{i:0;i:800;i:1;i:800;}s:12:\"image_source\";s:15:\"envato_elements\";s:15:\"person_or_place\";s:3:\"yes\";s:10:\"image_urls\";s:50:\"https://elements.envato.com/collections/WVACSX3TU4\";}i:24;a:8:{s:8:\"filename\";s:7:\"pp3.jpg\";s:13:\"thumbnail_url\";s:71:\"https://kitpro.site/lessan/wp-content/uploads/sites/159/2023/04/pp3.jpg\";s:9:\"templates\";a:3:{i:0;a:2:{s:6:\"source\";s:19:\"templates/home.json\";s:4:\"name\";s:4:\"Home\";}i:1;a:2:{s:6:\"source\";s:22:\"templates/teacher.json\";s:4:\"name\";s:7:\"Teacher\";}i:2;a:2:{s:6:\"source\";s:27:\"templates/class-detail.json\";s:4:\"name\";s:12:\"Class-Detail\";}}s:8:\"filesize\";i:166490;s:10:\"dimensions\";a:2:{i:0;i:800;i:1;i:800;}s:12:\"image_source\";s:15:\"envato_elements\";s:15:\"person_or_place\";s:3:\"yes\";s:10:\"image_urls\";s:50:\"https://elements.envato.com/collections/WVACSX3TU4\";}i:25;a:8:{s:8:\"filename\";s:17:\"logoipsum-265.png\";s:13:\"thumbnail_url\";s:81:\"https://kitpro.site/lessan/wp-content/uploads/sites/159/2023/04/logoipsum-265.png\";s:9:\"templates\";a:3:{i:0;a:2:{s:6:\"source\";s:19:\"templates/home.json\";s:4:\"name\";s:4:\"Home\";}i:1;a:2:{s:6:\"source\";s:23:\"templates/about-us.json\";s:4:\"name\";s:8:\"About Us\";}i:2;a:2:{s:6:\"source\";s:22:\"templates/teacher.json\";s:4:\"name\";s:7:\"Teacher\";}}s:8:\"filesize\";i:11514;s:10:\"dimensions\";a:2:{i:0;i:700;i:1;i:171;}s:12:\"image_source\";s:3:\"cc0\";s:15:\"person_or_place\";s:2:\"no\";s:10:\"image_urls\";s:22:\"https://logoipsum.com/\";}i:26;a:8:{s:8:\"filename\";s:17:\"logoipsum-264.png\";s:13:\"thumbnail_url\";s:81:\"https://kitpro.site/lessan/wp-content/uploads/sites/159/2023/04/logoipsum-264.png\";s:9:\"templates\";a:3:{i:0;a:2:{s:6:\"source\";s:19:\"templates/home.json\";s:4:\"name\";s:4:\"Home\";}i:1;a:2:{s:6:\"source\";s:23:\"templates/about-us.json\";s:4:\"name\";s:8:\"About Us\";}i:2;a:2:{s:6:\"source\";s:22:\"templates/teacher.json\";s:4:\"name\";s:7:\"Teacher\";}}s:8:\"filesize\";i:9639;s:10:\"dimensions\";a:2:{i:0;i:708;i:1;i:171;}s:12:\"image_source\";s:3:\"cc0\";s:15:\"person_or_place\";s:2:\"no\";s:10:\"image_urls\";s:22:\"https://logoipsum.com/\";}i:27;a:8:{s:8:\"filename\";s:17:\"logoipsum-262.png\";s:13:\"thumbnail_url\";s:81:\"https://kitpro.site/lessan/wp-content/uploads/sites/159/2023/04/logoipsum-262.png\";s:9:\"templates\";a:3:{i:0;a:2:{s:6:\"source\";s:19:\"templates/home.json\";s:4:\"name\";s:4:\"Home\";}i:1;a:2:{s:6:\"source\";s:23:\"templates/about-us.json\";s:4:\"name\";s:8:\"About Us\";}i:2;a:2:{s:6:\"source\";s:22:\"templates/teacher.json\";s:4:\"name\";s:7:\"Teacher\";}}s:8:\"filesize\";i:10070;s:10:\"dimensions\";a:2:{i:0;i:708;i:1;i:171;}s:12:\"image_source\";s:3:\"cc0\";s:15:\"person_or_place\";s:2:\"no\";s:10:\"image_urls\";s:22:\"https://logoipsum.com/\";}i:28;a:8:{s:8:\"filename\";s:17:\"logoipsum-261.png\";s:13:\"thumbnail_url\";s:81:\"https://kitpro.site/lessan/wp-content/uploads/sites/159/2023/04/logoipsum-261.png\";s:9:\"templates\";a:3:{i:0;a:2:{s:6:\"source\";s:19:\"templates/home.json\";s:4:\"name\";s:4:\"Home\";}i:1;a:2:{s:6:\"source\";s:23:\"templates/about-us.json\";s:4:\"name\";s:8:\"About Us\";}i:2;a:2:{s:6:\"source\";s:22:\"templates/teacher.json\";s:4:\"name\";s:7:\"Teacher\";}}s:8:\"filesize\";i:10361;s:10:\"dimensions\";a:2:{i:0;i:696;i:1;i:171;}s:12:\"image_source\";s:3:\"cc0\";s:15:\"person_or_place\";s:2:\"no\";s:10:\"image_urls\";s:22:\"https://logoipsum.com/\";}i:29;a:8:{s:8:\"filename\";s:17:\"logoipsum-259.png\";s:13:\"thumbnail_url\";s:81:\"https://kitpro.site/lessan/wp-content/uploads/sites/159/2023/04/logoipsum-259.png\";s:9:\"templates\";a:3:{i:0;a:2:{s:6:\"source\";s:19:\"templates/home.json\";s:4:\"name\";s:4:\"Home\";}i:1;a:2:{s:6:\"source\";s:23:\"templates/about-us.json\";s:4:\"name\";s:8:\"About Us\";}i:2;a:2:{s:6:\"source\";s:22:\"templates/teacher.json\";s:4:\"name\";s:7:\"Teacher\";}}s:8:\"filesize\";i:6719;s:10:\"dimensions\";a:2:{i:0;i:642;i:1;i:113;}s:12:\"image_source\";s:3:\"cc0\";s:15:\"person_or_place\";s:2:\"no\";s:10:\"image_urls\";s:22:\"https://logoipsum.com/\";}i:30;a:8:{s:8:\"filename\";s:17:\"logoipsum-254.png\";s:13:\"thumbnail_url\";s:81:\"https://kitpro.site/lessan/wp-content/uploads/sites/159/2023/04/logoipsum-254.png\";s:9:\"templates\";a:3:{i:0;a:2:{s:6:\"source\";s:19:\"templates/home.json\";s:4:\"name\";s:4:\"Home\";}i:1;a:2:{s:6:\"source\";s:23:\"templates/about-us.json\";s:4:\"name\";s:8:\"About Us\";}i:2;a:2:{s:6:\"source\";s:22:\"templates/teacher.json\";s:4:\"name\";s:7:\"Teacher\";}}s:8:\"filesize\";i:10615;s:10:\"dimensions\";a:2:{i:0;i:717;i:1;i:167;}s:12:\"image_source\";s:3:\"cc0\";s:15:\"person_or_place\";s:2:\"no\";s:10:\"image_urls\";s:22:\"https://logoipsum.com/\";}i:31;a:8:{s:8:\"filename\";s:9:\"edge3.png\";s:13:\"thumbnail_url\";s:73:\"https://kitpro.site/lessan/wp-content/uploads/sites/159/2023/04/edge3.png\";s:9:\"templates\";a:10:{i:0;a:2:{s:6:\"source\";s:19:\"templates/home.json\";s:4:\"name\";s:4:\"Home\";}i:1;a:2:{s:6:\"source\";s:23:\"templates/about-us.json\";s:4:\"name\";s:8:\"About Us\";}i:2;a:2:{s:6:\"source\";s:22:\"templates/service.json\";s:4:\"name\";s:7:\"Service\";}i:3;a:2:{s:6:\"source\";s:25:\"templates/contact-us.json\";s:4:\"name\";s:10:\"Contact Us\";}i:4;a:2:{s:6:\"source\";s:22:\"templates/teacher.json\";s:4:\"name\";s:7:\"Teacher\";}i:5;a:2:{s:6:\"source\";s:20:\"templates/class.json\";s:4:\"name\";s:5:\"Class\";}i:6;a:2:{s:6:\"source\";s:27:\"templates/class-detail.json\";s:4:\"name\";s:12:\"Class-Detail\";}i:7;a:2:{s:6:\"source\";s:22:\"templates/pricing.json\";s:4:\"name\";s:7:\"Pricing\";}i:8;a:2:{s:6:\"source\";s:19:\"templates/blog.json\";s:4:\"name\";s:4:\"Blog\";}i:9;a:2:{s:6:\"source\";s:18:\"templates/404.json\";s:4:\"name\";s:3:\"404\";}}s:8:\"filesize\";i:1127;s:10:\"dimensions\";a:2:{i:0;i:324;i:1;i:287;}s:12:\"image_source\";s:12:\"self_created\";s:15:\"person_or_place\";s:2:\"no\";s:10:\"image_urls\";s:0:\"\";}i:32;a:8:{s:8:\"filename\";s:74:\"cute-elementary-kids-with-books-at-school-2022-12-16-18-15-57-utc-copy.jpg\";s:13:\"thumbnail_url\";s:138:\"https://kitpro.site/lessan/wp-content/uploads/sites/159/2023/04/cute-elementary-kids-with-books-at-school-2022-12-16-18-15-57-utc-copy.jpg\";s:9:\"templates\";a:9:{i:0;a:2:{s:6:\"source\";s:19:\"templates/home.json\";s:4:\"name\";s:4:\"Home\";}i:1;a:2:{s:6:\"source\";s:23:\"templates/about-us.json\";s:4:\"name\";s:8:\"About Us\";}i:2;a:2:{s:6:\"source\";s:22:\"templates/service.json\";s:4:\"name\";s:7:\"Service\";}i:3;a:2:{s:6:\"source\";s:25:\"templates/contact-us.json\";s:4:\"name\";s:10:\"Contact Us\";}i:4;a:2:{s:6:\"source\";s:22:\"templates/teacher.json\";s:4:\"name\";s:7:\"Teacher\";}i:5;a:2:{s:6:\"source\";s:20:\"templates/class.json\";s:4:\"name\";s:5:\"Class\";}i:6;a:2:{s:6:\"source\";s:27:\"templates/class-detail.json\";s:4:\"name\";s:12:\"Class-Detail\";}i:7;a:2:{s:6:\"source\";s:22:\"templates/pricing.json\";s:4:\"name\";s:7:\"Pricing\";}i:8;a:2:{s:6:\"source\";s:19:\"templates/blog.json\";s:4:\"name\";s:4:\"Blog\";}}s:8:\"filesize\";i:209147;s:10:\"dimensions\";a:2:{i:0;i:446;i:1;i:593;}s:12:\"image_source\";s:15:\"envato_elements\";s:15:\"person_or_place\";s:3:\"yes\";s:10:\"image_urls\";s:50:\"https://elements.envato.com/collections/WVACSX3TU4\";}i:33;a:8:{s:8:\"filename\";s:70:\"cute-elementary-kids-with-books-at-school-2022-12-16-18-15-57-utc2.png\";s:13:\"thumbnail_url\";s:134:\"https://kitpro.site/lessan/wp-content/uploads/sites/159/2023/04/cute-elementary-kids-with-books-at-school-2022-12-16-18-15-57-utc2.png\";s:9:\"templates\";a:9:{i:0;a:2:{s:6:\"source\";s:19:\"templates/home.json\";s:4:\"name\";s:4:\"Home\";}i:1;a:2:{s:6:\"source\";s:23:\"templates/about-us.json\";s:4:\"name\";s:8:\"About Us\";}i:2;a:2:{s:6:\"source\";s:22:\"templates/service.json\";s:4:\"name\";s:7:\"Service\";}i:3;a:2:{s:6:\"source\";s:25:\"templates/contact-us.json\";s:4:\"name\";s:10:\"Contact Us\";}i:4;a:2:{s:6:\"source\";s:22:\"templates/teacher.json\";s:4:\"name\";s:7:\"Teacher\";}i:5;a:2:{s:6:\"source\";s:20:\"templates/class.json\";s:4:\"name\";s:5:\"Class\";}i:6;a:2:{s:6:\"source\";s:27:\"templates/class-detail.json\";s:4:\"name\";s:12:\"Class-Detail\";}i:7;a:2:{s:6:\"source\";s:22:\"templates/pricing.json\";s:4:\"name\";s:7:\"Pricing\";}i:8;a:2:{s:6:\"source\";s:19:\"templates/blog.json\";s:4:\"name\";s:4:\"Blog\";}}s:8:\"filesize\";i:66363;s:10:\"dimensions\";a:2:{i:0;i:446;i:1;i:593;}s:12:\"image_source\";s:15:\"envato_elements\";s:15:\"person_or_place\";s:3:\"yes\";s:10:\"image_urls\";s:50:\"https://elements.envato.com/collections/WVACSX3TU4\";}i:34;a:8:{s:8:\"filename\";s:15:\"alarm-clock.png\";s:13:\"thumbnail_url\";s:79:\"https://kitpro.site/lessan/wp-content/uploads/sites/159/2023/04/alarm-clock.png\";s:9:\"templates\";a:1:{i:0;a:2:{s:6:\"source\";s:22:\"templates/service.json\";s:4:\"name\";s:7:\"Service\";}}s:8:\"filesize\";i:9795;s:10:\"dimensions\";a:2:{i:0;i:201;i:1;i:200;}s:12:\"image_source\";s:15:\"envato_elements\";s:15:\"person_or_place\";s:2:\"no\";s:10:\"image_urls\";s:50:\"https://elements.envato.com/collections/WVACSX3TU4\";}i:35;a:8:{s:8:\"filename\";s:11:\"Diploma.png\";s:13:\"thumbnail_url\";s:75:\"https://kitpro.site/lessan/wp-content/uploads/sites/159/2023/04/Diploma.png\";s:9:\"templates\";a:1:{i:0;a:2:{s:6:\"source\";s:22:\"templates/service.json\";s:4:\"name\";s:7:\"Service\";}}s:8:\"filesize\";i:6004;s:10:\"dimensions\";a:2:{i:0;i:201;i:1;i:201;}s:12:\"image_source\";s:15:\"envato_elements\";s:15:\"person_or_place\";s:2:\"no\";s:10:\"image_urls\";s:50:\"https://elements.envato.com/collections/WVACSX3TU4\";}i:36;a:8:{s:8:\"filename\";s:16:\"Male-Teacher.png\";s:13:\"thumbnail_url\";s:80:\"https://kitpro.site/lessan/wp-content/uploads/sites/159/2023/04/Male-Teacher.png\";s:9:\"templates\";a:1:{i:0;a:2:{s:6:\"source\";s:22:\"templates/service.json\";s:4:\"name\";s:7:\"Service\";}}s:8:\"filesize\";i:6979;s:10:\"dimensions\";a:2:{i:0;i:201;i:1;i:201;}s:12:\"image_source\";s:15:\"envato_elements\";s:15:\"person_or_place\";s:2:\"no\";s:10:\"image_urls\";s:50:\"https://elements.envato.com/collections/WVACSX3TU4\";}i:37;a:8:{s:8:\"filename\";s:10:\"Trophy.png\";s:13:\"thumbnail_url\";s:74:\"https://kitpro.site/lessan/wp-content/uploads/sites/159/2023/04/Trophy.png\";s:9:\"templates\";a:1:{i:0;a:2:{s:6:\"source\";s:22:\"templates/service.json\";s:4:\"name\";s:7:\"Service\";}}s:8:\"filesize\";i:4120;s:10:\"dimensions\";a:2:{i:0;i:201;i:1;i:201;}s:12:\"image_source\";s:15:\"envato_elements\";s:15:\"person_or_place\";s:2:\"no\";s:10:\"image_urls\";s:50:\"https://elements.envato.com/collections/WVACSX3TU4\";}i:38;a:8:{s:8:\"filename\";s:7:\"pp5.jpg\";s:13:\"thumbnail_url\";s:71:\"https://kitpro.site/lessan/wp-content/uploads/sites/159/2023/04/pp5.jpg\";s:9:\"templates\";a:1:{i:0;a:2:{s:6:\"source\";s:22:\"templates/teacher.json\";s:4:\"name\";s:7:\"Teacher\";}}s:8:\"filesize\";i:196666;s:10:\"dimensions\";a:2:{i:0;i:800;i:1;i:800;}s:12:\"image_source\";s:15:\"envato_elements\";s:15:\"person_or_place\";s:3:\"yes\";s:10:\"image_urls\";s:50:\"https://elements.envato.com/collections/WVACSX3TU4\";}i:39;a:8:{s:8:\"filename\";s:7:\"pp4.jpg\";s:13:\"thumbnail_url\";s:71:\"https://kitpro.site/lessan/wp-content/uploads/sites/159/2023/04/pp4.jpg\";s:9:\"templates\";a:1:{i:0;a:2:{s:6:\"source\";s:22:\"templates/teacher.json\";s:4:\"name\";s:7:\"Teacher\";}}s:8:\"filesize\";i:217614;s:10:\"dimensions\";a:2:{i:0;i:800;i:1;i:800;}s:12:\"image_source\";s:15:\"envato_elements\";s:15:\"person_or_place\";s:3:\"yes\";s:10:\"image_urls\";s:50:\"https://elements.envato.com/collections/WVACSX3TU4\";}i:40;a:8:{s:8:\"filename\";s:7:\"pp6.jpg\";s:13:\"thumbnail_url\";s:71:\"https://kitpro.site/lessan/wp-content/uploads/sites/159/2023/04/pp6.jpg\";s:9:\"templates\";a:1:{i:0;a:2:{s:6:\"source\";s:22:\"templates/teacher.json\";s:4:\"name\";s:7:\"Teacher\";}}s:8:\"filesize\";i:174802;s:10:\"dimensions\";a:2:{i:0;i:800;i:1;i:800;}s:12:\"image_source\";s:15:\"envato_elements\";s:15:\"person_or_place\";s:3:\"yes\";s:10:\"image_urls\";s:50:\"https://elements.envato.com/collections/WVACSX3TU4\";}i:41;a:8:{s:8:\"filename\";s:83:\"elementary-student-learning-in-the-classroom-at-sc-2022-11-16-14-48-06-utc-copy.jpg\";s:13:\"thumbnail_url\";s:155:\"https://kitpro.site/lessan/wp-content/uploads/sites/159/2023/04/elementary-student-learning-in-the-classroom-at-sc-2022-11-16-14-48-06-utc-copy-800x533.jpg\";s:9:\"templates\";a:1:{i:0;a:2:{s:6:\"source\";s:20:\"templates/class.json\";s:4:\"name\";s:5:\"Class\";}}s:8:\"filesize\";i:155684;s:10:\"dimensions\";a:2:{i:0;i:1200;i:1;i:800;}s:12:\"image_source\";s:15:\"envato_elements\";s:15:\"person_or_place\";s:3:\"yes\";s:10:\"image_urls\";s:50:\"https://elements.envato.com/collections/WVACSX3TU4\";}i:42;a:8:{s:8:\"filename\";s:68:\"difficult-exam-in-elementary-school-2021-09-24-02-55-23-utc-copy.jpg\";s:13:\"thumbnail_url\";s:140:\"https://kitpro.site/lessan/wp-content/uploads/sites/159/2023/04/difficult-exam-in-elementary-school-2021-09-24-02-55-23-utc-copy-800x533.jpg\";s:9:\"templates\";a:1:{i:0;a:2:{s:6:\"source\";s:20:\"templates/class.json\";s:4:\"name\";s:5:\"Class\";}}s:8:\"filesize\";i:160710;s:10:\"dimensions\";a:2:{i:0;i:1200;i:1;i:800;}s:12:\"image_source\";s:15:\"envato_elements\";s:15:\"person_or_place\";s:3:\"yes\";s:10:\"image_urls\";s:50:\"https://elements.envato.com/collections/WVACSX3TU4\";}i:43;a:8:{s:8:\"filename\";s:10:\"logo-1.png\";s:13:\"thumbnail_url\";s:82:\"https://kitpro.site/lessan/wp-content/uploads/sites/159/2023/04/logo-1-800x280.png\";s:9:\"templates\";a:2:{i:0;a:2:{s:6:\"source\";s:21:\"templates/header.json\";s:4:\"name\";s:6:\"Header\";}i:1;a:2:{s:6:\"source\";s:21:\"templates/footer.json\";s:4:\"name\";s:6:\"Footer\";}}s:8:\"filesize\";i:41147;s:10:\"dimensions\";a:2:{i:0;i:815;i:1;i:285;}s:12:\"image_source\";s:15:\"envato_elements\";s:15:\"person_or_place\";s:2:\"no\";s:10:\"image_urls\";s:50:\"https://elements.envato.com/collections/WVACSX3TU4\";}}}'),(6,6,'envato_tk_folder_name','f555b661008cbf44a73f0a20859fc0c8'),(7,6,'envato_tk_builder','elementor'),(8,6,'envato_tk_source_zip_url','https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/template-kits/f555b661008cbf44a73f0a20859fc0c8/source-6.zip'),(9,7,'_wp_attached_file','2023/09/2-copy.jpg'),(10,7,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1500;s:6:\"height\";i:1000;s:4:\"file\";s:18:\"2023/09/2-copy.jpg\";s:8:\"filesize\";i:185374;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:18:\"2-copy-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22644;}s:5:\"large\";a:5:{s:4:\"file\";s:19:\"2-copy-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:92909;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:18:\"2-copy-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18615;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:18:\"2-copy-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:57703;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(11,7,'_elementor_source_image_hash','114d17a116280d9def1feb18cc461c751e9a36bc'),(12,8,'_elementor_edit_mode','builder'),(13,8,'_elementor_template_type','kit'),(14,9,'_wp_attached_file','2023/09/2-copy-1.jpg'),(15,9,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1500;s:6:\"height\";i:1000;s:4:\"file\";s:20:\"2023/09/2-copy-1.jpg\";s:8:\"filesize\";i:185374;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:20:\"2-copy-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22644;}s:5:\"large\";a:5:{s:4:\"file\";s:21:\"2-copy-1-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:92909;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"2-copy-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:18615;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:20:\"2-copy-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:57703;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(16,8,'_elementor_version','3.15.3'),(17,10,'_elementor_edit_mode','builder'),(18,10,'_elementor_template_type','section'),(19,10,'_elementor_version','3.15.3'),(20,8,'_wp_page_template','default'),(21,8,'_elementor_page_settings','a:109:{s:17:\"custom_typography\";a:32:{i:0;a:9:{s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:6:\"Roboto\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:0.90000000000000002;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:0.90000000000000002;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"400\";s:3:\"_id\";s:7:\"f8cdd91\";s:5:\"title\";s:9:\"Body Text\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.5;s:5:\"sizes\";a:0:{}}}i:1;a:10:{s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:6:\"Roboto\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:1.3;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"500\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";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\";i:5;s:5:\"sizes\";a:0:{}}s:3:\"_id\";s:7:\"3f07da6\";s:5:\"title\";s:12:\"Mini Heading\";}i:2;a:9:{s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:6:\"Roboto\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:0.90000000000000002;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:0.80000000000000004;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:0.80000000000000004;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"400\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:3:\"_id\";s:7:\"24b2df3\";s:5:\"title\";s:9:\"h6 footer\";}i:3;a:9:{s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:6:\"Roboto\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:1.2;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:1.1000000000000001;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:1.1000000000000001;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"500\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:3:\"_id\";s:7:\"64a9188\";s:5:\"title\";s:10:\"Post title\";}i:4;a:9:{s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:6:\"Roboto\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:0.90000000000000002;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:0.90000000000000002;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"500\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.5;s:5:\"sizes\";a:0:{}}s:3:\"_id\";s:7:\"779cdfc\";s:5:\"title\";s:9:\"text bold\";}i:5;a:10:{s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:6:\"Roboto\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:0.90000000000000002;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:0.90000000000000002;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"400\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:30;s:5:\"sizes\";a:0:{}}s:25:\"typography_letter_spacing\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:3:\"_id\";s:7:\"0b79bd8\";s:5:\"title\";s:6:\"text 2\";}i:6;a:11:{s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:5:\"Inter\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:5.5;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:3.5;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:3.5;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"700\";s:25:\"typography_text_transform\";s:10:\"capitalize\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:23:\"typography_word_spacing\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:3:\"_id\";s:7:\"b746a66\";s:5:\"title\";s:7:\"Counter\";}i:7;a:11:{s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:6:\"Roboto\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";i:13;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";i:9;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";i:9;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"600\";s:25:\"typography_text_transform\";s:10:\"capitalize\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:23:\"typography_word_spacing\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:3:\"_id\";s:7:\"6e144d7\";s:5:\"title\";s:5:\"404 3\";}i:8;a:11:{s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:5:\"Exo 2\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:5.5;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";i:4;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:3.5;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"800\";s:25:\"typography_text_transform\";s:10:\"capitalize\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:23:\"typography_word_spacing\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:3:\"_id\";s:7:\"4244abd\";s:5:\"title\";s:2:\"H1\";}i:9;a:11:{s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:5:\"Exo 2\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";i:3;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:2.5;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:2.2999999999999998;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"800\";s:25:\"typography_text_transform\";s:10:\"capitalize\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.1000000000000001;s:5:\"sizes\";a:0:{}}s:23:\"typography_word_spacing\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:3:\"_id\";s:7:\"eddebef\";s:5:\"title\";s:2:\"H2\";}i:10;a:10:{s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:5:\"Exo 2\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:2.5;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:1.7;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:1.5;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"800\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:23:\"typography_word_spacing\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:3:\"_id\";s:7:\"5671b07\";s:5:\"title\";s:2:\"H3\";}i:11;a:10:{s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:5:\"Exo 2\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:1.6000000000000001;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:1.2;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:1.2;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"800\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:23:\"typography_word_spacing\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:3:\"_id\";s:7:\"d50cf18\";s:5:\"title\";s:2:\"H4\";}i:12;a:10:{s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:5:\"Exo 2\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:1.3;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"800\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:23:\"typography_word_spacing\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:3:\"_id\";s:7:\"d2268dd\";s:5:\"title\";s:2:\"H5\";}i:13;a:10:{s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:5:\"Exo 2\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:0.90000000000000002;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:0.80000000000000004;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:0.80000000000000004;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"600\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:23:\"typography_word_spacing\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:3:\"_id\";s:7:\"fb084e4\";s:5:\"title\";s:2:\"H6\";}i:14;a:8:{s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:6:\"Roboto\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:1.3;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:1.2;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:1.1000000000000001;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"400\";s:3:\"_id\";s:7:\"6c3d804\";s:5:\"title\";s:5:\"text2\";}i:15;a:11:{s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:15:\"Vujahday Script\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:3.5;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:2.7000000000000002;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:2.2999999999999998;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"700\";s:25:\"typography_text_transform\";s:10:\"capitalize\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:23:\"typography_word_spacing\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:3:\"_id\";s:7:\"3bc7291\";s:5:\"title\";s:11:\"handwriting\";}i:16;a:10:{s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:6:\"Roboto\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:1.6000000000000001;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:1.2;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:1.2;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"700\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:23:\"typography_word_spacing\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:3:\"_id\";s:7:\"379825b\";s:5:\"title\";s:9:\"H4 roboto\";}i:17;a:9:{s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:6:\"Roboto\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:1.1000000000000001;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"400\";s:21:\"typography_font_style\";s:6:\"italic\";s:3:\"_id\";s:7:\"35188cd\";s:5:\"title\";s:11:\"text italic\";}i:18;a:10:{s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:6:\"Roboto\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:1.6000000000000001;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:1.2;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:1.2;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"400\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:23:\"typography_word_spacing\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:3:\"_id\";s:7:\"4cabf41\";s:5:\"title\";s:14:\"thin H4 roboto\";}i:19;a:10:{s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:6:\"Roboto\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:1.3;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"500\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:23:\"typography_word_spacing\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:3:\"_id\";s:7:\"7da7d65\";s:5:\"title\";s:9:\"h5 roboto\";}i:20;a:11:{s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:6:\"Roboto\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:1.6000000000000001;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:1.2;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:1.2;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"400\";s:21:\"typography_font_style\";s:6:\"italic\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:23:\"typography_word_spacing\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:3:\"_id\";s:7:\"af1eea0\";s:5:\"title\";s:21:\"h4 thin roboto italic\";}i:21;a:10:{s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:6:\"Roboto\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:1.6000000000000001;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:1.2;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:1.2;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"400\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.3999999999999999;s:5:\"sizes\";a:0:{}}s:23:\"typography_word_spacing\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:3:\"_id\";s:7:\"077d7fa\";s:5:\"title\";s:7:\"h4 text\";}i:22;a:11:{s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:5:\"Kanit\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";i:9;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";i:5;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:2.5;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"900\";s:25:\"typography_text_transform\";s:10:\"capitalize\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:23:\"typography_word_spacing\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:3:\"_id\";s:7:\"ad260f4\";s:5:\"title\";s:11:\"big heading\";}i:23;a:10:{s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:6:\"Roboto\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:2.5;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:1.7;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:1.5;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"600\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:23:\"typography_word_spacing\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:3:\"_id\";s:7:\"6a8c123\";s:5:\"title\";s:9:\"H3 roboto\";}i:24;a:11:{s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:6:\"Roboto\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:3.7999999999999998;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:2.5;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:2.2999999999999998;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"500\";s:25:\"typography_text_transform\";s:10:\"capitalize\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.3999999999999999;s:5:\"sizes\";a:0:{}}s:23:\"typography_word_spacing\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:3:\"_id\";s:7:\"1b136aa\";s:5:\"title\";s:12:\"counter font\";}i:25;a:11:{s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:6:\"Roboto\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:0.90000000000000002;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:0.80000000000000004;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:0.80000000000000004;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"400\";s:21:\"typography_font_style\";s:6:\"italic\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:23:\"typography_word_spacing\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:3:\"_id\";s:7:\"8eef092\";s:5:\"title\";s:16:\"h6 footer italic\";}i:26;a:11:{s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:5:\"Inter\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";i:12;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";i:9;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";i:9;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"600\";s:25:\"typography_text_transform\";s:10:\"capitalize\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:23:\"typography_word_spacing\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:3:\"_id\";s:7:\"5495cbe\";s:5:\"title\";s:5:\"404 2\";}i:27;a:11:{s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:5:\"Inter\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:4.5;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:3.5;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:2.5;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"600\";s:25:\"typography_text_transform\";s:10:\"capitalize\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:23:\"typography_word_spacing\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:3:\"_id\";s:7:\"b23dda8\";s:5:\"title\";s:4:\"H1v2\";}i:28;a:11:{s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:6:\"Roboto\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:0.90000000000000002;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:0.90000000000000002;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"400\";s:21:\"typography_font_style\";s:6:\"italic\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.5;s:5:\"sizes\";a:0:{}}s:23:\"typography_word_spacing\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:3:\"_id\";s:7:\"fb6c60c\";s:5:\"title\";s:16:\"body text italic\";}i:29;a:12:{s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:6:\"Mulish\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:8.5;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:4.7999999999999998;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:3.7000000000000002;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"800\";s:25:\"typography_text_transform\";s:10:\"capitalize\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:32:\"typography_letter_spacing_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";d:5.4000000000000004;s:5:\"sizes\";a:0:{}}s:23:\"typography_word_spacing\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:3:\"_id\";s:7:\"e67c287\";s:5:\"title\";s:5:\"Big H\";}i:30;a:12:{s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:6:\"Roboto\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";i:3;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:2.5;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:2.2999999999999998;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"400\";s:25:\"typography_text_transform\";s:10:\"capitalize\";s:21:\"typography_font_style\";s:6:\"italic\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.1000000000000001;s:5:\"sizes\";a:0:{}}s:23:\"typography_word_spacing\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:3:\"_id\";s:7:\"28bf922\";s:5:\"title\";s:16:\"italic H2 Roboto\";}i:31;a:11:{s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:5:\"Exo 2\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:5.5;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";i:4;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:3.5;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"500\";s:25:\"typography_text_transform\";s:10:\"capitalize\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:23:\"typography_word_spacing\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:3:\"_id\";s:7:\"d65c9cc\";s:5:\"title\";s:7:\"h1 thin\";}}s:13:\"system_colors\";a:4:{i:0;a:3:{s:3:\"_id\";s:7:\"primary\";s:5:\"title\";s:7:\"Primary\";s:5:\"color\";s:7:\"#54595F\";}i:1;a:3:{s:3:\"_id\";s:9:\"secondary\";s:5:\"title\";s:9:\"Secondary\";s:5:\"color\";s:7:\"#FFFFFF\";}i:2;a:3:{s:3:\"_id\";s:4:\"text\";s:5:\"title\";s:4:\"Text\";s:5:\"color\";s:7:\"#8E8E8E\";}i:3;a:3:{s:3:\"_id\";s:6:\"accent\";s:5:\"title\";s:6:\"Accent\";s:5:\"color\";s:7:\"#2FCCD6\";}}s:13:\"custom_colors\";a:60:{i:0;a:3:{s:3:\"_id\";s:7:\"e64be90\";s:5:\"title\";s:5:\"White\";s:5:\"color\";s:7:\"#FFFFFF\";}i:1;a:3:{s:3:\"_id\";s:7:\"eb507f3\";s:5:\"title\";s:11:\"Transparent\";s:5:\"color\";s:9:\"#FFFFFF00\";}i:2;a:3:{s:3:\"_id\";s:7:\"3f37fea\";s:5:\"title\";s:6:\"Black1\";s:5:\"color\";s:7:\"#3A3A3A\";}i:3;a:3:{s:3:\"_id\";s:7:\"7af558c\";s:5:\"title\";s:12:\"transparent2\";s:5:\"color\";s:9:\"#FFFFFF1A\";}i:4;a:3:{s:3:\"_id\";s:7:\"45bcc5b\";s:5:\"title\";s:6:\"black2\";s:5:\"color\";s:7:\"#484848\";}i:5;a:3:{s:3:\"_id\";s:7:\"76544c2\";s:5:\"title\";s:5:\"grey1\";s:5:\"color\";s:7:\"#D8D8D8\";}i:6;a:3:{s:3:\"_id\";s:7:\"70ca7d7\";s:5:\"title\";s:9:\"blueblack\";s:5:\"color\";s:7:\"#062233\";}i:7;a:3:{s:3:\"_id\";s:7:\"faf5d15\";s:5:\"title\";s:13:\"absoluteblack\";s:5:\"color\";s:7:\"#000000\";}i:8;a:3:{s:3:\"_id\";s:7:\"d498ef1\";s:5:\"title\";s:7:\"white 2\";s:5:\"color\";s:7:\"#F0EFE6\";}i:9;a:3:{s:3:\"_id\";s:7:\"7c7ba2f\";s:5:\"title\";s:10:\"Browncream\";s:5:\"color\";s:7:\"#FFF0DD\";}i:10;a:3:{s:3:\"_id\";s:7:\"3fce00d\";s:5:\"title\";s:6:\"green1\";s:5:\"color\";s:7:\"#BDC87B\";}i:11;a:3:{s:3:\"_id\";s:7:\"2b57703\";s:5:\"title\";s:6:\"trans3\";s:5:\"color\";s:9:\"#D8D8D8BD\";}i:12;a:3:{s:3:\"_id\";s:7:\"730a667\";s:5:\"title\";s:4:\"red1\";s:5:\"color\";s:7:\"#F46A5E\";}i:13;a:3:{s:3:\"_id\";s:7:\"ab0a9e7\";s:5:\"title\";s:7:\"yellow2\";s:5:\"color\";s:7:\"#FFA33E\";}i:14;a:3:{s:3:\"_id\";s:7:\"89b15fa\";s:5:\"title\";s:6:\"green2\";s:5:\"color\";s:7:\"#7EC242\";}i:15;a:3:{s:3:\"_id\";s:7:\"0af79f3\";s:5:\"title\";s:5:\"blue5\";s:5:\"color\";s:7:\"#89C4C8\";}i:16;a:3:{s:3:\"_id\";s:7:\"b9731ad\";s:5:\"title\";s:6:\"trans4\";s:5:\"color\";s:9:\"#F0EFE6D4\";}i:17;a:3:{s:3:\"_id\";s:7:\"1c4e034\";s:5:\"title\";s:12:\"white trans2\";s:5:\"color\";s:9:\"#FFFFFFDB\";}i:18;a:3:{s:3:\"_id\";s:7:\"50714e7\";s:5:\"title\";s:10:\"light grey\";s:5:\"color\";s:7:\"#F8F8F8\";}i:19;a:3:{s:3:\"_id\";s:7:\"2b95517\";s:5:\"title\";s:11:\"light grey2\";s:5:\"color\";s:7:\"#F0F0F0\";}i:20;a:3:{s:3:\"_id\";s:7:\"915f45d\";s:5:\"title\";s:5:\"grey2\";s:5:\"color\";s:7:\"#8E8E8E\";}i:21;a:3:{s:3:\"_id\";s:7:\"a8dcee5\";s:5:\"title\";s:11:\"black trans\";s:5:\"color\";s:9:\"#0000004F\";}i:22;a:3:{s:3:\"_id\";s:7:\"69381ab\";s:5:\"title\";s:6:\"grey 3\";s:5:\"color\";s:7:\"#B0B0B0\";}i:23;a:3:{s:3:\"_id\";s:7:\"c0cf2ba\";s:5:\"title\";s:6:\"Black3\";s:5:\"color\";s:7:\"#202020\";}i:24;a:3:{s:3:\"_id\";s:7:\"2b96c38\";s:5:\"title\";s:10:\"white blue\";s:5:\"color\";s:7:\"#F4F9FC\";}i:25;a:3:{s:3:\"_id\";s:7:\"b01ebaf\";s:5:\"title\";s:12:\"Black trans2\";s:5:\"color\";s:9:\"#3A3A3AC4\";}i:26;a:3:{s:5:\"title\";s:6:\"redish\";s:3:\"_id\";s:7:\"ae9db18\";s:5:\"color\";s:7:\"#EC5F5F\";}i:27;a:3:{s:5:\"title\";s:7:\"pinkish\";s:3:\"_id\";s:7:\"384fc29\";s:5:\"color\";s:7:\"#F6AEAF\";}i:28;a:3:{s:3:\"_id\";s:7:\"80e8ddb\";s:5:\"title\";s:10:\"white pink\";s:5:\"color\";s:7:\"#FDF7F8\";}i:29;a:3:{s:3:\"_id\";s:7:\"e8ce20f\";s:5:\"title\";s:9:\"red trans\";s:5:\"color\";s:9:\"#EC5F5F4A\";}i:30;a:3:{s:5:\"title\";s:7:\"yellow3\";s:3:\"_id\";s:7:\"53ec359\";s:5:\"color\";s:7:\"#FFB96C\";}i:31;a:3:{s:3:\"_id\";s:7:\"ff9d88d\";s:5:\"title\";s:10:\"cheery red\";s:5:\"color\";s:7:\"#DC434C\";}i:32;a:3:{s:3:\"_id\";s:7:\"3b65606\";s:5:\"title\";s:8:\"bold red\";s:5:\"color\";s:7:\"#E91414\";}i:33;a:3:{s:3:\"_id\";s:7:\"e12378d\";s:5:\"title\";s:6:\"orange\";s:5:\"color\";s:7:\"#FE8135\";}i:34;a:3:{s:3:\"_id\";s:7:\"98729b8\";s:5:\"title\";s:7:\"greenv2\";s:5:\"color\";s:7:\"#A2E765\";}i:35;a:3:{s:3:\"_id\";s:7:\"dc1f5b5\";s:5:\"title\";s:7:\"greenv3\";s:5:\"color\";s:7:\"#9CD769\";}i:36;a:3:{s:3:\"_id\";s:7:\"3c09f21\";s:5:\"title\";s:12:\"light yellow\";s:5:\"color\";s:7:\"#FDDC67\";}i:37;a:3:{s:5:\"title\";s:14:\"light yellow 2\";s:3:\"_id\";s:7:\"98e3e15\";s:5:\"color\";s:7:\"#FFE794\";}i:38;a:3:{s:3:\"_id\";s:7:\"0b1c8b0\";s:5:\"title\";s:11:\"lightwhite1\";s:5:\"color\";s:7:\"#FFFCF2\";}i:39;a:3:{s:3:\"_id\";s:7:\"f1ae027\";s:5:\"title\";s:11:\"lightcream1\";s:5:\"color\";s:7:\"#F6E9E0\";}i:40;a:3:{s:3:\"_id\";s:7:\"dafc007\";s:5:\"title\";s:4:\"gold\";s:5:\"color\";s:7:\"#FFCB69\";}i:41;a:3:{s:3:\"_id\";s:7:\"f2feccc\";s:5:\"title\";s:5:\"gold2\";s:5:\"color\";s:7:\"#FCBF4B\";}i:42;a:3:{s:3:\"_id\";s:7:\"4ad74f2\";s:5:\"title\";s:12:\"white trans3\";s:5:\"color\";s:9:\"#FFFFFFC7\";}i:43;a:3:{s:3:\"_id\";s:7:\"fdbe5e1\";s:5:\"title\";s:7:\"mgreen1\";s:5:\"color\";s:7:\"#5DB246\";}i:44;a:3:{s:3:\"_id\";s:7:\"a82a6d7\";s:5:\"title\";s:7:\"mgreen2\";s:5:\"color\";s:7:\"#1FA248\";}i:45;a:3:{s:3:\"_id\";s:7:\"cf11afe\";s:5:\"title\";s:7:\"mgreen3\";s:5:\"color\";s:7:\"#025C49\";}i:46;a:3:{s:3:\"_id\";s:7:\"fb4fe82\";s:5:\"title\";s:10:\"lightgrey3\";s:5:\"color\";s:7:\"#F1F1F1\";}i:47;a:3:{s:3:\"_id\";s:7:\"775d203\";s:5:\"title\";s:16:\"dark green trans\";s:5:\"color\";s:9:\"#025C49A8\";}i:48;a:3:{s:3:\"_id\";s:7:\"3431523\";s:5:\"title\";s:7:\"purple1\";s:5:\"color\";s:7:\"#7061EE\";}i:49;a:3:{s:3:\"_id\";s:7:\"4f6b16f\";s:5:\"title\";s:7:\"Purple2\";s:5:\"color\";s:7:\"#957FEE\";}i:50;a:3:{s:3:\"_id\";s:7:\"f542406\";s:5:\"title\";s:7:\"purple3\";s:5:\"color\";s:7:\"#B79CED\";}i:51;a:3:{s:3:\"_id\";s:7:\"d38674d\";s:5:\"title\";s:12:\"white purple\";s:5:\"color\";s:7:\"#F9F4FE\";}i:52;a:3:{s:5:\"title\";s:4:\"cyan\";s:3:\"_id\";s:7:\"0a21634\";s:5:\"color\";s:7:\"#2FCCD6\";}i:53;a:3:{s:5:\"title\";s:5:\"cyan2\";s:3:\"_id\";s:7:\"4b29dee\";s:5:\"color\";s:7:\"#56ECF6\";}i:54;a:3:{s:3:\"_id\";s:7:\"bb22fe7\";s:5:\"title\";s:12:\"white yellow\";s:5:\"color\";s:7:\"#FFF8E0\";}i:55;a:3:{s:3:\"_id\";s:7:\"7f7112a\";s:5:\"title\";s:6:\"cyan 3\";s:5:\"color\";s:7:\"#4FEECE\";}i:56;a:3:{s:3:\"_id\";s:7:\"1b61b1b\";s:5:\"title\";s:5:\"cyan4\";s:5:\"color\";s:7:\"#00969F\";}i:57;a:3:{s:3:\"_id\";s:7:\"5425a2a\";s:5:\"title\";s:4:\"pink\";s:5:\"color\";s:7:\"#E48188\";}i:58;a:3:{s:3:\"_id\";s:7:\"a00e83d\";s:5:\"title\";s:11:\"white blue2\";s:5:\"color\";s:7:\"#E6F2F2\";}i:59;a:3:{s:3:\"_id\";s:7:\"8eb8d4a\";s:5:\"title\";s:5:\"gold3\";s:5:\"color\";s:7:\"#CDB064\";}}s:17:\"system_typography\";a:4:{i:0;a:8:{s:3:\"_id\";s:7:\"primary\";s:5:\"title\";s:7:\"Primary\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:6:\"Mulish\";s:22:\"typography_font_weight\";s:3:\"600\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:2.6000000000000001;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";i:2;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";i:2;s:5:\"sizes\";a:0:{}}}i:1;a:8:{s:3:\"_id\";s:9:\"secondary\";s:5:\"title\";s:9:\"Secondary\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:6:\"Mulish\";s:22:\"typography_font_weight\";s:3:\"400\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";i:2;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:1.3;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:1.3;s:5:\"sizes\";a:0:{}}}i:2;a:9:{s:3:\"_id\";s:4:\"text\";s:5:\"title\";s:4:\"Text\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:6:\"Roboto\";s:22:\"typography_font_weight\";s:3:\"400\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:1.1000000000000001;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.7;s:5:\"sizes\";a:0:{}}}i:3;a:8:{s:3:\"_id\";s:6:\"accent\";s:5:\"title\";s:6:\"Accent\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:5:\"Exo 2\";s:22:\"typography_font_weight\";s:3:\"600\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:0.90000000000000002;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:0.90000000000000002;s:5:\"sizes\";a:0:{}}}}s:21:\"default_generic_fonts\";s:10:\"Sans-serif\";s:19:\"page_title_selector\";s:14:\"h1.entry-title\";s:27:\"hello_footer_copyright_text\";s:19:\"All rights reserved\";s:11:\"__globals__\";a:26:{s:26:\"body_typography_typography\";s:26:\"globals/typography?id=text\";s:10:\"body_color\";s:22:\"globals/colors?id=text\";s:8:\"h1_color\";s:25:\"globals/colors?id=primary\";s:24:\"h1_typography_typography\";s:29:\"globals/typography?id=4244abd\";s:8:\"h2_color\";s:25:\"globals/colors?id=primary\";s:24:\"h2_typography_typography\";s:29:\"globals/typography?id=eddebef\";s:8:\"h3_color\";s:25:\"globals/colors?id=primary\";s:24:\"h3_typography_typography\";s:29:\"globals/typography?id=5671b07\";s:8:\"h4_color\";s:25:\"globals/colors?id=primary\";s:24:\"h4_typography_typography\";s:29:\"globals/typography?id=d50cf18\";s:8:\"h5_color\";s:25:\"globals/colors?id=primary\";s:24:\"h5_typography_typography\";s:29:\"globals/typography?id=d2268dd\";s:8:\"h6_color\";s:25:\"globals/colors?id=primary\";s:24:\"h6_typography_typography\";s:29:\"globals/typography?id=fb084e4\";s:17:\"link_normal_color\";s:0:\"\";s:33:\"link_normal_typography_typography\";s:26:\"globals/typography?id=text\";s:28:\"button_typography_typography\";s:29:\"globals/typography?id=f8cdd91\";s:23:\"button_background_color\";s:25:\"globals/colors?id=0a21634\";s:29:\"button_hover_background_color\";s:25:\"globals/colors?id=4b29dee\";s:17:\"button_text_color\";s:27:\"globals/colors?id=secondary\";s:19:\"button_border_color\";s:0:\"\";s:25:\"button_hover_border_color\";s:0:\"\";s:23:\"button_hover_text_color\";s:27:\"globals/colors?id=secondary\";s:21:\"body_background_color\";s:25:\"globals/colors?id=e64be90\";s:25:\"button_background_color_b\";s:0:\"\";s:31:\"button_hover_background_color_b\";s:25:\"globals/colors?id=e64be90\";}s:11:\"viewport_md\";i:768;s:11:\"viewport_lg\";i:1025;s:19:\"button_border_width\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"1\";s:5:\"right\";s:1:\"1\";s:6:\"bottom\";s:1:\"1\";s:4:\"left\";s:1:\"1\";s:8:\"isLinked\";b:1;}s:14:\"button_padding\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:2:\"15\";s:5:\"right\";s:2:\"30\";s:6:\"bottom\";s:2:\"15\";s:4:\"left\";s:2:\"30\";s:8:\"isLinked\";b:0;}s:15:\"activeItemIndex\";i:1;s:28:\"button_typography_typography\";s:6:\"custom\";s:29:\"button_typography_font_family\";s:6:\"Roboto\";s:27:\"button_typography_font_size\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:29:\"button_typography_font_weight\";s:3:\"400\";s:29:\"button_typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.5;s:5:\"sizes\";a:0:{}}s:17:\"button_text_color\";s:7:\"#FFFFFF\";s:19:\"button_border_color\";s:7:\"#479DFF\";s:34:\"button_typography_font_size_tablet\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:0.90000000000000002;s:5:\"sizes\";a:0:{}}s:34:\"button_typography_font_size_mobile\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:0.90000000000000002;s:5:\"sizes\";a:0:{}}s:25:\"button_hover_border_width\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"1\";s:5:\"right\";s:1:\"1\";s:6:\"bottom\";s:1:\"1\";s:4:\"left\";s:1:\"1\";s:8:\"isLinked\";b:1;}s:10:\"body_color\";s:7:\"#8E8E8E\";s:8:\"h1_color\";s:7:\"#54595F\";s:8:\"h2_color\";s:7:\"#54595F\";s:8:\"h3_color\";s:7:\"#54595F\";s:8:\"h4_color\";s:7:\"#54595F\";s:8:\"h5_color\";s:7:\"#54595F\";s:8:\"h6_color\";s:7:\"#54595F\";s:25:\"button_hover_border_color\";s:7:\"#479DFF\";s:15:\"container_width\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:1280;s:5:\"sizes\";a:0:{}}s:26:\"body_typography_typography\";s:6:\"custom\";s:27:\"body_typography_font_family\";s:6:\"Roboto\";s:25:\"body_typography_font_size\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:1.1000000000000001;s:5:\"sizes\";a:0:{}}s:27:\"body_typography_font_weight\";s:3:\"400\";s:33:\"link_normal_typography_typography\";s:6:\"custom\";s:34:\"link_normal_typography_font_family\";s:6:\"Roboto\";s:32:\"link_normal_typography_font_size\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:1.1000000000000001;s:5:\"sizes\";a:0:{}}s:34:\"link_normal_typography_font_weight\";s:3:\"400\";s:24:\"h1_typography_typography\";s:6:\"custom\";s:25:\"h1_typography_font_family\";s:5:\"Exo 2\";s:23:\"h1_typography_font_size\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:5.5;s:5:\"sizes\";a:0:{}}s:25:\"h1_typography_font_weight\";s:3:\"800\";s:28:\"h1_typography_text_transform\";s:10:\"capitalize\";s:25:\"h1_typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:26:\"h1_typography_word_spacing\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:24:\"h2_typography_typography\";s:6:\"custom\";s:25:\"h2_typography_font_family\";s:5:\"Exo 2\";s:23:\"h2_typography_font_size\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";i:3;s:5:\"sizes\";a:0:{}}s:25:\"h2_typography_font_weight\";s:3:\"800\";s:28:\"h2_typography_text_transform\";s:10:\"capitalize\";s:25:\"h2_typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.1000000000000001;s:5:\"sizes\";a:0:{}}s:26:\"h2_typography_word_spacing\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:24:\"h3_typography_typography\";s:6:\"custom\";s:25:\"h3_typography_font_family\";s:5:\"Exo 2\";s:23:\"h3_typography_font_size\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:2.5;s:5:\"sizes\";a:0:{}}s:25:\"h3_typography_font_weight\";s:3:\"800\";s:25:\"h3_typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:26:\"h3_typography_word_spacing\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:24:\"h4_typography_typography\";s:6:\"custom\";s:25:\"h4_typography_font_family\";s:5:\"Exo 2\";s:23:\"h4_typography_font_size\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:1.6000000000000001;s:5:\"sizes\";a:0:{}}s:25:\"h4_typography_font_weight\";s:3:\"800\";s:25:\"h4_typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:26:\"h4_typography_word_spacing\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:24:\"h5_typography_typography\";s:6:\"custom\";s:25:\"h5_typography_font_family\";s:5:\"Exo 2\";s:23:\"h5_typography_font_size\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:1.3;s:5:\"sizes\";a:0:{}}s:25:\"h5_typography_font_weight\";s:3:\"800\";s:25:\"h5_typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:26:\"h5_typography_word_spacing\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:24:\"h6_typography_typography\";s:6:\"custom\";s:25:\"h6_typography_font_family\";s:5:\"Exo 2\";s:23:\"h6_typography_font_size\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:0.90000000000000002;s:5:\"sizes\";a:0:{}}s:25:\"h6_typography_font_weight\";s:3:\"600\";s:25:\"h6_typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:26:\"h6_typography_word_spacing\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:23:\"button_hover_text_color\";s:7:\"#FFFFFF\";s:32:\"body_typography_font_size_tablet\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:32:\"body_typography_font_size_mobile\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:39:\"link_normal_typography_font_size_tablet\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:39:\"link_normal_typography_font_size_mobile\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:30:\"h1_typography_font_size_tablet\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";i:4;s:5:\"sizes\";a:0:{}}s:30:\"h1_typography_font_size_mobile\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:3.5;s:5:\"sizes\";a:0:{}}s:30:\"h2_typography_font_size_tablet\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:2.5;s:5:\"sizes\";a:0:{}}s:30:\"h2_typography_font_size_mobile\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:2.2999999999999998;s:5:\"sizes\";a:0:{}}s:30:\"h3_typography_font_size_tablet\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:1.7;s:5:\"sizes\";a:0:{}}s:30:\"h3_typography_font_size_mobile\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:1.5;s:5:\"sizes\";a:0:{}}s:30:\"h4_typography_font_size_tablet\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:1.2;s:5:\"sizes\";a:0:{}}s:30:\"h4_typography_font_size_mobile\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:1.2;s:5:\"sizes\";a:0:{}}s:30:\"h5_typography_font_size_tablet\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:30:\"h5_typography_font_size_mobile\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:30:\"h6_typography_font_size_tablet\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:0.80000000000000004;s:5:\"sizes\";a:0:{}}s:30:\"h6_typography_font_size_mobile\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:0.80000000000000004;s:5:\"sizes\";a:0:{}}s:26:\"body_background_background\";s:7:\"classic\";s:28:\"button_background_color_stop\";a:3:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:50;s:5:\"sizes\";a:0:{}}s:31:\"button_background_gradient_type\";s:6:\"radial\";s:37:\"button_hover_background_gradient_type\";s:6:\"radial\";s:30:\"button_typography_word_spacing\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:25:\"button_background_color_b\";s:7:\"#FC3B00\";s:31:\"button_hover_background_color_b\";s:7:\"#FFFFFF\";s:21:\"body_background_color\";s:7:\"#FFFFFF\";s:27:\"body_typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.7;s:5:\"sizes\";a:0:{}}s:34:\"link_normal_typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.7;s:5:\"sizes\";a:0:{}}s:20:\"button_border_radius\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"0\";s:5:\"right\";s:1:\"0\";s:6:\"bottom\";s:1:\"0\";s:4:\"left\";s:1:\"0\";s:8:\"isLinked\";b:1;}s:33:\"button_box_shadow_box_shadow_type\";s:3:\"yes\";s:28:\"button_box_shadow_box_shadow\";a:5:{s:10:\"horizontal\";i:-7;s:8:\"vertical\";i:9;s:4:\"blur\";i:7;s:6:\"spread\";i:0;s:5:\"color\";s:19:\"rgba(0, 0, 0, 0.21)\";}s:23:\"button_background_color\";s:7:\"#2FCCD6\";}'),(22,8,'_elementor_data','[]'),(23,11,'_elementor_edit_mode','builder'),(24,11,'_elementor_template_type','section'),(25,11,'_elementor_version','3.15.3'),(26,11,'_wp_page_template','default'),(27,11,'_elementor_page_settings','a:109:{s:17:\"custom_typography\";a:32:{i:0;a:9:{s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:6:\"Roboto\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:0.90000000000000002;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:0.90000000000000002;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"400\";s:3:\"_id\";s:7:\"f8cdd91\";s:5:\"title\";s:9:\"Body Text\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.5;s:5:\"sizes\";a:0:{}}}i:1;a:10:{s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:6:\"Roboto\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:1.3;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"500\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";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\";i:5;s:5:\"sizes\";a:0:{}}s:3:\"_id\";s:7:\"3f07da6\";s:5:\"title\";s:12:\"Mini Heading\";}i:2;a:9:{s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:6:\"Roboto\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:0.90000000000000002;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:0.80000000000000004;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:0.80000000000000004;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"400\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:3:\"_id\";s:7:\"24b2df3\";s:5:\"title\";s:9:\"h6 footer\";}i:3;a:9:{s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:6:\"Roboto\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:1.2;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:1.1000000000000001;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:1.1000000000000001;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"500\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:3:\"_id\";s:7:\"64a9188\";s:5:\"title\";s:10:\"Post title\";}i:4;a:9:{s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:6:\"Roboto\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:0.90000000000000002;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:0.90000000000000002;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"500\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.5;s:5:\"sizes\";a:0:{}}s:3:\"_id\";s:7:\"779cdfc\";s:5:\"title\";s:9:\"text bold\";}i:5;a:10:{s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:6:\"Roboto\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:0.90000000000000002;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:0.90000000000000002;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"400\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:30;s:5:\"sizes\";a:0:{}}s:25:\"typography_letter_spacing\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:3:\"_id\";s:7:\"0b79bd8\";s:5:\"title\";s:6:\"text 2\";}i:6;a:11:{s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:5:\"Inter\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:5.5;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:3.5;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:3.5;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"700\";s:25:\"typography_text_transform\";s:10:\"capitalize\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:23:\"typography_word_spacing\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:3:\"_id\";s:7:\"b746a66\";s:5:\"title\";s:7:\"Counter\";}i:7;a:11:{s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:6:\"Roboto\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";i:13;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";i:9;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";i:9;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"600\";s:25:\"typography_text_transform\";s:10:\"capitalize\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:23:\"typography_word_spacing\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:3:\"_id\";s:7:\"6e144d7\";s:5:\"title\";s:5:\"404 3\";}i:8;a:11:{s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:5:\"Exo 2\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:5.5;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";i:4;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:3.5;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"800\";s:25:\"typography_text_transform\";s:10:\"capitalize\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:23:\"typography_word_spacing\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:3:\"_id\";s:7:\"4244abd\";s:5:\"title\";s:2:\"H1\";}i:9;a:11:{s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:5:\"Exo 2\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";i:3;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:2.5;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:2.2999999999999998;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"800\";s:25:\"typography_text_transform\";s:10:\"capitalize\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.1000000000000001;s:5:\"sizes\";a:0:{}}s:23:\"typography_word_spacing\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:3:\"_id\";s:7:\"eddebef\";s:5:\"title\";s:2:\"H2\";}i:10;a:10:{s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:5:\"Exo 2\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:2.5;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:1.7;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:1.5;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"800\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:23:\"typography_word_spacing\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:3:\"_id\";s:7:\"5671b07\";s:5:\"title\";s:2:\"H3\";}i:11;a:10:{s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:5:\"Exo 2\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:1.6000000000000001;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:1.2;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:1.2;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"800\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:23:\"typography_word_spacing\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:3:\"_id\";s:7:\"d50cf18\";s:5:\"title\";s:2:\"H4\";}i:12;a:10:{s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:5:\"Exo 2\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:1.3;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"800\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:23:\"typography_word_spacing\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:3:\"_id\";s:7:\"d2268dd\";s:5:\"title\";s:2:\"H5\";}i:13;a:10:{s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:5:\"Exo 2\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:0.90000000000000002;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:0.80000000000000004;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:0.80000000000000004;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"600\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:23:\"typography_word_spacing\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:3:\"_id\";s:7:\"fb084e4\";s:5:\"title\";s:2:\"H6\";}i:14;a:8:{s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:6:\"Roboto\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:1.3;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:1.2;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:1.1000000000000001;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"400\";s:3:\"_id\";s:7:\"6c3d804\";s:5:\"title\";s:5:\"text2\";}i:15;a:11:{s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:15:\"Vujahday Script\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:3.5;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:2.7000000000000002;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:2.2999999999999998;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"700\";s:25:\"typography_text_transform\";s:10:\"capitalize\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:23:\"typography_word_spacing\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:3:\"_id\";s:7:\"3bc7291\";s:5:\"title\";s:11:\"handwriting\";}i:16;a:10:{s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:6:\"Roboto\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:1.6000000000000001;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:1.2;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:1.2;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"700\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:23:\"typography_word_spacing\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:3:\"_id\";s:7:\"379825b\";s:5:\"title\";s:9:\"H4 roboto\";}i:17;a:9:{s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:6:\"Roboto\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:1.1000000000000001;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"400\";s:21:\"typography_font_style\";s:6:\"italic\";s:3:\"_id\";s:7:\"35188cd\";s:5:\"title\";s:11:\"text italic\";}i:18;a:10:{s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:6:\"Roboto\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:1.6000000000000001;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:1.2;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:1.2;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"400\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:23:\"typography_word_spacing\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:3:\"_id\";s:7:\"4cabf41\";s:5:\"title\";s:14:\"thin H4 roboto\";}i:19;a:10:{s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:6:\"Roboto\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:1.3;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"500\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:23:\"typography_word_spacing\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:3:\"_id\";s:7:\"7da7d65\";s:5:\"title\";s:9:\"h5 roboto\";}i:20;a:11:{s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:6:\"Roboto\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:1.6000000000000001;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:1.2;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:1.2;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"400\";s:21:\"typography_font_style\";s:6:\"italic\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:23:\"typography_word_spacing\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:3:\"_id\";s:7:\"af1eea0\";s:5:\"title\";s:21:\"h4 thin roboto italic\";}i:21;a:10:{s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:6:\"Roboto\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:1.6000000000000001;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:1.2;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:1.2;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"400\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.3999999999999999;s:5:\"sizes\";a:0:{}}s:23:\"typography_word_spacing\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:3:\"_id\";s:7:\"077d7fa\";s:5:\"title\";s:7:\"h4 text\";}i:22;a:11:{s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:5:\"Kanit\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";i:9;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";i:5;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:2.5;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"900\";s:25:\"typography_text_transform\";s:10:\"capitalize\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:23:\"typography_word_spacing\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:3:\"_id\";s:7:\"ad260f4\";s:5:\"title\";s:11:\"big heading\";}i:23;a:10:{s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:6:\"Roboto\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:2.5;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:1.7;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:1.5;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"600\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:23:\"typography_word_spacing\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:3:\"_id\";s:7:\"6a8c123\";s:5:\"title\";s:9:\"H3 roboto\";}i:24;a:11:{s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:6:\"Roboto\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:3.7999999999999998;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:2.5;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:2.2999999999999998;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"500\";s:25:\"typography_text_transform\";s:10:\"capitalize\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.3999999999999999;s:5:\"sizes\";a:0:{}}s:23:\"typography_word_spacing\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:3:\"_id\";s:7:\"1b136aa\";s:5:\"title\";s:12:\"counter font\";}i:25;a:11:{s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:6:\"Roboto\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:0.90000000000000002;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:0.80000000000000004;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:0.80000000000000004;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"400\";s:21:\"typography_font_style\";s:6:\"italic\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:23:\"typography_word_spacing\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:3:\"_id\";s:7:\"8eef092\";s:5:\"title\";s:16:\"h6 footer italic\";}i:26;a:11:{s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:5:\"Inter\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";i:12;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";i:9;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";i:9;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"600\";s:25:\"typography_text_transform\";s:10:\"capitalize\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:23:\"typography_word_spacing\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:3:\"_id\";s:7:\"5495cbe\";s:5:\"title\";s:5:\"404 2\";}i:27;a:11:{s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:5:\"Inter\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:4.5;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:3.5;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:2.5;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"600\";s:25:\"typography_text_transform\";s:10:\"capitalize\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:23:\"typography_word_spacing\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:3:\"_id\";s:7:\"b23dda8\";s:5:\"title\";s:4:\"H1v2\";}i:28;a:11:{s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:6:\"Roboto\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:0.90000000000000002;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:0.90000000000000002;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"400\";s:21:\"typography_font_style\";s:6:\"italic\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.5;s:5:\"sizes\";a:0:{}}s:23:\"typography_word_spacing\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:3:\"_id\";s:7:\"fb6c60c\";s:5:\"title\";s:16:\"body text italic\";}i:29;a:12:{s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:6:\"Mulish\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:8.5;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:4.7999999999999998;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:3.7000000000000002;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"800\";s:25:\"typography_text_transform\";s:10:\"capitalize\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:32:\"typography_letter_spacing_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";d:5.4000000000000004;s:5:\"sizes\";a:0:{}}s:23:\"typography_word_spacing\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:3:\"_id\";s:7:\"e67c287\";s:5:\"title\";s:5:\"Big H\";}i:30;a:12:{s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:6:\"Roboto\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";i:3;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:2.5;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:2.2999999999999998;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"400\";s:25:\"typography_text_transform\";s:10:\"capitalize\";s:21:\"typography_font_style\";s:6:\"italic\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.1000000000000001;s:5:\"sizes\";a:0:{}}s:23:\"typography_word_spacing\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:3:\"_id\";s:7:\"28bf922\";s:5:\"title\";s:16:\"italic H2 Roboto\";}i:31;a:11:{s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:5:\"Exo 2\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:5.5;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";i:4;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:3.5;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"500\";s:25:\"typography_text_transform\";s:10:\"capitalize\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:23:\"typography_word_spacing\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:3:\"_id\";s:7:\"d65c9cc\";s:5:\"title\";s:7:\"h1 thin\";}}s:13:\"system_colors\";a:4:{i:0;a:3:{s:3:\"_id\";s:7:\"primary\";s:5:\"title\";s:7:\"Primary\";s:5:\"color\";s:7:\"#54595F\";}i:1;a:3:{s:3:\"_id\";s:9:\"secondary\";s:5:\"title\";s:9:\"Secondary\";s:5:\"color\";s:7:\"#FFFFFF\";}i:2;a:3:{s:3:\"_id\";s:4:\"text\";s:5:\"title\";s:4:\"Text\";s:5:\"color\";s:7:\"#8E8E8E\";}i:3;a:3:{s:3:\"_id\";s:6:\"accent\";s:5:\"title\";s:6:\"Accent\";s:5:\"color\";s:7:\"#2FCCD6\";}}s:13:\"custom_colors\";a:60:{i:0;a:3:{s:3:\"_id\";s:7:\"e64be90\";s:5:\"title\";s:5:\"White\";s:5:\"color\";s:7:\"#FFFFFF\";}i:1;a:3:{s:3:\"_id\";s:7:\"eb507f3\";s:5:\"title\";s:11:\"Transparent\";s:5:\"color\";s:9:\"#FFFFFF00\";}i:2;a:3:{s:3:\"_id\";s:7:\"3f37fea\";s:5:\"title\";s:6:\"Black1\";s:5:\"color\";s:7:\"#3A3A3A\";}i:3;a:3:{s:3:\"_id\";s:7:\"7af558c\";s:5:\"title\";s:12:\"transparent2\";s:5:\"color\";s:9:\"#FFFFFF1A\";}i:4;a:3:{s:3:\"_id\";s:7:\"45bcc5b\";s:5:\"title\";s:6:\"black2\";s:5:\"color\";s:7:\"#484848\";}i:5;a:3:{s:3:\"_id\";s:7:\"76544c2\";s:5:\"title\";s:5:\"grey1\";s:5:\"color\";s:7:\"#D8D8D8\";}i:6;a:3:{s:3:\"_id\";s:7:\"70ca7d7\";s:5:\"title\";s:9:\"blueblack\";s:5:\"color\";s:7:\"#062233\";}i:7;a:3:{s:3:\"_id\";s:7:\"faf5d15\";s:5:\"title\";s:13:\"absoluteblack\";s:5:\"color\";s:7:\"#000000\";}i:8;a:3:{s:3:\"_id\";s:7:\"d498ef1\";s:5:\"title\";s:7:\"white 2\";s:5:\"color\";s:7:\"#F0EFE6\";}i:9;a:3:{s:3:\"_id\";s:7:\"7c7ba2f\";s:5:\"title\";s:10:\"Browncream\";s:5:\"color\";s:7:\"#FFF0DD\";}i:10;a:3:{s:3:\"_id\";s:7:\"3fce00d\";s:5:\"title\";s:6:\"green1\";s:5:\"color\";s:7:\"#BDC87B\";}i:11;a:3:{s:3:\"_id\";s:7:\"2b57703\";s:5:\"title\";s:6:\"trans3\";s:5:\"color\";s:9:\"#D8D8D8BD\";}i:12;a:3:{s:3:\"_id\";s:7:\"730a667\";s:5:\"title\";s:4:\"red1\";s:5:\"color\";s:7:\"#F46A5E\";}i:13;a:3:{s:3:\"_id\";s:7:\"ab0a9e7\";s:5:\"title\";s:7:\"yellow2\";s:5:\"color\";s:7:\"#FFA33E\";}i:14;a:3:{s:3:\"_id\";s:7:\"89b15fa\";s:5:\"title\";s:6:\"green2\";s:5:\"color\";s:7:\"#7EC242\";}i:15;a:3:{s:3:\"_id\";s:7:\"0af79f3\";s:5:\"title\";s:5:\"blue5\";s:5:\"color\";s:7:\"#89C4C8\";}i:16;a:3:{s:3:\"_id\";s:7:\"b9731ad\";s:5:\"title\";s:6:\"trans4\";s:5:\"color\";s:9:\"#F0EFE6D4\";}i:17;a:3:{s:3:\"_id\";s:7:\"1c4e034\";s:5:\"title\";s:12:\"white trans2\";s:5:\"color\";s:9:\"#FFFFFFDB\";}i:18;a:3:{s:3:\"_id\";s:7:\"50714e7\";s:5:\"title\";s:10:\"light grey\";s:5:\"color\";s:7:\"#F8F8F8\";}i:19;a:3:{s:3:\"_id\";s:7:\"2b95517\";s:5:\"title\";s:11:\"light grey2\";s:5:\"color\";s:7:\"#F0F0F0\";}i:20;a:3:{s:3:\"_id\";s:7:\"915f45d\";s:5:\"title\";s:5:\"grey2\";s:5:\"color\";s:7:\"#8E8E8E\";}i:21;a:3:{s:3:\"_id\";s:7:\"a8dcee5\";s:5:\"title\";s:11:\"black trans\";s:5:\"color\";s:9:\"#0000004F\";}i:22;a:3:{s:3:\"_id\";s:7:\"69381ab\";s:5:\"title\";s:6:\"grey 3\";s:5:\"color\";s:7:\"#B0B0B0\";}i:23;a:3:{s:3:\"_id\";s:7:\"c0cf2ba\";s:5:\"title\";s:6:\"Black3\";s:5:\"color\";s:7:\"#202020\";}i:24;a:3:{s:3:\"_id\";s:7:\"2b96c38\";s:5:\"title\";s:10:\"white blue\";s:5:\"color\";s:7:\"#F4F9FC\";}i:25;a:3:{s:3:\"_id\";s:7:\"b01ebaf\";s:5:\"title\";s:12:\"Black trans2\";s:5:\"color\";s:9:\"#3A3A3AC4\";}i:26;a:3:{s:5:\"title\";s:6:\"redish\";s:3:\"_id\";s:7:\"ae9db18\";s:5:\"color\";s:7:\"#EC5F5F\";}i:27;a:3:{s:5:\"title\";s:7:\"pinkish\";s:3:\"_id\";s:7:\"384fc29\";s:5:\"color\";s:7:\"#F6AEAF\";}i:28;a:3:{s:3:\"_id\";s:7:\"80e8ddb\";s:5:\"title\";s:10:\"white pink\";s:5:\"color\";s:7:\"#FDF7F8\";}i:29;a:3:{s:3:\"_id\";s:7:\"e8ce20f\";s:5:\"title\";s:9:\"red trans\";s:5:\"color\";s:9:\"#EC5F5F4A\";}i:30;a:3:{s:5:\"title\";s:7:\"yellow3\";s:3:\"_id\";s:7:\"53ec359\";s:5:\"color\";s:7:\"#FFB96C\";}i:31;a:3:{s:3:\"_id\";s:7:\"ff9d88d\";s:5:\"title\";s:10:\"cheery red\";s:5:\"color\";s:7:\"#DC434C\";}i:32;a:3:{s:3:\"_id\";s:7:\"3b65606\";s:5:\"title\";s:8:\"bold red\";s:5:\"color\";s:7:\"#E91414\";}i:33;a:3:{s:3:\"_id\";s:7:\"e12378d\";s:5:\"title\";s:6:\"orange\";s:5:\"color\";s:7:\"#FE8135\";}i:34;a:3:{s:3:\"_id\";s:7:\"98729b8\";s:5:\"title\";s:7:\"greenv2\";s:5:\"color\";s:7:\"#A2E765\";}i:35;a:3:{s:3:\"_id\";s:7:\"dc1f5b5\";s:5:\"title\";s:7:\"greenv3\";s:5:\"color\";s:7:\"#9CD769\";}i:36;a:3:{s:3:\"_id\";s:7:\"3c09f21\";s:5:\"title\";s:12:\"light yellow\";s:5:\"color\";s:7:\"#FDDC67\";}i:37;a:3:{s:5:\"title\";s:14:\"light yellow 2\";s:3:\"_id\";s:7:\"98e3e15\";s:5:\"color\";s:7:\"#FFE794\";}i:38;a:3:{s:3:\"_id\";s:7:\"0b1c8b0\";s:5:\"title\";s:11:\"lightwhite1\";s:5:\"color\";s:7:\"#FFFCF2\";}i:39;a:3:{s:3:\"_id\";s:7:\"f1ae027\";s:5:\"title\";s:11:\"lightcream1\";s:5:\"color\";s:7:\"#F6E9E0\";}i:40;a:3:{s:3:\"_id\";s:7:\"dafc007\";s:5:\"title\";s:4:\"gold\";s:5:\"color\";s:7:\"#FFCB69\";}i:41;a:3:{s:3:\"_id\";s:7:\"f2feccc\";s:5:\"title\";s:5:\"gold2\";s:5:\"color\";s:7:\"#FCBF4B\";}i:42;a:3:{s:3:\"_id\";s:7:\"4ad74f2\";s:5:\"title\";s:12:\"white trans3\";s:5:\"color\";s:9:\"#FFFFFFC7\";}i:43;a:3:{s:3:\"_id\";s:7:\"fdbe5e1\";s:5:\"title\";s:7:\"mgreen1\";s:5:\"color\";s:7:\"#5DB246\";}i:44;a:3:{s:3:\"_id\";s:7:\"a82a6d7\";s:5:\"title\";s:7:\"mgreen2\";s:5:\"color\";s:7:\"#1FA248\";}i:45;a:3:{s:3:\"_id\";s:7:\"cf11afe\";s:5:\"title\";s:7:\"mgreen3\";s:5:\"color\";s:7:\"#025C49\";}i:46;a:3:{s:3:\"_id\";s:7:\"fb4fe82\";s:5:\"title\";s:10:\"lightgrey3\";s:5:\"color\";s:7:\"#F1F1F1\";}i:47;a:3:{s:3:\"_id\";s:7:\"775d203\";s:5:\"title\";s:16:\"dark green trans\";s:5:\"color\";s:9:\"#025C49A8\";}i:48;a:3:{s:3:\"_id\";s:7:\"3431523\";s:5:\"title\";s:7:\"purple1\";s:5:\"color\";s:7:\"#7061EE\";}i:49;a:3:{s:3:\"_id\";s:7:\"4f6b16f\";s:5:\"title\";s:7:\"Purple2\";s:5:\"color\";s:7:\"#957FEE\";}i:50;a:3:{s:3:\"_id\";s:7:\"f542406\";s:5:\"title\";s:7:\"purple3\";s:5:\"color\";s:7:\"#B79CED\";}i:51;a:3:{s:3:\"_id\";s:7:\"d38674d\";s:5:\"title\";s:12:\"white purple\";s:5:\"color\";s:7:\"#F9F4FE\";}i:52;a:3:{s:5:\"title\";s:4:\"cyan\";s:3:\"_id\";s:7:\"0a21634\";s:5:\"color\";s:7:\"#2FCCD6\";}i:53;a:3:{s:5:\"title\";s:5:\"cyan2\";s:3:\"_id\";s:7:\"4b29dee\";s:5:\"color\";s:7:\"#56ECF6\";}i:54;a:3:{s:3:\"_id\";s:7:\"bb22fe7\";s:5:\"title\";s:12:\"white yellow\";s:5:\"color\";s:7:\"#FFF8E0\";}i:55;a:3:{s:3:\"_id\";s:7:\"7f7112a\";s:5:\"title\";s:6:\"cyan 3\";s:5:\"color\";s:7:\"#4FEECE\";}i:56;a:3:{s:3:\"_id\";s:7:\"1b61b1b\";s:5:\"title\";s:5:\"cyan4\";s:5:\"color\";s:7:\"#00969F\";}i:57;a:3:{s:3:\"_id\";s:7:\"5425a2a\";s:5:\"title\";s:4:\"pink\";s:5:\"color\";s:7:\"#E48188\";}i:58;a:3:{s:3:\"_id\";s:7:\"a00e83d\";s:5:\"title\";s:11:\"white blue2\";s:5:\"color\";s:7:\"#E6F2F2\";}i:59;a:3:{s:3:\"_id\";s:7:\"8eb8d4a\";s:5:\"title\";s:5:\"gold3\";s:5:\"color\";s:7:\"#CDB064\";}}s:17:\"system_typography\";a:4:{i:0;a:8:{s:3:\"_id\";s:7:\"primary\";s:5:\"title\";s:7:\"Primary\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:6:\"Mulish\";s:22:\"typography_font_weight\";s:3:\"600\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:2.6000000000000001;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";i:2;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";i:2;s:5:\"sizes\";a:0:{}}}i:1;a:8:{s:3:\"_id\";s:9:\"secondary\";s:5:\"title\";s:9:\"Secondary\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:6:\"Mulish\";s:22:\"typography_font_weight\";s:3:\"400\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";i:2;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:1.3;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:1.3;s:5:\"sizes\";a:0:{}}}i:2;a:9:{s:3:\"_id\";s:4:\"text\";s:5:\"title\";s:4:\"Text\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:6:\"Roboto\";s:22:\"typography_font_weight\";s:3:\"400\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:1.1000000000000001;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.7;s:5:\"sizes\";a:0:{}}}i:3;a:8:{s:3:\"_id\";s:6:\"accent\";s:5:\"title\";s:6:\"Accent\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:5:\"Exo 2\";s:22:\"typography_font_weight\";s:3:\"600\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:0.90000000000000002;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:0.90000000000000002;s:5:\"sizes\";a:0:{}}}}s:21:\"default_generic_fonts\";s:10:\"Sans-serif\";s:19:\"page_title_selector\";s:14:\"h1.entry-title\";s:27:\"hello_footer_copyright_text\";s:19:\"All rights reserved\";s:11:\"__globals__\";a:26:{s:26:\"body_typography_typography\";s:26:\"globals/typography?id=text\";s:10:\"body_color\";s:22:\"globals/colors?id=text\";s:8:\"h1_color\";s:25:\"globals/colors?id=primary\";s:24:\"h1_typography_typography\";s:29:\"globals/typography?id=4244abd\";s:8:\"h2_color\";s:25:\"globals/colors?id=primary\";s:24:\"h2_typography_typography\";s:29:\"globals/typography?id=eddebef\";s:8:\"h3_color\";s:25:\"globals/colors?id=primary\";s:24:\"h3_typography_typography\";s:29:\"globals/typography?id=5671b07\";s:8:\"h4_color\";s:25:\"globals/colors?id=primary\";s:24:\"h4_typography_typography\";s:29:\"globals/typography?id=d50cf18\";s:8:\"h5_color\";s:25:\"globals/colors?id=primary\";s:24:\"h5_typography_typography\";s:29:\"globals/typography?id=d2268dd\";s:8:\"h6_color\";s:25:\"globals/colors?id=primary\";s:24:\"h6_typography_typography\";s:29:\"globals/typography?id=fb084e4\";s:17:\"link_normal_color\";s:0:\"\";s:33:\"link_normal_typography_typography\";s:26:\"globals/typography?id=text\";s:28:\"button_typography_typography\";s:29:\"globals/typography?id=f8cdd91\";s:23:\"button_background_color\";s:25:\"globals/colors?id=0a21634\";s:29:\"button_hover_background_color\";s:25:\"globals/colors?id=4b29dee\";s:17:\"button_text_color\";s:27:\"globals/colors?id=secondary\";s:19:\"button_border_color\";s:0:\"\";s:25:\"button_hover_border_color\";s:0:\"\";s:23:\"button_hover_text_color\";s:27:\"globals/colors?id=secondary\";s:21:\"body_background_color\";s:25:\"globals/colors?id=e64be90\";s:25:\"button_background_color_b\";s:0:\"\";s:31:\"button_hover_background_color_b\";s:25:\"globals/colors?id=e64be90\";}s:11:\"viewport_md\";i:768;s:11:\"viewport_lg\";i:1025;s:19:\"button_border_width\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"1\";s:5:\"right\";s:1:\"1\";s:6:\"bottom\";s:1:\"1\";s:4:\"left\";s:1:\"1\";s:8:\"isLinked\";b:1;}s:14:\"button_padding\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:2:\"15\";s:5:\"right\";s:2:\"30\";s:6:\"bottom\";s:2:\"15\";s:4:\"left\";s:2:\"30\";s:8:\"isLinked\";b:0;}s:15:\"activeItemIndex\";i:1;s:28:\"button_typography_typography\";s:6:\"custom\";s:29:\"button_typography_font_family\";s:6:\"Roboto\";s:27:\"button_typography_font_size\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:29:\"button_typography_font_weight\";s:3:\"400\";s:29:\"button_typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.5;s:5:\"sizes\";a:0:{}}s:17:\"button_text_color\";s:7:\"#FFFFFF\";s:19:\"button_border_color\";s:7:\"#479DFF\";s:34:\"button_typography_font_size_tablet\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:0.90000000000000002;s:5:\"sizes\";a:0:{}}s:34:\"button_typography_font_size_mobile\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:0.90000000000000002;s:5:\"sizes\";a:0:{}}s:25:\"button_hover_border_width\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"1\";s:5:\"right\";s:1:\"1\";s:6:\"bottom\";s:1:\"1\";s:4:\"left\";s:1:\"1\";s:8:\"isLinked\";b:1;}s:10:\"body_color\";s:7:\"#8E8E8E\";s:8:\"h1_color\";s:7:\"#54595F\";s:8:\"h2_color\";s:7:\"#54595F\";s:8:\"h3_color\";s:7:\"#54595F\";s:8:\"h4_color\";s:7:\"#54595F\";s:8:\"h5_color\";s:7:\"#54595F\";s:8:\"h6_color\";s:7:\"#54595F\";s:25:\"button_hover_border_color\";s:7:\"#479DFF\";s:15:\"container_width\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:1280;s:5:\"sizes\";a:0:{}}s:26:\"body_typography_typography\";s:6:\"custom\";s:27:\"body_typography_font_family\";s:6:\"Roboto\";s:25:\"body_typography_font_size\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:1.1000000000000001;s:5:\"sizes\";a:0:{}}s:27:\"body_typography_font_weight\";s:3:\"400\";s:33:\"link_normal_typography_typography\";s:6:\"custom\";s:34:\"link_normal_typography_font_family\";s:6:\"Roboto\";s:32:\"link_normal_typography_font_size\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:1.1000000000000001;s:5:\"sizes\";a:0:{}}s:34:\"link_normal_typography_font_weight\";s:3:\"400\";s:24:\"h1_typography_typography\";s:6:\"custom\";s:25:\"h1_typography_font_family\";s:5:\"Exo 2\";s:23:\"h1_typography_font_size\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:5.5;s:5:\"sizes\";a:0:{}}s:25:\"h1_typography_font_weight\";s:3:\"800\";s:28:\"h1_typography_text_transform\";s:10:\"capitalize\";s:25:\"h1_typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:26:\"h1_typography_word_spacing\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:24:\"h2_typography_typography\";s:6:\"custom\";s:25:\"h2_typography_font_family\";s:5:\"Exo 2\";s:23:\"h2_typography_font_size\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";i:3;s:5:\"sizes\";a:0:{}}s:25:\"h2_typography_font_weight\";s:3:\"800\";s:28:\"h2_typography_text_transform\";s:10:\"capitalize\";s:25:\"h2_typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.1000000000000001;s:5:\"sizes\";a:0:{}}s:26:\"h2_typography_word_spacing\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:24:\"h3_typography_typography\";s:6:\"custom\";s:25:\"h3_typography_font_family\";s:5:\"Exo 2\";s:23:\"h3_typography_font_size\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:2.5;s:5:\"sizes\";a:0:{}}s:25:\"h3_typography_font_weight\";s:3:\"800\";s:25:\"h3_typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:26:\"h3_typography_word_spacing\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:24:\"h4_typography_typography\";s:6:\"custom\";s:25:\"h4_typography_font_family\";s:5:\"Exo 2\";s:23:\"h4_typography_font_size\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:1.6000000000000001;s:5:\"sizes\";a:0:{}}s:25:\"h4_typography_font_weight\";s:3:\"800\";s:25:\"h4_typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:26:\"h4_typography_word_spacing\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:24:\"h5_typography_typography\";s:6:\"custom\";s:25:\"h5_typography_font_family\";s:5:\"Exo 2\";s:23:\"h5_typography_font_size\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:1.3;s:5:\"sizes\";a:0:{}}s:25:\"h5_typography_font_weight\";s:3:\"800\";s:25:\"h5_typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:26:\"h5_typography_word_spacing\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:24:\"h6_typography_typography\";s:6:\"custom\";s:25:\"h6_typography_font_family\";s:5:\"Exo 2\";s:23:\"h6_typography_font_size\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:0.90000000000000002;s:5:\"sizes\";a:0:{}}s:25:\"h6_typography_font_weight\";s:3:\"600\";s:25:\"h6_typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:26:\"h6_typography_word_spacing\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:23:\"button_hover_text_color\";s:7:\"#FFFFFF\";s:32:\"body_typography_font_size_tablet\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:32:\"body_typography_font_size_mobile\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:39:\"link_normal_typography_font_size_tablet\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:39:\"link_normal_typography_font_size_mobile\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:30:\"h1_typography_font_size_tablet\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";i:4;s:5:\"sizes\";a:0:{}}s:30:\"h1_typography_font_size_mobile\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:3.5;s:5:\"sizes\";a:0:{}}s:30:\"h2_typography_font_size_tablet\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:2.5;s:5:\"sizes\";a:0:{}}s:30:\"h2_typography_font_size_mobile\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:2.2999999999999998;s:5:\"sizes\";a:0:{}}s:30:\"h3_typography_font_size_tablet\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:1.7;s:5:\"sizes\";a:0:{}}s:30:\"h3_typography_font_size_mobile\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:1.5;s:5:\"sizes\";a:0:{}}s:30:\"h4_typography_font_size_tablet\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:1.2;s:5:\"sizes\";a:0:{}}s:30:\"h4_typography_font_size_mobile\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:1.2;s:5:\"sizes\";a:0:{}}s:30:\"h5_typography_font_size_tablet\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:30:\"h5_typography_font_size_mobile\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:30:\"h6_typography_font_size_tablet\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:0.80000000000000004;s:5:\"sizes\";a:0:{}}s:30:\"h6_typography_font_size_mobile\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:0.80000000000000004;s:5:\"sizes\";a:0:{}}s:26:\"body_background_background\";s:7:\"classic\";s:28:\"button_background_color_stop\";a:3:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:50;s:5:\"sizes\";a:0:{}}s:31:\"button_background_gradient_type\";s:6:\"radial\";s:37:\"button_hover_background_gradient_type\";s:6:\"radial\";s:30:\"button_typography_word_spacing\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:25:\"button_background_color_b\";s:7:\"#FC3B00\";s:31:\"button_hover_background_color_b\";s:7:\"#FFFFFF\";s:21:\"body_background_color\";s:7:\"#FFFFFF\";s:27:\"body_typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.7;s:5:\"sizes\";a:0:{}}s:34:\"link_normal_typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.7;s:5:\"sizes\";a:0:{}}s:20:\"button_border_radius\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"0\";s:5:\"right\";s:1:\"0\";s:6:\"bottom\";s:1:\"0\";s:4:\"left\";s:1:\"0\";s:8:\"isLinked\";b:1;}s:33:\"button_box_shadow_box_shadow_type\";s:3:\"yes\";s:28:\"button_box_shadow_box_shadow\";a:5:{s:10:\"horizontal\";i:-7;s:8:\"vertical\";i:9;s:4:\"blur\";i:7;s:6:\"spread\";i:0;s:5:\"color\";s:19:\"rgba(0, 0, 0, 0.21)\";}s:23:\"button_background_color\";s:7:\"#2FCCD6\";}'),(28,11,'_elementor_data','[]'),(29,9,'_elementor_source_image_hash','114d17a116280d9def1feb18cc461c751e9a36bc'),(30,8,'_elementor_page_assets','a:0:{}'),(31,8,'envato_tk_source_kit','6'),(32,8,'envato_tk_source_index','0'),(33,12,'_elementor_edit_mode','builder'),(34,12,'_elementor_template_type','kit'),(35,12,'_elementor_version','3.15.3'),(36,12,'_wp_page_template','default'),(37,12,'_elementor_page_settings','a:109:{s:17:\"custom_typography\";a:32:{i:0;a:9:{s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:6:\"Roboto\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:0.90000000000000002;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:0.90000000000000002;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"400\";s:3:\"_id\";s:7:\"f8cdd91\";s:5:\"title\";s:9:\"Body Text\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.5;s:5:\"sizes\";a:0:{}}}i:1;a:10:{s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:6:\"Roboto\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:1.3;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"500\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";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\";i:5;s:5:\"sizes\";a:0:{}}s:3:\"_id\";s:7:\"3f07da6\";s:5:\"title\";s:12:\"Mini Heading\";}i:2;a:9:{s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:6:\"Roboto\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:0.90000000000000002;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:0.80000000000000004;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:0.80000000000000004;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"400\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:3:\"_id\";s:7:\"24b2df3\";s:5:\"title\";s:9:\"h6 footer\";}i:3;a:9:{s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:6:\"Roboto\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:1.2;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:1.1000000000000001;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:1.1000000000000001;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"500\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:3:\"_id\";s:7:\"64a9188\";s:5:\"title\";s:10:\"Post title\";}i:4;a:9:{s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:6:\"Roboto\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:0.90000000000000002;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:0.90000000000000002;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"500\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.5;s:5:\"sizes\";a:0:{}}s:3:\"_id\";s:7:\"779cdfc\";s:5:\"title\";s:9:\"text bold\";}i:5;a:10:{s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:6:\"Roboto\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:0.90000000000000002;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:0.90000000000000002;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"400\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:30;s:5:\"sizes\";a:0:{}}s:25:\"typography_letter_spacing\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:3:\"_id\";s:7:\"0b79bd8\";s:5:\"title\";s:6:\"text 2\";}i:6;a:11:{s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:5:\"Inter\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:5.5;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:3.5;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:3.5;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"700\";s:25:\"typography_text_transform\";s:10:\"capitalize\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:23:\"typography_word_spacing\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:3:\"_id\";s:7:\"b746a66\";s:5:\"title\";s:7:\"Counter\";}i:7;a:11:{s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:6:\"Roboto\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";i:13;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";i:9;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";i:9;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"600\";s:25:\"typography_text_transform\";s:10:\"capitalize\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:23:\"typography_word_spacing\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:3:\"_id\";s:7:\"6e144d7\";s:5:\"title\";s:5:\"404 3\";}i:8;a:11:{s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:5:\"Exo 2\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:5.5;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";i:4;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:3.5;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"800\";s:25:\"typography_text_transform\";s:10:\"capitalize\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:23:\"typography_word_spacing\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:3:\"_id\";s:7:\"4244abd\";s:5:\"title\";s:2:\"H1\";}i:9;a:11:{s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:5:\"Exo 2\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";i:3;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:2.5;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:2.2999999999999998;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"800\";s:25:\"typography_text_transform\";s:10:\"capitalize\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.1000000000000001;s:5:\"sizes\";a:0:{}}s:23:\"typography_word_spacing\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:3:\"_id\";s:7:\"eddebef\";s:5:\"title\";s:2:\"H2\";}i:10;a:10:{s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:5:\"Exo 2\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:2.5;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:1.7;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:1.5;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"800\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:23:\"typography_word_spacing\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:3:\"_id\";s:7:\"5671b07\";s:5:\"title\";s:2:\"H3\";}i:11;a:10:{s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:5:\"Exo 2\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:1.6000000000000001;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:1.2;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:1.2;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"800\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:23:\"typography_word_spacing\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:3:\"_id\";s:7:\"d50cf18\";s:5:\"title\";s:2:\"H4\";}i:12;a:10:{s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:5:\"Exo 2\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:1.3;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"800\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:23:\"typography_word_spacing\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:3:\"_id\";s:7:\"d2268dd\";s:5:\"title\";s:2:\"H5\";}i:13;a:10:{s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:5:\"Exo 2\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:0.90000000000000002;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:0.80000000000000004;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:0.80000000000000004;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"600\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:23:\"typography_word_spacing\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:3:\"_id\";s:7:\"fb084e4\";s:5:\"title\";s:2:\"H6\";}i:14;a:8:{s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:6:\"Roboto\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:1.3;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:1.2;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:1.1000000000000001;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"400\";s:3:\"_id\";s:7:\"6c3d804\";s:5:\"title\";s:5:\"text2\";}i:15;a:11:{s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:15:\"Vujahday Script\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:3.5;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:2.7000000000000002;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:2.2999999999999998;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"700\";s:25:\"typography_text_transform\";s:10:\"capitalize\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:23:\"typography_word_spacing\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:3:\"_id\";s:7:\"3bc7291\";s:5:\"title\";s:11:\"handwriting\";}i:16;a:10:{s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:6:\"Roboto\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:1.6000000000000001;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:1.2;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:1.2;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"700\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:23:\"typography_word_spacing\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:3:\"_id\";s:7:\"379825b\";s:5:\"title\";s:9:\"H4 roboto\";}i:17;a:9:{s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:6:\"Roboto\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:1.1000000000000001;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"400\";s:21:\"typography_font_style\";s:6:\"italic\";s:3:\"_id\";s:7:\"35188cd\";s:5:\"title\";s:11:\"text italic\";}i:18;a:10:{s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:6:\"Roboto\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:1.6000000000000001;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:1.2;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:1.2;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"400\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:23:\"typography_word_spacing\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:3:\"_id\";s:7:\"4cabf41\";s:5:\"title\";s:14:\"thin H4 roboto\";}i:19;a:10:{s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:6:\"Roboto\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:1.3;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"500\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:23:\"typography_word_spacing\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:3:\"_id\";s:7:\"7da7d65\";s:5:\"title\";s:9:\"h5 roboto\";}i:20;a:11:{s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:6:\"Roboto\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:1.6000000000000001;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:1.2;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:1.2;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"400\";s:21:\"typography_font_style\";s:6:\"italic\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:23:\"typography_word_spacing\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:3:\"_id\";s:7:\"af1eea0\";s:5:\"title\";s:21:\"h4 thin roboto italic\";}i:21;a:10:{s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:6:\"Roboto\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:1.6000000000000001;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:1.2;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:1.2;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"400\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.3999999999999999;s:5:\"sizes\";a:0:{}}s:23:\"typography_word_spacing\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:3:\"_id\";s:7:\"077d7fa\";s:5:\"title\";s:7:\"h4 text\";}i:22;a:11:{s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:5:\"Kanit\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";i:9;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";i:5;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:2.5;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"900\";s:25:\"typography_text_transform\";s:10:\"capitalize\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:23:\"typography_word_spacing\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:3:\"_id\";s:7:\"ad260f4\";s:5:\"title\";s:11:\"big heading\";}i:23;a:10:{s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:6:\"Roboto\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:2.5;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:1.7;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:1.5;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"600\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:23:\"typography_word_spacing\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:3:\"_id\";s:7:\"6a8c123\";s:5:\"title\";s:9:\"H3 roboto\";}i:24;a:11:{s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:6:\"Roboto\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:3.7999999999999998;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:2.5;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:2.2999999999999998;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"500\";s:25:\"typography_text_transform\";s:10:\"capitalize\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.3999999999999999;s:5:\"sizes\";a:0:{}}s:23:\"typography_word_spacing\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:3:\"_id\";s:7:\"1b136aa\";s:5:\"title\";s:12:\"counter font\";}i:25;a:11:{s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:6:\"Roboto\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:0.90000000000000002;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:0.80000000000000004;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:0.80000000000000004;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"400\";s:21:\"typography_font_style\";s:6:\"italic\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:23:\"typography_word_spacing\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:3:\"_id\";s:7:\"8eef092\";s:5:\"title\";s:16:\"h6 footer italic\";}i:26;a:11:{s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:5:\"Inter\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";i:12;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";i:9;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";i:9;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"600\";s:25:\"typography_text_transform\";s:10:\"capitalize\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:23:\"typography_word_spacing\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:3:\"_id\";s:7:\"5495cbe\";s:5:\"title\";s:5:\"404 2\";}i:27;a:11:{s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:5:\"Inter\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:4.5;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:3.5;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:2.5;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"600\";s:25:\"typography_text_transform\";s:10:\"capitalize\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:23:\"typography_word_spacing\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:3:\"_id\";s:7:\"b23dda8\";s:5:\"title\";s:4:\"H1v2\";}i:28;a:11:{s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:6:\"Roboto\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:0.90000000000000002;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:0.90000000000000002;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"400\";s:21:\"typography_font_style\";s:6:\"italic\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.5;s:5:\"sizes\";a:0:{}}s:23:\"typography_word_spacing\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:3:\"_id\";s:7:\"fb6c60c\";s:5:\"title\";s:16:\"body text italic\";}i:29;a:12:{s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:6:\"Mulish\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:8.5;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:4.7999999999999998;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:3.7000000000000002;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"800\";s:25:\"typography_text_transform\";s:10:\"capitalize\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:32:\"typography_letter_spacing_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";d:5.4000000000000004;s:5:\"sizes\";a:0:{}}s:23:\"typography_word_spacing\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:3:\"_id\";s:7:\"e67c287\";s:5:\"title\";s:5:\"Big H\";}i:30;a:12:{s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:6:\"Roboto\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";i:3;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:2.5;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:2.2999999999999998;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"400\";s:25:\"typography_text_transform\";s:10:\"capitalize\";s:21:\"typography_font_style\";s:6:\"italic\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.1000000000000001;s:5:\"sizes\";a:0:{}}s:23:\"typography_word_spacing\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:3:\"_id\";s:7:\"28bf922\";s:5:\"title\";s:16:\"italic H2 Roboto\";}i:31;a:11:{s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:5:\"Exo 2\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:5.5;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";i:4;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:3.5;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"500\";s:25:\"typography_text_transform\";s:10:\"capitalize\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:23:\"typography_word_spacing\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:3:\"_id\";s:7:\"d65c9cc\";s:5:\"title\";s:7:\"h1 thin\";}}s:13:\"system_colors\";a:4:{i:0;a:3:{s:3:\"_id\";s:7:\"primary\";s:5:\"title\";s:7:\"Primary\";s:5:\"color\";s:7:\"#54595F\";}i:1;a:3:{s:3:\"_id\";s:9:\"secondary\";s:5:\"title\";s:9:\"Secondary\";s:5:\"color\";s:7:\"#FFFFFF\";}i:2;a:3:{s:3:\"_id\";s:4:\"text\";s:5:\"title\";s:4:\"Text\";s:5:\"color\";s:7:\"#8E8E8E\";}i:3;a:3:{s:3:\"_id\";s:6:\"accent\";s:5:\"title\";s:6:\"Accent\";s:5:\"color\";s:7:\"#2FCCD6\";}}s:13:\"custom_colors\";a:60:{i:0;a:3:{s:3:\"_id\";s:7:\"e64be90\";s:5:\"title\";s:5:\"White\";s:5:\"color\";s:7:\"#FFFFFF\";}i:1;a:3:{s:3:\"_id\";s:7:\"eb507f3\";s:5:\"title\";s:11:\"Transparent\";s:5:\"color\";s:9:\"#FFFFFF00\";}i:2;a:3:{s:3:\"_id\";s:7:\"3f37fea\";s:5:\"title\";s:6:\"Black1\";s:5:\"color\";s:7:\"#3A3A3A\";}i:3;a:3:{s:3:\"_id\";s:7:\"7af558c\";s:5:\"title\";s:12:\"transparent2\";s:5:\"color\";s:9:\"#FFFFFF1A\";}i:4;a:3:{s:3:\"_id\";s:7:\"45bcc5b\";s:5:\"title\";s:6:\"black2\";s:5:\"color\";s:7:\"#484848\";}i:5;a:3:{s:3:\"_id\";s:7:\"76544c2\";s:5:\"title\";s:5:\"grey1\";s:5:\"color\";s:7:\"#D8D8D8\";}i:6;a:3:{s:3:\"_id\";s:7:\"70ca7d7\";s:5:\"title\";s:9:\"blueblack\";s:5:\"color\";s:7:\"#062233\";}i:7;a:3:{s:3:\"_id\";s:7:\"faf5d15\";s:5:\"title\";s:13:\"absoluteblack\";s:5:\"color\";s:7:\"#000000\";}i:8;a:3:{s:3:\"_id\";s:7:\"d498ef1\";s:5:\"title\";s:7:\"white 2\";s:5:\"color\";s:7:\"#F0EFE6\";}i:9;a:3:{s:3:\"_id\";s:7:\"7c7ba2f\";s:5:\"title\";s:10:\"Browncream\";s:5:\"color\";s:7:\"#FFF0DD\";}i:10;a:3:{s:3:\"_id\";s:7:\"3fce00d\";s:5:\"title\";s:6:\"green1\";s:5:\"color\";s:7:\"#BDC87B\";}i:11;a:3:{s:3:\"_id\";s:7:\"2b57703\";s:5:\"title\";s:6:\"trans3\";s:5:\"color\";s:9:\"#D8D8D8BD\";}i:12;a:3:{s:3:\"_id\";s:7:\"730a667\";s:5:\"title\";s:4:\"red1\";s:5:\"color\";s:7:\"#F46A5E\";}i:13;a:3:{s:3:\"_id\";s:7:\"ab0a9e7\";s:5:\"title\";s:7:\"yellow2\";s:5:\"color\";s:7:\"#FFA33E\";}i:14;a:3:{s:3:\"_id\";s:7:\"89b15fa\";s:5:\"title\";s:6:\"green2\";s:5:\"color\";s:7:\"#7EC242\";}i:15;a:3:{s:3:\"_id\";s:7:\"0af79f3\";s:5:\"title\";s:5:\"blue5\";s:5:\"color\";s:7:\"#89C4C8\";}i:16;a:3:{s:3:\"_id\";s:7:\"b9731ad\";s:5:\"title\";s:6:\"trans4\";s:5:\"color\";s:9:\"#F0EFE6D4\";}i:17;a:3:{s:3:\"_id\";s:7:\"1c4e034\";s:5:\"title\";s:12:\"white trans2\";s:5:\"color\";s:9:\"#FFFFFFDB\";}i:18;a:3:{s:3:\"_id\";s:7:\"50714e7\";s:5:\"title\";s:10:\"light grey\";s:5:\"color\";s:7:\"#F8F8F8\";}i:19;a:3:{s:3:\"_id\";s:7:\"2b95517\";s:5:\"title\";s:11:\"light grey2\";s:5:\"color\";s:7:\"#F0F0F0\";}i:20;a:3:{s:3:\"_id\";s:7:\"915f45d\";s:5:\"title\";s:5:\"grey2\";s:5:\"color\";s:7:\"#8E8E8E\";}i:21;a:3:{s:3:\"_id\";s:7:\"a8dcee5\";s:5:\"title\";s:11:\"black trans\";s:5:\"color\";s:9:\"#0000004F\";}i:22;a:3:{s:3:\"_id\";s:7:\"69381ab\";s:5:\"title\";s:6:\"grey 3\";s:5:\"color\";s:7:\"#B0B0B0\";}i:23;a:3:{s:3:\"_id\";s:7:\"c0cf2ba\";s:5:\"title\";s:6:\"Black3\";s:5:\"color\";s:7:\"#202020\";}i:24;a:3:{s:3:\"_id\";s:7:\"2b96c38\";s:5:\"title\";s:10:\"white blue\";s:5:\"color\";s:7:\"#F4F9FC\";}i:25;a:3:{s:3:\"_id\";s:7:\"b01ebaf\";s:5:\"title\";s:12:\"Black trans2\";s:5:\"color\";s:9:\"#3A3A3AC4\";}i:26;a:3:{s:5:\"title\";s:6:\"redish\";s:3:\"_id\";s:7:\"ae9db18\";s:5:\"color\";s:7:\"#EC5F5F\";}i:27;a:3:{s:5:\"title\";s:7:\"pinkish\";s:3:\"_id\";s:7:\"384fc29\";s:5:\"color\";s:7:\"#F6AEAF\";}i:28;a:3:{s:3:\"_id\";s:7:\"80e8ddb\";s:5:\"title\";s:10:\"white pink\";s:5:\"color\";s:7:\"#FDF7F8\";}i:29;a:3:{s:3:\"_id\";s:7:\"e8ce20f\";s:5:\"title\";s:9:\"red trans\";s:5:\"color\";s:9:\"#EC5F5F4A\";}i:30;a:3:{s:5:\"title\";s:7:\"yellow3\";s:3:\"_id\";s:7:\"53ec359\";s:5:\"color\";s:7:\"#FFB96C\";}i:31;a:3:{s:3:\"_id\";s:7:\"ff9d88d\";s:5:\"title\";s:10:\"cheery red\";s:5:\"color\";s:7:\"#DC434C\";}i:32;a:3:{s:3:\"_id\";s:7:\"3b65606\";s:5:\"title\";s:8:\"bold red\";s:5:\"color\";s:7:\"#E91414\";}i:33;a:3:{s:3:\"_id\";s:7:\"e12378d\";s:5:\"title\";s:6:\"orange\";s:5:\"color\";s:7:\"#FE8135\";}i:34;a:3:{s:3:\"_id\";s:7:\"98729b8\";s:5:\"title\";s:7:\"greenv2\";s:5:\"color\";s:7:\"#A2E765\";}i:35;a:3:{s:3:\"_id\";s:7:\"dc1f5b5\";s:5:\"title\";s:7:\"greenv3\";s:5:\"color\";s:7:\"#9CD769\";}i:36;a:3:{s:3:\"_id\";s:7:\"3c09f21\";s:5:\"title\";s:12:\"light yellow\";s:5:\"color\";s:7:\"#FDDC67\";}i:37;a:3:{s:5:\"title\";s:14:\"light yellow 2\";s:3:\"_id\";s:7:\"98e3e15\";s:5:\"color\";s:7:\"#FFE794\";}i:38;a:3:{s:3:\"_id\";s:7:\"0b1c8b0\";s:5:\"title\";s:11:\"lightwhite1\";s:5:\"color\";s:7:\"#FFFCF2\";}i:39;a:3:{s:3:\"_id\";s:7:\"f1ae027\";s:5:\"title\";s:11:\"lightcream1\";s:5:\"color\";s:7:\"#F6E9E0\";}i:40;a:3:{s:3:\"_id\";s:7:\"dafc007\";s:5:\"title\";s:4:\"gold\";s:5:\"color\";s:7:\"#FFCB69\";}i:41;a:3:{s:3:\"_id\";s:7:\"f2feccc\";s:5:\"title\";s:5:\"gold2\";s:5:\"color\";s:7:\"#FCBF4B\";}i:42;a:3:{s:3:\"_id\";s:7:\"4ad74f2\";s:5:\"title\";s:12:\"white trans3\";s:5:\"color\";s:9:\"#FFFFFFC7\";}i:43;a:3:{s:3:\"_id\";s:7:\"fdbe5e1\";s:5:\"title\";s:7:\"mgreen1\";s:5:\"color\";s:7:\"#5DB246\";}i:44;a:3:{s:3:\"_id\";s:7:\"a82a6d7\";s:5:\"title\";s:7:\"mgreen2\";s:5:\"color\";s:7:\"#1FA248\";}i:45;a:3:{s:3:\"_id\";s:7:\"cf11afe\";s:5:\"title\";s:7:\"mgreen3\";s:5:\"color\";s:7:\"#025C49\";}i:46;a:3:{s:3:\"_id\";s:7:\"fb4fe82\";s:5:\"title\";s:10:\"lightgrey3\";s:5:\"color\";s:7:\"#F1F1F1\";}i:47;a:3:{s:3:\"_id\";s:7:\"775d203\";s:5:\"title\";s:16:\"dark green trans\";s:5:\"color\";s:9:\"#025C49A8\";}i:48;a:3:{s:3:\"_id\";s:7:\"3431523\";s:5:\"title\";s:7:\"purple1\";s:5:\"color\";s:7:\"#7061EE\";}i:49;a:3:{s:3:\"_id\";s:7:\"4f6b16f\";s:5:\"title\";s:7:\"Purple2\";s:5:\"color\";s:7:\"#957FEE\";}i:50;a:3:{s:3:\"_id\";s:7:\"f542406\";s:5:\"title\";s:7:\"purple3\";s:5:\"color\";s:7:\"#B79CED\";}i:51;a:3:{s:3:\"_id\";s:7:\"d38674d\";s:5:\"title\";s:12:\"white purple\";s:5:\"color\";s:7:\"#F9F4FE\";}i:52;a:3:{s:5:\"title\";s:4:\"cyan\";s:3:\"_id\";s:7:\"0a21634\";s:5:\"color\";s:7:\"#2FCCD6\";}i:53;a:3:{s:5:\"title\";s:5:\"cyan2\";s:3:\"_id\";s:7:\"4b29dee\";s:5:\"color\";s:7:\"#56ECF6\";}i:54;a:3:{s:3:\"_id\";s:7:\"bb22fe7\";s:5:\"title\";s:12:\"white yellow\";s:5:\"color\";s:7:\"#FFF8E0\";}i:55;a:3:{s:3:\"_id\";s:7:\"7f7112a\";s:5:\"title\";s:6:\"cyan 3\";s:5:\"color\";s:7:\"#4FEECE\";}i:56;a:3:{s:3:\"_id\";s:7:\"1b61b1b\";s:5:\"title\";s:5:\"cyan4\";s:5:\"color\";s:7:\"#00969F\";}i:57;a:3:{s:3:\"_id\";s:7:\"5425a2a\";s:5:\"title\";s:4:\"pink\";s:5:\"color\";s:7:\"#E48188\";}i:58;a:3:{s:3:\"_id\";s:7:\"a00e83d\";s:5:\"title\";s:11:\"white blue2\";s:5:\"color\";s:7:\"#E6F2F2\";}i:59;a:3:{s:3:\"_id\";s:7:\"8eb8d4a\";s:5:\"title\";s:5:\"gold3\";s:5:\"color\";s:7:\"#CDB064\";}}s:17:\"system_typography\";a:4:{i:0;a:8:{s:3:\"_id\";s:7:\"primary\";s:5:\"title\";s:7:\"Primary\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:6:\"Mulish\";s:22:\"typography_font_weight\";s:3:\"600\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:2.6000000000000001;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";i:2;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";i:2;s:5:\"sizes\";a:0:{}}}i:1;a:8:{s:3:\"_id\";s:9:\"secondary\";s:5:\"title\";s:9:\"Secondary\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:6:\"Mulish\";s:22:\"typography_font_weight\";s:3:\"400\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";i:2;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:1.3;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:1.3;s:5:\"sizes\";a:0:{}}}i:2;a:9:{s:3:\"_id\";s:4:\"text\";s:5:\"title\";s:4:\"Text\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:6:\"Roboto\";s:22:\"typography_font_weight\";s:3:\"400\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:1.1000000000000001;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.7;s:5:\"sizes\";a:0:{}}}i:3;a:8:{s:3:\"_id\";s:6:\"accent\";s:5:\"title\";s:6:\"Accent\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:5:\"Exo 2\";s:22:\"typography_font_weight\";s:3:\"600\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:0.90000000000000002;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:0.90000000000000002;s:5:\"sizes\";a:0:{}}}}s:21:\"default_generic_fonts\";s:10:\"Sans-serif\";s:19:\"page_title_selector\";s:14:\"h1.entry-title\";s:27:\"hello_footer_copyright_text\";s:19:\"All rights reserved\";s:11:\"__globals__\";a:26:{s:26:\"body_typography_typography\";s:26:\"globals/typography?id=text\";s:10:\"body_color\";s:22:\"globals/colors?id=text\";s:8:\"h1_color\";s:25:\"globals/colors?id=primary\";s:24:\"h1_typography_typography\";s:29:\"globals/typography?id=4244abd\";s:8:\"h2_color\";s:25:\"globals/colors?id=primary\";s:24:\"h2_typography_typography\";s:29:\"globals/typography?id=eddebef\";s:8:\"h3_color\";s:25:\"globals/colors?id=primary\";s:24:\"h3_typography_typography\";s:29:\"globals/typography?id=5671b07\";s:8:\"h4_color\";s:25:\"globals/colors?id=primary\";s:24:\"h4_typography_typography\";s:29:\"globals/typography?id=d50cf18\";s:8:\"h5_color\";s:25:\"globals/colors?id=primary\";s:24:\"h5_typography_typography\";s:29:\"globals/typography?id=d2268dd\";s:8:\"h6_color\";s:25:\"globals/colors?id=primary\";s:24:\"h6_typography_typography\";s:29:\"globals/typography?id=fb084e4\";s:17:\"link_normal_color\";s:0:\"\";s:33:\"link_normal_typography_typography\";s:26:\"globals/typography?id=text\";s:28:\"button_typography_typography\";s:29:\"globals/typography?id=f8cdd91\";s:23:\"button_background_color\";s:25:\"globals/colors?id=0a21634\";s:29:\"button_hover_background_color\";s:25:\"globals/colors?id=4b29dee\";s:17:\"button_text_color\";s:27:\"globals/colors?id=secondary\";s:19:\"button_border_color\";s:0:\"\";s:25:\"button_hover_border_color\";s:0:\"\";s:23:\"button_hover_text_color\";s:27:\"globals/colors?id=secondary\";s:21:\"body_background_color\";s:25:\"globals/colors?id=e64be90\";s:25:\"button_background_color_b\";s:0:\"\";s:31:\"button_hover_background_color_b\";s:25:\"globals/colors?id=e64be90\";}s:11:\"viewport_md\";i:768;s:11:\"viewport_lg\";i:1025;s:19:\"button_border_width\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"1\";s:5:\"right\";s:1:\"1\";s:6:\"bottom\";s:1:\"1\";s:4:\"left\";s:1:\"1\";s:8:\"isLinked\";b:1;}s:14:\"button_padding\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:2:\"15\";s:5:\"right\";s:2:\"30\";s:6:\"bottom\";s:2:\"15\";s:4:\"left\";s:2:\"30\";s:8:\"isLinked\";b:0;}s:15:\"activeItemIndex\";i:1;s:28:\"button_typography_typography\";s:6:\"custom\";s:29:\"button_typography_font_family\";s:6:\"Roboto\";s:27:\"button_typography_font_size\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:29:\"button_typography_font_weight\";s:3:\"400\";s:29:\"button_typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.5;s:5:\"sizes\";a:0:{}}s:17:\"button_text_color\";s:7:\"#FFFFFF\";s:19:\"button_border_color\";s:7:\"#479DFF\";s:34:\"button_typography_font_size_tablet\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:0.90000000000000002;s:5:\"sizes\";a:0:{}}s:34:\"button_typography_font_size_mobile\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:0.90000000000000002;s:5:\"sizes\";a:0:{}}s:25:\"button_hover_border_width\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"1\";s:5:\"right\";s:1:\"1\";s:6:\"bottom\";s:1:\"1\";s:4:\"left\";s:1:\"1\";s:8:\"isLinked\";b:1;}s:10:\"body_color\";s:7:\"#8E8E8E\";s:8:\"h1_color\";s:7:\"#54595F\";s:8:\"h2_color\";s:7:\"#54595F\";s:8:\"h3_color\";s:7:\"#54595F\";s:8:\"h4_color\";s:7:\"#54595F\";s:8:\"h5_color\";s:7:\"#54595F\";s:8:\"h6_color\";s:7:\"#54595F\";s:25:\"button_hover_border_color\";s:7:\"#479DFF\";s:15:\"container_width\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:1280;s:5:\"sizes\";a:0:{}}s:26:\"body_typography_typography\";s:6:\"custom\";s:27:\"body_typography_font_family\";s:6:\"Roboto\";s:25:\"body_typography_font_size\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:1.1000000000000001;s:5:\"sizes\";a:0:{}}s:27:\"body_typography_font_weight\";s:3:\"400\";s:33:\"link_normal_typography_typography\";s:6:\"custom\";s:34:\"link_normal_typography_font_family\";s:6:\"Roboto\";s:32:\"link_normal_typography_font_size\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:1.1000000000000001;s:5:\"sizes\";a:0:{}}s:34:\"link_normal_typography_font_weight\";s:3:\"400\";s:24:\"h1_typography_typography\";s:6:\"custom\";s:25:\"h1_typography_font_family\";s:5:\"Exo 2\";s:23:\"h1_typography_font_size\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:5.5;s:5:\"sizes\";a:0:{}}s:25:\"h1_typography_font_weight\";s:3:\"800\";s:28:\"h1_typography_text_transform\";s:10:\"capitalize\";s:25:\"h1_typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:26:\"h1_typography_word_spacing\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:24:\"h2_typography_typography\";s:6:\"custom\";s:25:\"h2_typography_font_family\";s:5:\"Exo 2\";s:23:\"h2_typography_font_size\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";i:3;s:5:\"sizes\";a:0:{}}s:25:\"h2_typography_font_weight\";s:3:\"800\";s:28:\"h2_typography_text_transform\";s:10:\"capitalize\";s:25:\"h2_typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.1000000000000001;s:5:\"sizes\";a:0:{}}s:26:\"h2_typography_word_spacing\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:24:\"h3_typography_typography\";s:6:\"custom\";s:25:\"h3_typography_font_family\";s:5:\"Exo 2\";s:23:\"h3_typography_font_size\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:2.5;s:5:\"sizes\";a:0:{}}s:25:\"h3_typography_font_weight\";s:3:\"800\";s:25:\"h3_typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:26:\"h3_typography_word_spacing\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:24:\"h4_typography_typography\";s:6:\"custom\";s:25:\"h4_typography_font_family\";s:5:\"Exo 2\";s:23:\"h4_typography_font_size\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:1.6000000000000001;s:5:\"sizes\";a:0:{}}s:25:\"h4_typography_font_weight\";s:3:\"800\";s:25:\"h4_typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:26:\"h4_typography_word_spacing\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:24:\"h5_typography_typography\";s:6:\"custom\";s:25:\"h5_typography_font_family\";s:5:\"Exo 2\";s:23:\"h5_typography_font_size\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:1.3;s:5:\"sizes\";a:0:{}}s:25:\"h5_typography_font_weight\";s:3:\"800\";s:25:\"h5_typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:26:\"h5_typography_word_spacing\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:24:\"h6_typography_typography\";s:6:\"custom\";s:25:\"h6_typography_font_family\";s:5:\"Exo 2\";s:23:\"h6_typography_font_size\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:0.90000000000000002;s:5:\"sizes\";a:0:{}}s:25:\"h6_typography_font_weight\";s:3:\"600\";s:25:\"h6_typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:26:\"h6_typography_word_spacing\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:23:\"button_hover_text_color\";s:7:\"#FFFFFF\";s:32:\"body_typography_font_size_tablet\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:32:\"body_typography_font_size_mobile\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:39:\"link_normal_typography_font_size_tablet\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:39:\"link_normal_typography_font_size_mobile\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:30:\"h1_typography_font_size_tablet\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";i:4;s:5:\"sizes\";a:0:{}}s:30:\"h1_typography_font_size_mobile\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:3.5;s:5:\"sizes\";a:0:{}}s:30:\"h2_typography_font_size_tablet\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:2.5;s:5:\"sizes\";a:0:{}}s:30:\"h2_typography_font_size_mobile\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:2.2999999999999998;s:5:\"sizes\";a:0:{}}s:30:\"h3_typography_font_size_tablet\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:1.7;s:5:\"sizes\";a:0:{}}s:30:\"h3_typography_font_size_mobile\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:1.5;s:5:\"sizes\";a:0:{}}s:30:\"h4_typography_font_size_tablet\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:1.2;s:5:\"sizes\";a:0:{}}s:30:\"h4_typography_font_size_mobile\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:1.2;s:5:\"sizes\";a:0:{}}s:30:\"h5_typography_font_size_tablet\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:30:\"h5_typography_font_size_mobile\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:30:\"h6_typography_font_size_tablet\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:0.80000000000000004;s:5:\"sizes\";a:0:{}}s:30:\"h6_typography_font_size_mobile\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:0.80000000000000004;s:5:\"sizes\";a:0:{}}s:26:\"body_background_background\";s:7:\"classic\";s:28:\"button_background_color_stop\";a:3:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:50;s:5:\"sizes\";a:0:{}}s:31:\"button_background_gradient_type\";s:6:\"radial\";s:37:\"button_hover_background_gradient_type\";s:6:\"radial\";s:30:\"button_typography_word_spacing\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:25:\"button_background_color_b\";s:7:\"#FC3B00\";s:31:\"button_hover_background_color_b\";s:7:\"#FFFFFF\";s:21:\"body_background_color\";s:7:\"#FFFFFF\";s:27:\"body_typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.7;s:5:\"sizes\";a:0:{}}s:34:\"link_normal_typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.7;s:5:\"sizes\";a:0:{}}s:20:\"button_border_radius\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"0\";s:5:\"right\";s:1:\"0\";s:6:\"bottom\";s:1:\"0\";s:4:\"left\";s:1:\"0\";s:8:\"isLinked\";b:1;}s:33:\"button_box_shadow_box_shadow_type\";s:3:\"yes\";s:28:\"button_box_shadow_box_shadow\";a:5:{s:10:\"horizontal\";i:-7;s:8:\"vertical\";i:9;s:4:\"blur\";i:7;s:6:\"spread\";i:0;s:5:\"color\";s:19:\"rgba(0, 0, 0, 0.21)\";}s:23:\"button_background_color\";s:7:\"#2FCCD6\";}'),(38,12,'_elementor_data','[]'),(39,12,'_elementor_page_assets','a:0:{}'),(40,13,'_wp_attached_file','2023/09/boy3.png'),(41,13,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:4:\"file\";s:16:\"2023/09/boy3.png\";s:8:\"filesize\";i:123404;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:16:\"boy3-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:41602;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:16:\"boy3-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:12853;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:16:\"boy3-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:231162;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(42,13,'_elementor_source_image_hash','1d171e859975e59cb26489cbcabe3fa0994fea6f'),(43,14,'_wp_attached_file','2023/09/c4.png'),(44,14,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:183;s:6:\"height\";i:183;s:4:\"file\";s:14:\"2023/09/c4.png\";s:8:\"filesize\";i:6932;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:14:\"c4-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:7572;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(45,14,'_elementor_source_image_hash','dbc26c0d0bd8c009f02aa40c385ca9310e677041'),(46,15,'_wp_attached_file','2023/09/c3.png'),(47,15,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:184;s:6:\"height\";i:181;s:4:\"file\";s:14:\"2023/09/c3.png\";s:8:\"filesize\";i:6943;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:14:\"c3-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:7584;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(48,15,'_elementor_source_image_hash','222bb72cbad3cd359b31e1750ab11006b47097eb'),(49,16,'_wp_attached_file','2023/09/c3-1.png'),(50,16,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:184;s:6:\"height\";i:181;s:4:\"file\";s:16:\"2023/09/c3-1.png\";s:8:\"filesize\";i:6943;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:16:\"c3-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:7584;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(51,16,'_elementor_source_image_hash','222bb72cbad3cd359b31e1750ab11006b47097eb'),(52,17,'_wp_attached_file','2023/09/edge.png'),(53,17,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:324;s:6:\"height\";i:287;s:4:\"file\";s:16:\"2023/09/edge.png\";s:8:\"filesize\";i:1112;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:16:\"edge-300x266.png\";s:5:\"width\";i:300;s:6:\"height\";i:266;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:690;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:16:\"edge-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:384;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(54,17,'_elementor_source_image_hash','a85434023e22a7029b32e3fffc3a4848068fccb6'),(55,18,'_wp_attached_file','2023/09/edge-1.png'),(56,18,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:324;s:6:\"height\";i:287;s:4:\"file\";s:18:\"2023/09/edge-1.png\";s:8:\"filesize\";i:1112;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:18:\"edge-1-300x266.png\";s:5:\"width\";i:300;s:6:\"height\";i:266;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:690;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:18:\"edge-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:384;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"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,18,'_elementor_source_image_hash','a85434023e22a7029b32e3fffc3a4848068fccb6'),(58,19,'_wp_attached_file','2023/09/c1.png'),(59,19,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:195;s:6:\"height\";i:196;s:4:\"file\";s:14:\"2023/09/c1.png\";s:8:\"filesize\";i:7379;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:14:\"c1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:7325;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(60,19,'_elementor_source_image_hash','79c492d954f82281debb056dc8b5f48e4a62f54e'),(61,20,'_wp_attached_file','2023/09/c1-1.png'),(62,20,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:195;s:6:\"height\";i:196;s:4:\"file\";s:16:\"2023/09/c1-1.png\";s:8:\"filesize\";i:7379;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:16:\"c1-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:7325;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(63,20,'_elementor_source_image_hash','79c492d954f82281debb056dc8b5f48e4a62f54e'),(64,21,'_elementor_edit_mode','builder'),(65,21,'_elementor_template_type','section'),(66,21,'_elementor_version','3.15.3'),(67,21,'_elementor_data','[{\"id\":\"4a0f3624\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5d126e10\",\"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},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"79b78045\",\"elType\":\"widget\",\"settings\":{\"mf_input_label\":\"Name\",\"mf_input_placeholder\":\"Your Name...\",\"mf_input_validation_warning_message\":\"This field is required.\",\"mf_input_background_background\":\"classic\",\"__globals__\":{\"mf_input_placeholder_color\":\"globals\\/colors?id=69381ab\",\"mf_input_background_color\":\"globals\\/colors?id=e64be90\",\"mf_input_border_color\":\"globals\\/colors?id=76544c2\",\"mf_input_color\":\"globals\\/colors?id=3f37fea\",\"mf_input_color_hover\":\"globals\\/colors?id=3f37fea\",\"mf_input_color_focus\":\"globals\\/colors?id=3f37fea\",\"mf_input_label_typography_typography\":\"globals\\/typography?id=779cdfc\",\"mf_input_label_color\":\"globals\\/colors?id=text\",\"mf_input_place_holder_typography_typography\":\"globals\\/typography?id=24b2df3\",\"mf_input_typgraphy_typography\":\"globals\\/typography?id=24b2df3\"},\"mf_input_border_border\":\"solid\",\"mf_input_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"mf_input_label_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"mf_input_border_radius\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"mf_input_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_slideshow_gallery\":[],\"mf_input_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_hover_slideshow_gallery\":[],\"mf_input_background_focus_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_focus_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_focus_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"mf-listing-fname\"},{\"id\":\"4c0223b2\",\"elType\":\"widget\",\"settings\":{\"mf_input_label\":\"Email\",\"mf_input_name\":\"mf-email\",\"mf_input_placeholder\":\"example@yourmail.com\",\"mf_input_validation_warning_message\":\"This field is required.\",\"mf_input_background_background\":\"classic\",\"__globals__\":{\"mf_input_placeholder_color\":\"globals\\/colors?id=69381ab\",\"mf_input_background_color\":\"globals\\/colors?id=e64be90\",\"mf_input_border_color\":\"globals\\/colors?id=76544c2\",\"mf_input_color\":\"globals\\/colors?id=3f37fea\",\"mf_input_color_hover\":\"globals\\/colors?id=3f37fea\",\"mf_input_color_focus\":\"globals\\/colors?id=3f37fea\",\"mf_input_label_typography_typography\":\"globals\\/typography?id=779cdfc\",\"mf_input_label_color\":\"globals\\/colors?id=text\",\"mf_input_place_holder_typography_typography\":\"globals\\/typography?id=24b2df3\",\"mf_input_typgraphy_typography\":\"globals\\/typography?id=24b2df3\"},\"mf_input_border_border\":\"solid\",\"mf_input_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"mf_input_label_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"mf_input_border_radius\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"mf_input_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_slideshow_gallery\":[],\"mf_input_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_hover_slideshow_gallery\":[],\"mf_input_background_focus_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_focus_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_focus_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"mf-email\"},{\"id\":\"4c69732e\",\"elType\":\"widget\",\"settings\":{\"mf_input_label\":\"Subject\",\"mf_input_name\":\"mf-text\",\"mf_input_placeholder\":\"Title...\",\"mf_input_validation_warning_message\":\"This field is required.\",\"mf_input_background_background\":\"classic\",\"__globals__\":{\"mf_input_placeholder_color\":\"globals\\/colors?id=69381ab\",\"mf_input_background_color\":\"globals\\/colors?id=e64be90\",\"mf_input_border_color\":\"globals\\/colors?id=76544c2\",\"mf_input_color\":\"globals\\/colors?id=3f37fea\",\"mf_input_color_hover\":\"globals\\/colors?id=3f37fea\",\"mf_input_color_focus\":\"globals\\/colors?id=3f37fea\",\"mf_input_label_typography_typography\":\"globals\\/typography?id=779cdfc\",\"mf_input_label_color\":\"globals\\/colors?id=text\",\"mf_input_place_holder_typography_typography\":\"globals\\/typography?id=24b2df3\",\"mf_input_typgraphy_typography\":\"globals\\/typography?id=24b2df3\"},\"mf_input_border_border\":\"solid\",\"mf_input_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"mf_input_label_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"mf_input_border_radius\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"mf_input_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_slideshow_gallery\":[],\"mf_input_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_hover_slideshow_gallery\":[],\"mf_input_background_focus_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_focus_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_focus_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"mf-text\"},{\"id\":\"22024729\",\"elType\":\"widget\",\"settings\":{\"mf_input_label\":\"Message\",\"mf_input_name\":\"mf-textarea\",\"mf_input_placeholder\":\"Type Here...\",\"mf_input_validation_warning_message\":\"This field is required.\",\"mf_input_background_background\":\"classic\",\"__globals__\":{\"mf_input_placeholder_color\":\"globals\\/colors?id=69381ab\",\"mf_input_background_color\":\"globals\\/colors?id=e64be90\",\"mf_input_border_color\":\"globals\\/colors?id=76544c2\",\"mf_input_color\":\"globals\\/colors?id=3f37fea\",\"mf_input_color_hover\":\"globals\\/colors?id=3f37fea\",\"mf_input_color_focus\":\"globals\\/colors?id=3f37fea\",\"mf_input_label_typography_typography\":\"globals\\/typography?id=779cdfc\",\"mf_input_label_color\":\"globals\\/colors?id=text\",\"mf_input_place_holder_typography_typography\":\"globals\\/typography?id=24b2df3\",\"mf_input_typgraphy_typography\":\"globals\\/typography?id=24b2df3\"},\"mf_input_border_border\":\"solid\",\"mf_input_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"mf_input_label_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"mf_input_border_radius\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"mf_input_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_slideshow_gallery\":[],\"mf_input_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_hover_slideshow_gallery\":[],\"mf_input_background_focus_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_focus_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_focus_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"mf-textarea\"},{\"id\":\"2b89f3f1\",\"elType\":\"widget\",\"settings\":{\"mf_btn_text\":\"Send Now\",\"mf_btn_align\":\"justify\",\"mf_btn_align_tablet\":\"justify\",\"mf_btn_align_mobile\":\"justify\",\"mf_hidden_input\":[],\"mf_btn_bg_color_background\":\"classic\",\"mf_btn_bg_hover_color_background\":\"classic\",\"mf_btn_box_shadow_group_box_shadow_type\":\"yes\",\"mf_btn_box_shadow_group_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0)\"},\"__globals__\":{\"mf_btn_bg_color_color\":\"globals\\/colors?id=0a21634\",\"mf_btn_bg_hover_color_color\":\"globals\\/colors?id=4b29dee\",\"mf_btn_text_color\":\"globals\\/colors?id=secondary\",\"mf_btn_border_color\":\"globals\\/colors?id=e64be90\",\"mf_btn_hover_color\":\"globals\\/colors?id=secondary\",\"mf_btn_hover_border_color\":\"globals\\/colors?id=e64be90\",\"mf_btn_bg_color_color_b\":\"\",\"mf_btn_bg_hover_color_color_b\":\"globals\\/colors?id=e64be90\"},\"mf_btn_border_dimensions\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"mf_btn_text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"mf_btn_border_radius\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"mf_btn_text_color\":\"#FFFFFF\",\"mf_btn_bg_color_color_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"mf_btn_bg_color_gradient_type\":\"radial\",\"mf_btn_border_color\":\"#8E8E8E\",\"mf_btn_border_style\":\"solid\",\"mf_btn_icon\":{\"value\":\"\",\"library\":\"\"},\"mf_btn_bg_color_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_btn_bg_color_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_btn_bg_color_slideshow_gallery\":[],\"mf_btn_bg_hover_color_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_btn_bg_hover_color_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_btn_bg_hover_color_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"mf-button\"}],\"isInner\":false}],\"isInner\":false}]'),(68,23,'_wp_attached_file','2023/09/aged-teacher-2021-09-24-03-26-41-utc.jpg'),(69,23,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:600;s:6:\"height\";i:748;s:4:\"file\";s:48:\"2023/09/aged-teacher-2021-09-24-03-26-41-utc.jpg\";s:8:\"filesize\";i:167503;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:48:\"aged-teacher-2021-09-24-03-26-41-utc-241x300.jpg\";s:5:\"width\";i:241;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:40266;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:48:\"aged-teacher-2021-09-24-03-26-41-utc-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27285;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.5\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:96:\"Confident grey-haired teacher in eyeglasses and smart casualwear looking at camera by blackboard\";s:17:\"created_timestamp\";s:10:\"1512995044\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"85\";s:3:\"iso\";s:3:\"500\";s:13:\"shutter_speed\";s:4:\"0.01\";s:5:\"title\";s:12:\"Aged teacher\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:36:{i:0;s:6:\"school\";i:1;s:9:\"education\";i:2;s:6:\"people\";i:3;s:6:\"lesson\";i:4;s:6:\"clever\";i:5;s:9:\"knowledge\";i:6;s:14:\"back-to-school\";i:7;s:11:\"high-school\";i:8;s:7:\"college\";i:9;s:10:\"schoolwork\";i:10;s:9:\"Caucasian\";i:11;s:10:\"university\";i:12;s:7:\"lecture\";i:13;s:7:\"teacher\";i:14;s:3:\"man\";i:15;s:6:\"mature\";i:16;s:10:\"profession\";i:17;s:9:\"grey-hair\";i:18;s:4:\"aged\";i:19;s:6:\"senior\";i:20;s:11:\"experienced\";i:21;s:10:\"eyeglasses\";i:22;s:8:\"document\";i:23;s:7:\"looking\";i:24;s:5:\"1 man\";i:25;s:7:\"one man\";i:26;s:9:\"professor\";i:27;s:8:\"academic\";i:28;s:7:\"formula\";i:29;s:8:\"equation\";i:30;s:7:\"algebra\";i:31;s:12:\"trigonometry\";i:32;s:7:\"physics\";i:33;s:5:\"adult\";i:34;s:7:\"elderly\";i:35;s:9:\"confident\";}}}'),(70,22,'_elementor_edit_mode','builder'),(71,22,'_elementor_template_type','section'),(72,22,'_elementor_version','3.15.3'),(73,22,'_elementor_data','[{\"id\":\"4a0f3624\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5d126e10\",\"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},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"79b78045\",\"elType\":\"widget\",\"settings\":{\"mf_input_label\":\"Name\",\"mf_input_placeholder\":\"Your Name...\",\"mf_input_validation_warning_message\":\"This field is required.\",\"mf_input_background_background\":\"classic\",\"__globals__\":{\"mf_input_placeholder_color\":\"globals\\/colors?id=69381ab\",\"mf_input_background_color\":\"globals\\/colors?id=e64be90\",\"mf_input_border_color\":\"globals\\/colors?id=76544c2\",\"mf_input_color\":\"globals\\/colors?id=3f37fea\",\"mf_input_color_hover\":\"globals\\/colors?id=3f37fea\",\"mf_input_color_focus\":\"globals\\/colors?id=3f37fea\",\"mf_input_label_typography_typography\":\"globals\\/typography?id=779cdfc\",\"mf_input_label_color\":\"globals\\/colors?id=text\",\"mf_input_place_holder_typography_typography\":\"globals\\/typography?id=24b2df3\",\"mf_input_typgraphy_typography\":\"globals\\/typography?id=24b2df3\"},\"mf_input_border_border\":\"solid\",\"mf_input_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"mf_input_label_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"mf_input_border_radius\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"mf_input_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_slideshow_gallery\":[],\"mf_input_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_hover_slideshow_gallery\":[],\"mf_input_background_focus_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_focus_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_focus_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"mf-listing-fname\"},{\"id\":\"4c0223b2\",\"elType\":\"widget\",\"settings\":{\"mf_input_label\":\"Email\",\"mf_input_name\":\"mf-email\",\"mf_input_placeholder\":\"example@yourmail.com\",\"mf_input_validation_warning_message\":\"This field is required.\",\"mf_input_background_background\":\"classic\",\"__globals__\":{\"mf_input_placeholder_color\":\"globals\\/colors?id=69381ab\",\"mf_input_background_color\":\"globals\\/colors?id=e64be90\",\"mf_input_border_color\":\"globals\\/colors?id=76544c2\",\"mf_input_color\":\"globals\\/colors?id=3f37fea\",\"mf_input_color_hover\":\"globals\\/colors?id=3f37fea\",\"mf_input_color_focus\":\"globals\\/colors?id=3f37fea\",\"mf_input_label_typography_typography\":\"globals\\/typography?id=779cdfc\",\"mf_input_label_color\":\"globals\\/colors?id=text\",\"mf_input_place_holder_typography_typography\":\"globals\\/typography?id=24b2df3\",\"mf_input_typgraphy_typography\":\"globals\\/typography?id=24b2df3\"},\"mf_input_border_border\":\"solid\",\"mf_input_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"mf_input_label_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"mf_input_border_radius\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"mf_input_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_slideshow_gallery\":[],\"mf_input_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_hover_slideshow_gallery\":[],\"mf_input_background_focus_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_focus_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_focus_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"mf-email\"},{\"id\":\"4c69732e\",\"elType\":\"widget\",\"settings\":{\"mf_input_label\":\"Subject\",\"mf_input_name\":\"mf-text\",\"mf_input_placeholder\":\"Title...\",\"mf_input_validation_warning_message\":\"This field is required.\",\"mf_input_background_background\":\"classic\",\"__globals__\":{\"mf_input_placeholder_color\":\"globals\\/colors?id=69381ab\",\"mf_input_background_color\":\"globals\\/colors?id=e64be90\",\"mf_input_border_color\":\"globals\\/colors?id=76544c2\",\"mf_input_color\":\"globals\\/colors?id=3f37fea\",\"mf_input_color_hover\":\"globals\\/colors?id=3f37fea\",\"mf_input_color_focus\":\"globals\\/colors?id=3f37fea\",\"mf_input_label_typography_typography\":\"globals\\/typography?id=779cdfc\",\"mf_input_label_color\":\"globals\\/colors?id=text\",\"mf_input_place_holder_typography_typography\":\"globals\\/typography?id=24b2df3\",\"mf_input_typgraphy_typography\":\"globals\\/typography?id=24b2df3\"},\"mf_input_border_border\":\"solid\",\"mf_input_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"mf_input_label_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"mf_input_border_radius\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"mf_input_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_slideshow_gallery\":[],\"mf_input_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_hover_slideshow_gallery\":[],\"mf_input_background_focus_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_focus_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_focus_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"mf-text\"},{\"id\":\"22024729\",\"elType\":\"widget\",\"settings\":{\"mf_input_label\":\"Message\",\"mf_input_name\":\"mf-textarea\",\"mf_input_placeholder\":\"Type Here...\",\"mf_input_validation_warning_message\":\"This field is required.\",\"mf_input_background_background\":\"classic\",\"__globals__\":{\"mf_input_placeholder_color\":\"globals\\/colors?id=69381ab\",\"mf_input_background_color\":\"globals\\/colors?id=e64be90\",\"mf_input_border_color\":\"globals\\/colors?id=76544c2\",\"mf_input_color\":\"globals\\/colors?id=3f37fea\",\"mf_input_color_hover\":\"globals\\/colors?id=3f37fea\",\"mf_input_color_focus\":\"globals\\/colors?id=3f37fea\",\"mf_input_label_typography_typography\":\"globals\\/typography?id=779cdfc\",\"mf_input_label_color\":\"globals\\/colors?id=text\",\"mf_input_place_holder_typography_typography\":\"globals\\/typography?id=24b2df3\",\"mf_input_typgraphy_typography\":\"globals\\/typography?id=24b2df3\"},\"mf_input_border_border\":\"solid\",\"mf_input_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"mf_input_label_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"mf_input_border_radius\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"mf_input_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_slideshow_gallery\":[],\"mf_input_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_hover_slideshow_gallery\":[],\"mf_input_background_focus_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_focus_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_focus_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"mf-textarea\"},{\"id\":\"2b89f3f1\",\"elType\":\"widget\",\"settings\":{\"mf_btn_text\":\"Send Now\",\"mf_btn_align\":\"justify\",\"mf_btn_align_tablet\":\"justify\",\"mf_btn_align_mobile\":\"justify\",\"mf_hidden_input\":[],\"mf_btn_bg_color_background\":\"classic\",\"mf_btn_bg_hover_color_background\":\"classic\",\"mf_btn_box_shadow_group_box_shadow_type\":\"yes\",\"mf_btn_box_shadow_group_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0)\"},\"__globals__\":{\"mf_btn_bg_color_color\":\"globals\\/colors?id=0a21634\",\"mf_btn_bg_hover_color_color\":\"globals\\/colors?id=4b29dee\",\"mf_btn_text_color\":\"globals\\/colors?id=secondary\",\"mf_btn_border_color\":\"globals\\/colors?id=e64be90\",\"mf_btn_hover_color\":\"globals\\/colors?id=secondary\",\"mf_btn_hover_border_color\":\"globals\\/colors?id=e64be90\",\"mf_btn_bg_color_color_b\":\"\",\"mf_btn_bg_hover_color_color_b\":\"globals\\/colors?id=e64be90\"},\"mf_btn_border_dimensions\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"mf_btn_text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"mf_btn_border_radius\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"mf_btn_text_color\":\"#FFFFFF\",\"mf_btn_bg_color_color_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"mf_btn_bg_color_gradient_type\":\"radial\",\"mf_btn_border_color\":\"#8E8E8E\",\"mf_btn_border_style\":\"solid\",\"mf_btn_icon\":{\"value\":\"\",\"library\":\"\"},\"mf_btn_bg_color_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_btn_bg_color_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_btn_bg_color_slideshow_gallery\":[],\"mf_btn_bg_hover_color_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_btn_bg_hover_color_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_btn_bg_hover_color_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"mf-button\"}],\"isInner\":false}],\"isInner\":false}]'),(74,21,'_elementor_page_assets','a:0:{}'),(75,21,'_wp_page_template','elementor_canvas'),(76,21,'envato_tk_source_kit','6'),(77,21,'envato_tk_source_index','11'),(78,23,'_elementor_source_image_hash','a8d945a4fb630995e9f11547507b0c98657569f5'),(79,24,'_wp_attached_file','2023/09/logo-1.png'),(80,24,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:815;s:6:\"height\";i:285;s:4:\"file\";s:18:\"2023/09/logo-1.png\";s:8:\"filesize\";i:41147;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:18:\"logo-1-300x105.png\";s:5:\"width\";i:300;s:6:\"height\";i:105;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:12952;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:18:\"logo-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:2465;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:18:\"logo-1-768x269.png\";s:5:\"width\";i:768;s:6:\"height\";i:269;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:43559;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"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,25,'_wp_attached_file','2023/09/13-copy.jpg'),(82,25,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:800;s:4:\"file\";s:19:\"2023/09/13-copy.jpg\";s:8:\"filesize\";i:201413;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:19:\"13-copy-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14175;}s:5:\"large\";a:5:{s:4:\"file\";s:20:\"13-copy-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:80804;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"13-copy-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11559;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:19:\"13-copy-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:46213;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(83,24,'_elementor_source_image_hash','a349d557a160ccf62c51a3070cc9e187fc3aabf2'),(84,26,'_wp_attached_file','2023/09/edge3.png'),(85,26,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:324;s:6:\"height\";i:287;s:4:\"file\";s:17:\"2023/09/edge3.png\";s:8:\"filesize\";i:1127;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:17:\"edge3-300x266.png\";s:5:\"width\";i:300;s:6:\"height\";i:266;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:684;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:17:\"edge3-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:393;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(86,25,'_elementor_source_image_hash','1a8810e9c94b08c0c67e3954b7eca6a6af15a60f'),(87,26,'_elementor_source_image_hash','7b535fa530ed90296ccd8b97df190f77b5f2439e'),(88,27,'_wp_attached_file','2023/09/logo-1-1.png'),(89,27,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:815;s:6:\"height\";i:285;s:4:\"file\";s:20:\"2023/09/logo-1-1.png\";s:8:\"filesize\";i:41147;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:20:\"logo-1-1-300x105.png\";s:5:\"width\";i:300;s:6:\"height\";i:105;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:12952;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"logo-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:2465;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:20:\"logo-1-1-768x269.png\";s:5:\"width\";i:768;s:6:\"height\";i:269;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:43559;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(90,28,'_wp_attached_file','2023/09/c2.png'),(91,28,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:179;s:6:\"height\";i:177;s:4:\"file\";s:14:\"2023/09/c2.png\";s:8:\"filesize\";i:6807;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:14:\"c2-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:7611;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(92,28,'_elementor_source_image_hash','d5301ad34735b05beaa3663d907f56bd1d63d63a'),(93,27,'_elementor_source_image_hash','a349d557a160ccf62c51a3070cc9e187fc3aabf2'),(94,29,'_wp_attached_file','2023/09/edge2.png'),(95,29,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:324;s:6:\"height\";i:287;s:4:\"file\";s:17:\"2023/09/edge2.png\";s:8:\"filesize\";i:1114;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:17:\"edge2-300x266.png\";s:5:\"width\";i:300;s:6:\"height\";i:266;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:681;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:17:\"edge2-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:389;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(96,29,'_elementor_source_image_hash','0d05fb079d136138f8042d14419bfd7b831c5e29'),(97,30,'_wp_attached_file','2023/09/pp1.jpg'),(98,30,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:800;s:4:\"file\";s:15:\"2023/09/pp1.jpg\";s:8:\"filesize\";i:141989;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:15:\"pp1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:25926;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:15:\"pp1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17259;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:15:\"pp1-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:71251;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(99,31,'_elementor_edit_mode','builder'),(100,31,'_elementor_template_type','section'),(101,30,'_elementor_source_image_hash','d8be6d15219f87dd399b7b2a80d0e5a7b6c239b9'),(102,31,'_elementor_version','3.15.3'),(103,31,'_elementor_data','[{\"id\":\"65692778\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=45bcc5b\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"512fc6fa\",\"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},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6b110ed1\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=e64be90\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2854b507\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":35.206000000000003,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5ec01015\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"24\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/logo-1.png\"},\"align\":\"left\",\"align_mobile\":\"center\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_tablet\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-22\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"34c15a1a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis.<\\/p>\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=76544c2\",\"typography_typography\":\"globals\\/typography?id=f8cdd91\"},\"align_mobile\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"22\",\"bottom\":\"4\",\"left\":\"22\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"center\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"4195e13e\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":17.555,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_inline_size_tablet\":25,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"47cfb44d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Explore\",\"header_size\":\"h4\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=e64be90\"},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"26029a99\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=f8cdd91\",\"title_color\":\"globals\\/colors?id=76544c2\"},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3e4e0b7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Curriculum \",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=f8cdd91\",\"title_color\":\"globals\\/colors?id=76544c2\"},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"110ff5e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Event\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=f8cdd91\",\"title_color\":\"globals\\/colors?id=76544c2\"},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"7021839f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":25.192,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_inline_size_tablet\":30,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"15772d38\",\"elType\":\"widget\",\"settings\":{\"title\":\"Further Links\",\"header_size\":\"h4\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=e64be90\"},\"align_mobile\":\"center\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"center\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"616e4eef\",\"elType\":\"widget\",\"settings\":{\"title\":\"Term & Condition\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=f8cdd91\",\"title_color\":\"globals\\/colors?id=76544c2\"},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2828cd7f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=f8cdd91\",\"title_color\":\"globals\\/colors?id=76544c2\"},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"16e93591\",\"elType\":\"widget\",\"settings\":{\"title\":\"News\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=f8cdd91\",\"title_color\":\"globals\\/colors?id=76544c2\"},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"32dea3e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":22,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":45,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"22e3d029\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get In Touch\",\"header_size\":\"h4\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=e64be90\"},\"align_mobile\":\"center\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"center\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"618da2d7\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2443 Oak Ridge Omaha, QA 45065\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"183285d\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"207-8767-452\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"f460c80\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"support@site.com\",\"selected_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"_id\":\"0a24203\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"icon_color\":\"globals\\/colors?id=7f7112a\",\"text_color\":\"globals\\/colors?id=76544c2\",\"icon_typography_typography\":\"globals\\/typography?id=f8cdd91\"},\"icon_align_mobile\":\"center\",\"icon_align_tablet\":\"center\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"619986cb\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"Copyright \\u00a9 [hfe_current_year] [hfe_site_title] | Powered by [hfe_site_title]\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=e64be90\",\"caption_typography_typography\":\"globals\\/typography?id=f8cdd91\"},\"align_mobile\":\"center\",\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"copyright\"}],\"isInner\":false}],\"isInner\":false}]'),(104,32,'_wp_attached_file','2023/09/aged-teacher-2021-09-24-03-26-41-utc-2.png'),(105,32,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:600;s:6:\"height\";i:748;s:4:\"file\";s:50:\"2023/09/aged-teacher-2021-09-24-03-26-41-utc-2.png\";s:8:\"filesize\";i:187839;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:50:\"aged-teacher-2021-09-24-03-26-41-utc-2-241x300.png\";s:5:\"width\";i:241;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:101824;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:50:\"aged-teacher-2021-09-24-03-26-41-utc-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:34940;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(106,32,'_elementor_source_image_hash','45cbad1fa99bfd5716f2673415c2af7dcd15fe20'),(107,33,'_elementor_edit_mode','builder'),(108,33,'_elementor_template_type','section'),(109,34,'_wp_attached_file','2023/09/Acanthus-black-white-02-copy.png'),(110,33,'_elementor_version','3.15.3'),(111,34,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:4:\"file\";s:40:\"2023/09/Acanthus-black-white-02-copy.png\";s:8:\"filesize\";i:102379;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:40:\"Acanthus-black-white-02-copy-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:37731;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:40:\"Acanthus-black-white-02-copy-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:14040;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:40:\"Acanthus-black-white-02-copy-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:151122;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(112,33,'_elementor_data','[{\"id\":\"65692778\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=45bcc5b\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"512fc6fa\",\"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},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6b110ed1\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=e64be90\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2854b507\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":35.206000000000003,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5ec01015\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"24\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/logo-1.png\"},\"align\":\"left\",\"align_mobile\":\"center\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_tablet\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-22\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"34c15a1a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis.<\\/p>\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=76544c2\",\"typography_typography\":\"globals\\/typography?id=f8cdd91\"},\"align_mobile\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"22\",\"bottom\":\"4\",\"left\":\"22\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"center\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"4195e13e\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":17.555,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_inline_size_tablet\":25,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"47cfb44d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Explore\",\"header_size\":\"h4\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=e64be90\"},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"26029a99\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=f8cdd91\",\"title_color\":\"globals\\/colors?id=76544c2\"},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3e4e0b7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Curriculum \",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=f8cdd91\",\"title_color\":\"globals\\/colors?id=76544c2\"},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"110ff5e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Event\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=f8cdd91\",\"title_color\":\"globals\\/colors?id=76544c2\"},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"7021839f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":25.192,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_inline_size_tablet\":30,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"15772d38\",\"elType\":\"widget\",\"settings\":{\"title\":\"Further Links\",\"header_size\":\"h4\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=e64be90\"},\"align_mobile\":\"center\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"center\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"616e4eef\",\"elType\":\"widget\",\"settings\":{\"title\":\"Term & Condition\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=f8cdd91\",\"title_color\":\"globals\\/colors?id=76544c2\"},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2828cd7f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=f8cdd91\",\"title_color\":\"globals\\/colors?id=76544c2\"},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"16e93591\",\"elType\":\"widget\",\"settings\":{\"title\":\"News\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=f8cdd91\",\"title_color\":\"globals\\/colors?id=76544c2\"},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"32dea3e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":22,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":45,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"22e3d029\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get In Touch\",\"header_size\":\"h4\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=e64be90\"},\"align_mobile\":\"center\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"center\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"618da2d7\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2443 Oak Ridge Omaha, QA 45065\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"183285d\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"207-8767-452\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"f460c80\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"support@site.com\",\"selected_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"_id\":\"0a24203\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"icon_color\":\"globals\\/colors?id=7f7112a\",\"text_color\":\"globals\\/colors?id=76544c2\",\"icon_typography_typography\":\"globals\\/typography?id=f8cdd91\"},\"icon_align_mobile\":\"center\",\"icon_align_tablet\":\"center\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"619986cb\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"Copyright \\u00a9 [hfe_current_year] [hfe_site_title] | Powered by [hfe_site_title]\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=e64be90\",\"caption_typography_typography\":\"globals\\/typography?id=f8cdd91\"},\"align_mobile\":\"center\",\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"copyright\"}],\"isInner\":false}],\"isInner\":false}]'),(113,31,'_elementor_page_assets','a:0:{}'),(114,31,'_wp_page_template','elementor_canvas'),(115,31,'envato_tk_source_kit','6'),(116,31,'envato_tk_source_index','13'),(117,35,'_wp_attached_file','2023/09/little-boy-is-having-online-lessons-by-using-lapto-2022-02-03-17-43-51-utc-copy.jpg'),(118,35,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:4:\"file\";s:91:\"2023/09/little-boy-is-having-online-lessons-by-using-lapto-2022-02-03-17-43-51-utc-copy.jpg\";s:8:\"filesize\";i:149559;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:91:\"little-boy-is-having-online-lessons-by-using-lapto-2022-02-03-17-43-51-utc-copy-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:37458;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:91:\"little-boy-is-having-online-lessons-by-using-lapto-2022-02-03-17-43-51-utc-copy-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:25554;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:91:\"little-boy-is-having-online-lessons-by-using-lapto-2022-02-03-17-43-51-utc-copy-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:94865;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"3.2\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:10:\"NIKON D850\";s:7:\"caption\";s:60:\"Little boy is having online lessons by using laptop at home.\";s:17:\"created_timestamp\";s:10:\"1636459022\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"58\";s:3:\"iso\";s:3:\"250\";s:13:\"shutter_speed\";s:5:\"0.001\";s:5:\"title\";s:59:\"Little boy is having online lessons by using laptop at home\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:50:{i:0;s:3:\"kid\";i:1;s:5:\"child\";i:2;s:3:\"boy\";i:3;s:3:\"one\";i:4;s:6:\"person\";i:5;s:7:\"glasses\";i:6;s:5:\"smart\";i:7;s:12:\"intelligence\";i:8;s:6:\"online\";i:9;s:4:\"male\";i:10;s:6:\"laptop\";i:11;s:6:\"modern\";i:12;s:10:\"technology\";i:13;s:8:\"wireless\";i:14;s:6:\"lesson\";i:15;s:8:\"learning\";i:16;s:6:\"device\";i:17;s:8:\"internet\";i:18;s:10:\"connection\";i:19;s:4:\"cute\";i:20;s:3:\"fun\";i:21;s:7:\"sitting\";i:22;s:5:\"table\";i:23;s:9:\"equipment\";i:24;s:4:\"tool\";i:25;s:7:\"indoors\";i:26;s:8:\"domestic\";i:27;s:7:\"process\";i:28;s:4:\"room\";i:29;s:5:\"paper\";i:30;s:7:\"picture\";i:31;s:9:\"caucasian\";i:32;s:8:\"european\";i:33;s:5:\"white\";i:34;s:9:\"ethnicity\";i:35;s:8:\"interior\";i:36;s:6:\"casual\";i:37;s:7:\"clothes\";i:38;s:4:\"wear\";i:39;s:3:\"joy\";i:40;s:4:\"free\";i:41;s:4:\"time\";i:42;s:9:\"wellbeing\";i:43;s:8:\"wellness\";i:44;s:8:\"cheerful\";i:45;s:8:\"positive\";i:46;s:4:\"mood\";i:47;s:3:\"day\";i:48;s:6:\"facial\";i:49;s:10:\"expression\";}}}'),(119,36,'_elementor_edit_mode','builder'),(120,36,'_elementor_template_type','section'),(121,36,'_elementor_version','3.15.3'),(122,36,'_elementor_data','[{\"id\":\"1f622e84\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-103\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\",\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"globals\\/colors?id=eb507f3\"},\"z_index\":90,\"background_overlay_background\":\"classic\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":37,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"background_overlay_color_b\":\"#FFFFFF00\",\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"-33\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"-11\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"285c4664\",\"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},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"dc9dd6a\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"20\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5fe3e3d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":20,\"content_position_tablet\":\"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},\"_inline_size_mobile\":60,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1b0d03d2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"24\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/logo-1.png\"},\"width\":{\"unit\":\"%\",\"size\":33,\"sizes\":[]},\"align\":\"left\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"align_mobile\":\"left\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":82,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"fc0162b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":80,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":40,\"content_position\":\"center\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"59a5691c\",\"elType\":\"widget\",\"settings\":{\"menu\":\"menu1\",\"__globals__\":{\"menu_typography_typography\":\"globals\\/typography?id=779cdfc\",\"color_menu_item\":\"globals\\/colors?id=secondary\",\"color_menu_item_hover\":\"globals\\/colors?id=7f7112a\",\"all_text_color\":\"globals\\/colors?id=e64be90\",\"all_background_color_color\":\"globals\\/colors?id=f2feccc\",\"all_background_hover_color_color\":\"globals\\/colors?id=e64be90\",\"all_border_color\":\"\",\"all_border_hover_color\":\"\",\"all_background_color_color_b\":\"\",\"all_background_hover_color_color_b\":\"globals\\/colors?id=e64be90\",\"all_hover_color\":\"globals\\/colors?id=7f7112a\",\"toggle_color\":\"globals\\/colors?id=secondary\",\"background_color_dropdown_item\":\"globals\\/colors?id=e64be90\",\"color_menu_item_active\":\"globals\\/colors?id=7f7112a\",\"background_color_dropdown_item_hover\":\"\",\"color_dropdown_item_hover\":\"globals\\/colors?id=4b29dee\",\"color_dropdown_item\":\"globals\\/colors?id=primary\",\"dropdown_border_color\":\"globals\\/colors?id=76544c2\",\"color_dropdown_item_active\":\"globals\\/colors?id=7f7112a\"},\"resp_align\":\"right\",\"padding_horizontal_menu_item_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"menu_space_between\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"dropdown_divider_border\":\"none\",\"all_background_color_background\":\"classic\",\"all_background_hover_color_background\":\"classic\",\"all_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"all_background_color_gradient_angle\":{\"unit\":\"deg\",\"size\":130,\"sizes\":[]},\"dropdown_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"menu_space_between_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_horizontal_menu_item_mobile\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"menu_space_between_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"dropdown_border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_dropdown_item_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_horizontal_dropdown_item_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"padding_vertical_dropdown_item_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"menu_typography_font_family\":\"Roboto\",\"color_menu_item\":\"#F0F0F0\",\"background_color_dropdown_item\":\"#202020\",\"toggle_color\":\"#FFFFFF\",\"all_text_color\":\"#F4F9FC\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"23\",\"bottom\":\"14\",\"left\":\"23\",\"isLinked\":false},\"all_background_hover_color_color_stop\":{\"unit\":\"%\",\"size\":66,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"menu_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":0.90000000000000002,\"sizes\":[]},\"menu_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.90000000000000002,\"sizes\":[]},\"menu_typography_font_weight\":\"500\",\"menu_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"menu_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"all_background_color_color_b\":\"#FC3B00\",\"all_background_hover_color_color\":\"#FFFFFF\",\"all_background_hover_color_color_b\":\"#FFFFFF\",\"dropdown_border_width_tablet\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"dropdown_border_width_mobile\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"dropdown_border_radius_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"navmenu_align\":\"right\",\"dropdown\":\"mobile\",\"menu_last_item\":\"cta\",\"dropdown_box_shadow_box_shadow_type\":\"yes\",\"dropdown_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":30,\"blur\":30,\"spread\":-15,\"color\":\"rgba(0, 0, 0, 0.4)\"},\"all_button_box_shadow_box_shadow_type\":\"yes\",\"all_button_box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":10,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"dropdown_icon\":{\"value\":\"fas fa-align-justify\",\"library\":\"fa-solid\"},\"dropdown_close_icon\":{\"value\":\"far fa-window-close\",\"library\":\"fa-regular\"},\"all_background_color_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"all_background_color_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"all_background_color_slideshow_gallery\":[],\"all_background_hover_color_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"all_background_hover_color_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"all_background_hover_color_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(123,35,'_elementor_source_image_hash','d4785e5fb2754577f414fa72fac4ed24291762c4'),(124,37,'_elementor_edit_mode','builder'),(125,37,'_elementor_template_type','section'),(126,37,'_elementor_version','3.15.3'),(127,37,'_elementor_data','[{\"id\":\"1f622e84\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-103\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\",\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"globals\\/colors?id=eb507f3\"},\"z_index\":90,\"background_overlay_background\":\"classic\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":37,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"background_overlay_color_b\":\"#FFFFFF00\",\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"-33\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"-11\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"285c4664\",\"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},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"dc9dd6a\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"20\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5fe3e3d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":20,\"content_position_tablet\":\"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},\"_inline_size_mobile\":60,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1b0d03d2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"24\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/logo-1.png\"},\"width\":{\"unit\":\"%\",\"size\":33,\"sizes\":[]},\"align\":\"left\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"align_mobile\":\"left\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":82,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"fc0162b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":80,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":40,\"content_position\":\"center\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"59a5691c\",\"elType\":\"widget\",\"settings\":{\"menu\":\"menu1\",\"__globals__\":{\"menu_typography_typography\":\"globals\\/typography?id=779cdfc\",\"color_menu_item\":\"globals\\/colors?id=secondary\",\"color_menu_item_hover\":\"globals\\/colors?id=7f7112a\",\"all_text_color\":\"globals\\/colors?id=e64be90\",\"all_background_color_color\":\"globals\\/colors?id=f2feccc\",\"all_background_hover_color_color\":\"globals\\/colors?id=e64be90\",\"all_border_color\":\"\",\"all_border_hover_color\":\"\",\"all_background_color_color_b\":\"\",\"all_background_hover_color_color_b\":\"globals\\/colors?id=e64be90\",\"all_hover_color\":\"globals\\/colors?id=7f7112a\",\"toggle_color\":\"globals\\/colors?id=secondary\",\"background_color_dropdown_item\":\"globals\\/colors?id=e64be90\",\"color_menu_item_active\":\"globals\\/colors?id=7f7112a\",\"background_color_dropdown_item_hover\":\"\",\"color_dropdown_item_hover\":\"globals\\/colors?id=4b29dee\",\"color_dropdown_item\":\"globals\\/colors?id=primary\",\"dropdown_border_color\":\"globals\\/colors?id=76544c2\",\"color_dropdown_item_active\":\"globals\\/colors?id=7f7112a\"},\"resp_align\":\"right\",\"padding_horizontal_menu_item_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"menu_space_between\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"dropdown_divider_border\":\"none\",\"all_background_color_background\":\"classic\",\"all_background_hover_color_background\":\"classic\",\"all_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"all_background_color_gradient_angle\":{\"unit\":\"deg\",\"size\":130,\"sizes\":[]},\"dropdown_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"menu_space_between_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_horizontal_menu_item_mobile\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"menu_space_between_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"dropdown_border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_dropdown_item_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_horizontal_dropdown_item_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"padding_vertical_dropdown_item_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"menu_typography_font_family\":\"Roboto\",\"color_menu_item\":\"#F0F0F0\",\"background_color_dropdown_item\":\"#202020\",\"toggle_color\":\"#FFFFFF\",\"all_text_color\":\"#F4F9FC\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"23\",\"bottom\":\"14\",\"left\":\"23\",\"isLinked\":false},\"all_background_hover_color_color_stop\":{\"unit\":\"%\",\"size\":66,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"menu_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":0.90000000000000002,\"sizes\":[]},\"menu_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.90000000000000002,\"sizes\":[]},\"menu_typography_font_weight\":\"500\",\"menu_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"menu_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"all_background_color_color_b\":\"#FC3B00\",\"all_background_hover_color_color\":\"#FFFFFF\",\"all_background_hover_color_color_b\":\"#FFFFFF\",\"dropdown_border_width_tablet\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"dropdown_border_width_mobile\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"dropdown_border_radius_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"navmenu_align\":\"right\",\"dropdown\":\"mobile\",\"menu_last_item\":\"cta\",\"dropdown_box_shadow_box_shadow_type\":\"yes\",\"dropdown_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":30,\"blur\":30,\"spread\":-15,\"color\":\"rgba(0, 0, 0, 0.4)\"},\"all_button_box_shadow_box_shadow_type\":\"yes\",\"all_button_box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":10,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"dropdown_icon\":{\"value\":\"fas fa-align-justify\",\"library\":\"fa-solid\"},\"dropdown_close_icon\":{\"value\":\"far fa-window-close\",\"library\":\"fa-regular\"},\"all_background_color_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"all_background_color_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"all_background_color_slideshow_gallery\":[],\"all_background_hover_color_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"all_background_hover_color_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"all_background_hover_color_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(128,36,'_elementor_page_assets','a:0:{}'),(129,36,'_wp_page_template','elementor_canvas'),(130,36,'envato_tk_source_kit','6'),(131,36,'envato_tk_source_index','12'),(132,34,'_elementor_source_image_hash','764431f40d4a3b2947b1240e6bda35048b8a5967'),(133,38,'_wp_attached_file','2023/09/portrait-of-happy-caucasian-boy-standing-at-chalkb-2021-09-03-06-28-24-utc-copy.jpg'),(134,38,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:800;s:4:\"file\";s:91:\"2023/09/portrait-of-happy-caucasian-boy-standing-at-chalkb-2021-09-03-06-28-24-utc-copy.jpg\";s:8:\"filesize\";i:140675;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:91:\"portrait-of-happy-caucasian-boy-standing-at-chalkb-2021-09-03-06-28-24-utc-copy-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:31077;}s:5:\"large\";a:5:{s:4:\"file\";s:92:\"portrait-of-happy-caucasian-boy-standing-at-chalkb-2021-09-03-06-28-24-utc-copy-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:101457;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:91:\"portrait-of-happy-caucasian-boy-standing-at-chalkb-2021-09-03-06-28-24-utc-copy-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:25471;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:91:\"portrait-of-happy-caucasian-boy-standing-at-chalkb-2021-09-03-06-28-24-utc-copy-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:70835;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"3.5\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1618647481\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"50\";s:3:\"iso\";s:3:\"500\";s:13:\"shutter_speed\";s:5:\"0.005\";s:5:\"title\";s:146:\"Portrait of happy caucasian boy standing at chalkboard in maths lesson classroom holding schoolbook. childhood and education at elementary school.\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:40:{i:0;s:10:\"One Person\";i:1;s:5:\"Child\";i:2;s:3:\"Boy\";i:3;s:4:\"Male\";i:4;s:9:\"Caucasian\";i:5;s:6:\"People\";i:6;s:8:\"Portrait\";i:7;s:5:\"Happy\";i:8;s:9:\"Caucasian\";i:9;s:3:\"Boy\";i:10;s:8:\"Standing\";i:11;s:10:\"Chalkboard\";i:12;s:4:\"Math\";i:13;s:6:\"Lesson\";i:14;s:9:\"Classroom\";i:15;s:7:\"Holding\";i:16;s:10:\"Schoolbook\";i:17;s:19:\"Childhood Education\";i:18;s:17:\"Elementary School\";i:19;s:10:\"Blackboard\";i:20;s:5:\"Young\";i:21;s:5:\"Class\";i:22;s:7:\"Teacher\";i:23;s:6:\"Person\";i:24;s:5:\"Chalk\";i:25;s:5:\"Smile\";i:26;s:5:\"Adult\";i:27;s:7:\"Student\";i:28;s:10:\"Attractive\";i:29;s:6:\"School\";i:30;s:8:\"Cheerful\";i:31;s:4:\"Cute\";i:32;s:5:\"Learn\";i:33;s:7:\"Smiling\";i:34;s:9:\"Lifestyle\";i:35;s:4:\"Face\";i:36;s:10:\"Elementary\";i:37;s:11:\"Mathematics\";i:38;s:9:\"Childhood\";i:39;s:9:\"Education\";}}}'),(135,39,'_wp_attached_file','2023/09/pp2.jpg'),(136,39,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:800;s:4:\"file\";s:15:\"2023/09/pp2.jpg\";s:8:\"filesize\";i:158373;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:15:\"pp2-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28593;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:15:\"pp2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18385;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:15:\"pp2-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:81478;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(137,38,'_elementor_source_image_hash','2b4c023126727857659964b1bca41166d06c8b10'),(138,39,'_elementor_source_image_hash','566e39a78cd2b1d0dcdf30e08eeb3931b6f899e0'),(139,40,'_wp_attached_file','2023/09/grade.png'),(140,40,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:255;s:6:\"height\";i:255;s:4:\"file\";s:17:\"2023/09/grade.png\";s:8:\"filesize\";i:15083;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:17:\"grade-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:6079;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(141,41,'_wp_attached_file','2023/09/liki3.png'),(142,41,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:4:\"file\";s:17:\"2023/09/liki3.png\";s:8:\"filesize\";i:123599;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:17:\"liki3-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:12695;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:17:\"liki3-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4431;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:17:\"liki3-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:59988;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(143,40,'_elementor_source_image_hash','0f36a885a0deb0aea3124c7d94cae7cc38c6ea5e'),(144,42,'_elementor_edit_mode','builder'),(145,42,'_elementor_template_type','page'),(146,41,'_elementor_source_image_hash','49baf8ebda05b4f05b779094cb2a4078993ac6dd'),(147,42,'_elementor_version','3.15.3'),(148,42,'_elementor_data','[{\"id\":\"6151e05\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":\"7\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/2-copy.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.54000000000000004,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=50714e7\",\"background_overlay_color\":\"globals\\/colors?id=5425a2a\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"476117b3\",\"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},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6b65a638\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"26\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/edge3.png\"},\"_element_width\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":11.472},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":80.466999999999999},\"_position\":\"absolute\",\"_offset_x\":{\"size\":295,\"unit\":\"px\"},\"_offset_x_tablet\":{\"size\":123,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":-8,\"unit\":\"px\"},\"_offset_y\":{\"size\":238,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":204,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":243,\"unit\":\"px\"},\"_z_index\":1,\"jkit_transform_rotate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5fbb38fe\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"19\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/c1.png\"},\"_element_width\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":3.7490000000000001},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":21.850000000000001},\"_position\":\"absolute\",\"_offset_x\":{\"size\":864,\"unit\":\"px\"},\"_offset_x_tablet\":{\"size\":164,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":11,\"unit\":\"px\"},\"_offset_y\":{\"size\":77,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":71,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":124,\"unit\":\"px\"},\"_z_index\":1,\"jkit_transform_rotate\":{\"unit\":\"px\",\"size\":174,\"sizes\":[]},\"_element_width_tablet\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":53.149999999999999},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2db89029\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"15\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/c3.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":12.007999999999999},\"_position\":\"absolute\",\"_offset_x\":{\"size\":877,\"unit\":\"px\"},\"_offset_x_tablet\":{\"size\":530,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":266,\"unit\":\"px\"},\"_offset_y\":{\"size\":-79,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-46,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-34,\"unit\":\"px\"},\"_z_index\":1,\"jkit_transform_rotate\":{\"unit\":\"px\",\"size\":228,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2fe12b6e\",\"elType\":\"widget\",\"settings\":{\"title\":\"404\",\"header_size\":\"h1\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=6e144d7\",\"title_color\":\"globals\\/colors?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"37f1c3c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Something Is Wrong\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1f01e251\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Page You\\u2019re Looking For Was Not Found<\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"282fd966\",\"elType\":\"widget\",\"settings\":{\"text\":\"Go Back\",\"align\":\"center\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}]'),(149,43,'_elementor_edit_mode','builder'),(150,43,'_elementor_template_type','page'),(151,43,'_elementor_version','3.15.3'),(152,43,'_elementor_data','[{\"id\":\"6151e05\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":\"7\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/2-copy.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.54000000000000004,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=50714e7\",\"background_overlay_color\":\"globals\\/colors?id=5425a2a\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"476117b3\",\"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},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6b65a638\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"26\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/edge3.png\"},\"_element_width\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":11.472},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":80.466999999999999},\"_position\":\"absolute\",\"_offset_x\":{\"size\":295,\"unit\":\"px\"},\"_offset_x_tablet\":{\"size\":123,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":-8,\"unit\":\"px\"},\"_offset_y\":{\"size\":238,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":204,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":243,\"unit\":\"px\"},\"_z_index\":1,\"jkit_transform_rotate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5fbb38fe\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"19\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/c1.png\"},\"_element_width\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":3.7490000000000001},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":21.850000000000001},\"_position\":\"absolute\",\"_offset_x\":{\"size\":864,\"unit\":\"px\"},\"_offset_x_tablet\":{\"size\":164,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":11,\"unit\":\"px\"},\"_offset_y\":{\"size\":77,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":71,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":124,\"unit\":\"px\"},\"_z_index\":1,\"jkit_transform_rotate\":{\"unit\":\"px\",\"size\":174,\"sizes\":[]},\"_element_width_tablet\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":53.149999999999999},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2db89029\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"15\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/c3.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":12.007999999999999},\"_position\":\"absolute\",\"_offset_x\":{\"size\":877,\"unit\":\"px\"},\"_offset_x_tablet\":{\"size\":530,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":266,\"unit\":\"px\"},\"_offset_y\":{\"size\":-79,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-46,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-34,\"unit\":\"px\"},\"_z_index\":1,\"jkit_transform_rotate\":{\"unit\":\"px\",\"size\":228,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2fe12b6e\",\"elType\":\"widget\",\"settings\":{\"title\":\"404\",\"header_size\":\"h1\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=6e144d7\",\"title_color\":\"globals\\/colors?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"37f1c3c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Something Is Wrong\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1f01e251\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Page You\\u2019re Looking For Was Not Found<\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"282fd966\",\"elType\":\"widget\",\"settings\":{\"text\":\"Go Back\",\"align\":\"center\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}]'),(153,42,'_elementor_page_assets','a:0:{}'),(154,42,'_wp_page_template','elementor_header_footer'),(155,42,'envato_tk_source_kit','6'),(156,42,'envato_tk_source_index','10'),(157,44,'_wp_attached_file','2023/09/pp3.jpg'),(158,44,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:800;s:4:\"file\";s:15:\"2023/09/pp3.jpg\";s:8:\"filesize\";i:166490;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:15:\"pp3-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28344;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:15:\"pp3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17769;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:15:\"pp3-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:83610;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(159,44,'_elementor_source_image_hash','7ba1dcef5e5557118c568170ea95ae4e46e9bc1d'),(160,45,'_wp_attached_file','2023/09/chart.png'),(161,45,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:255;s:6:\"height\";i:255;s:4:\"file\";s:17:\"2023/09/chart.png\";s:8:\"filesize\";i:11024;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:17:\"chart-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:3173;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(162,45,'_elementor_source_image_hash','f4509f7df06ab653861ac1eaa5f55ee1b15d649d'),(163,46,'_wp_attached_file','2023/09/cute-elementary-kids-with-books-at-school-2022-12-16-18-15-57-utc-copy.jpg'),(164,46,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:446;s:6:\"height\";i:593;s:4:\"file\";s:82:\"2023/09/cute-elementary-kids-with-books-at-school-2022-12-16-18-15-57-utc-copy.jpg\";s:8:\"filesize\";i:209147;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:82:\"cute-elementary-kids-with-books-at-school-2022-12-16-18-15-57-utc-copy-226x300.jpg\";s:5:\"width\";i:226;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:32566;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:82:\"cute-elementary-kids-with-books-at-school-2022-12-16-18-15-57-utc-copy-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22918;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:10:\"NIKON D810\";s:7:\"caption\";s:41:\"cute elementary kids with books at school\";s:17:\"created_timestamp\";s:10:\"1500646815\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:3:\"102\";s:3:\"iso\";s:3:\"500\";s:13:\"shutter_speed\";s:5:\"0.004\";s:5:\"title\";s:41:\"cute elementary kids with books at school\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:1:{i:0;s:64:\"people,children,kids,walking,indoor,school,lifestyle,learning,ed\";}}}'),(165,46,'_elementor_source_image_hash','c2be1f1e36c5b745dd087408e55dc18c95c1feb9'),(166,47,'_wp_attached_file','2023/09/boy-at-lesson-2021-09-24-03-25-58-utc-copy.jpg'),(167,47,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1500;s:6:\"height\";i:1000;s:4:\"file\";s:54:\"2023/09/boy-at-lesson-2021-09-24-03-25-58-utc-copy.jpg\";s:8:\"filesize\";i:176932;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:54:\"boy-at-lesson-2021-09-24-03-25-58-utc-copy-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:35517;}s:5:\"large\";a:5:{s:4:\"file\";s:55:\"boy-at-lesson-2021-09-24-03-25-58-utc-copy-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:113698;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:54:\"boy-at-lesson-2021-09-24-03-25-58-utc-copy-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:26930;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:54:\"boy-at-lesson-2021-09-24-03-25-58-utc-copy-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:80634;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"2\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:20:\"Canon EOS 5D Mark IV\";s:7:\"caption\";s:101:\"Cute schoolboy with pencil sitting by his desk and listening to teacher with classmates on background\";s:17:\"created_timestamp\";s:10:\"1524929903\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"85\";s:3:\"iso\";s:3:\"200\";s:13:\"shutter_speed\";s:5:\"0.004\";s:5:\"title\";s:13:\"Boy at lesson\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:38:{i:0;s:6:\"school\";i:1;s:9:\"education\";i:2;s:6:\"people\";i:3;s:7:\"learner\";i:4;s:6:\"lesson\";i:5;s:5:\"study\";i:6;s:7:\"student\";i:7;s:5:\"pupil\";i:8;s:3:\"kid\";i:9;s:5:\"child\";i:10;s:4:\"girl\";i:11;s:9:\"schoolkid\";i:12;s:11:\"schoolchild\";i:13;s:7:\"primary\";i:14;s:10:\"elementary\";i:15;s:8:\"beginner\";i:16;s:6:\"little\";i:17;s:9:\"childhood\";i:18;s:8:\"adorable\";i:19;s:6:\"clever\";i:20;s:9:\"knowledge\";i:21;s:14:\"back-to-school\";i:22;s:7:\"drawing\";i:23;s:6:\"crayon\";i:24;s:4:\"idea\";i:25;s:11:\"inspiration\";i:26;s:9:\"classmate\";i:27;s:3:\"boy\";i:28;s:9:\"schoolboy\";i:29;s:10:\"assignment\";i:30;s:4:\"task\";i:31;s:9:\"youngster\";i:32;s:10:\"individual\";i:33;s:10:\"schoolwork\";i:34;s:4:\"exam\";i:35;s:4:\"test\";i:36;s:16:\"African-american\";i:37;s:10:\"mixed-race\";}}}'),(168,48,'_wp_attached_file','2023/09/kids-taking-exam-in-school-2022-06-29-19-26-45-utc-copy.jpg'),(169,48,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:800;s:4:\"file\";s:67:\"2023/09/kids-taking-exam-in-school-2022-06-29-19-26-45-utc-copy.jpg\";s:8:\"filesize\";i:225969;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:67:\"kids-taking-exam-in-school-2022-06-29-19-26-45-utc-copy-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:40337;}s:5:\"large\";a:5:{s:4:\"file\";s:68:\"kids-taking-exam-in-school-2022-06-29-19-26-45-utc-copy-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:140448;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:67:\"kids-taking-exam-in-school-2022-06-29-19-26-45-utc-copy-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:30183;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:67:\"kids-taking-exam-in-school-2022-06-29-19-26-45-utc-copy-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:98142;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"3.2\";s:6:\"credit\";s:10:\"everypixel\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:116:\"Side view at diverse group of children sitting in row and taking test in school classroom with teacher in background\";s:17:\"created_timestamp\";s:10:\"1651063533\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"85\";s:3:\"iso\";s:3:\"800\";s:13:\"shutter_speed\";s:5:\"0.005\";s:5:\"title\";s:26:\"Kids Taking Exam in School\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:50:{i:0;s:6:\"school\";i:1;s:7:\"teacher\";i:2;s:3:\"boy\";i:3;s:8:\"children\";i:4;s:9:\"schoolboy\";i:5;s:9:\"education\";i:6;s:3:\"row\";i:7;s:7:\"student\";i:8;s:3:\"man\";i:9;s:5:\"class\";i:10;s:9:\"gen Alpha\";i:11;s:4:\"male\";i:12;s:9:\"classroom\";i:13;s:7:\"science\";i:14;s:5:\"child\";i:15;s:3:\"kid\";i:16;s:4:\"girl\";i:17;s:10:\"schoolgirl\";i:18;s:9:\"childhood\";i:19;s:11:\"development\";i:20;s:8:\"studying\";i:21;s:6:\"lesson\";i:22;s:7:\"writing\";i:23;s:16:\"African American\";i:24;s:8:\"notebook\";i:25;s:5:\"black\";i:26;s:7:\"smiling\";i:27;s:4:\"test\";i:28;s:7:\"indoors\";i:29;s:7:\"diverse\";i:30;s:4:\"exam\";i:31;s:11:\"multiethnic\";i:32;s:7:\"sitting\";i:33;s:5:\"group\";i:34;s:14:\"elementary age\";i:35;s:5:\"table\";i:36;s:6:\"people\";i:37;s:10:\"creativity\";i:38;s:15:\"casual clothing\";i:39;s:4:\"desk\";i:40;s:4:\"work\";i:41;s:18:\"multi-ethnic group\";i:42;s:10:\"occupation\";i:43;s:15:\"school children\";i:44;s:4:\"cute\";i:45;s:15:\"group of people\";i:46;s:17:\"elementary school\";i:47;s:18:\"elementary student\";i:48;s:12:\"togetherness\";i:49;s:8:\"teaching\";}}}'),(170,47,'_elementor_source_image_hash','b9242a9a33e18a48aaa6d3143fe41ac84ac09235'),(171,49,'_wp_attached_file','2023/09/pp5.jpg'),(172,49,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:800;s:4:\"file\";s:15:\"2023/09/pp5.jpg\";s:8:\"filesize\";i:196666;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:15:\"pp5-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:29088;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:15:\"pp5-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18822;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:15:\"pp5-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:98121;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(173,49,'_elementor_source_image_hash','b1b6910508d13406f2a427737d3ec17ca19fe188'),(174,48,'_elementor_source_image_hash','0d3aae10ee98bffb6158ad9503d5b69847c6bf09'),(175,50,'_wp_attached_file','2023/09/test-exam-sheet.png'),(176,50,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:255;s:6:\"height\";i:255;s:4:\"file\";s:27:\"2023/09/test-exam-sheet.png\";s:8:\"filesize\";i:5416;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"test-exam-sheet-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4939;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"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,50,'_elementor_source_image_hash','25c45a35f72acf0ddf3d00d2820caad5563380d5'),(178,51,'_wp_attached_file','2023/09/liki.png'),(179,51,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:901;s:6:\"height\";i:867;s:4:\"file\";s:16:\"2023/09/liki.png\";s:8:\"filesize\";i:180335;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:16:\"liki-300x289.png\";s:5:\"width\";i:300;s:6:\"height\";i:289;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:20396;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:16:\"liki-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:7301;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:16:\"liki-768x739.png\";s:5:\"width\";i:768;s:6:\"height\";i:739;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:106894;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(180,52,'_wp_attached_file','2023/09/hex2.png'),(181,52,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1024;s:6:\"height\";i:918;s:4:\"file\";s:16:\"2023/09/hex2.png\";s:8:\"filesize\";i:37349;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:16:\"hex2-300x269.png\";s:5:\"width\";i:300;s:6:\"height\";i:269;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:6713;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:16:\"hex2-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2251;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:16:\"hex2-768x689.png\";s:5:\"width\";i:768;s:6:\"height\";i:689;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:43337;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(182,52,'_elementor_source_image_hash','e06aeea3f69b8a7c4faaca999d04a6443e8fc676'),(183,53,'_wp_attached_file','2023/09/pp4.jpg'),(184,53,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:800;s:4:\"file\";s:15:\"2023/09/pp4.jpg\";s:8:\"filesize\";i:217614;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:15:\"pp4-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:39823;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:15:\"pp4-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22715;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:15:\"pp4-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:127140;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(185,54,'_wp_attached_file','2023/09/schedule-sheet.png'),(186,54,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:255;s:6:\"height\";i:255;s:4:\"file\";s:26:\"2023/09/schedule-sheet.png\";s:8:\"filesize\";i:7075;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:26:\"schedule-sheet-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:5571;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(187,54,'_elementor_source_image_hash','6a56e16e759f105aa1827960539e20bc6f659e23'),(188,51,'_elementor_source_image_hash','a11ccc02f3a5533107198b3e2be1c3135280461f'),(189,53,'_elementor_source_image_hash','0142745bac54036f22afeeb65b880c49677b7ee3'),(190,55,'_wp_attached_file','2023/09/woman-learning-english-online-2021-08-26-15-34-41-utc-copy.jpg'),(191,55,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:800;s:4:\"file\";s:70:\"2023/09/woman-learning-english-online-2021-08-26-15-34-41-utc-copy.jpg\";s:8:\"filesize\";i:178715;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:70:\"woman-learning-english-online-2021-08-26-15-34-41-utc-copy-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:66469;}s:5:\"large\";a:5:{s:4:\"file\";s:71:\"woman-learning-english-online-2021-08-26-15-34-41-utc-copy-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:162335;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:70:\"woman-learning-english-online-2021-08-26-15-34-41-utc-copy-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:57295;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:70:\"woman-learning-english-online-2021-08-26-15-34-41-utc-copy-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:122231;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:10:\"NIKON D810\";s:7:\"caption\";s:201:\"Mature woman learning English online with computer at office. Laptop screen of woman displaying english lessons poster with British flag. Closeup of student using laptop doing online course on english.\";s:17:\"created_timestamp\";s:10:\"1518307200\";s:9:\"copyright\";s:7:\"© Rido\";s:12:\"focal_length\";s:2:\"50\";s:3:\"iso\";s:3:\"400\";s:13:\"shutter_speed\";s:7:\"0.00625\";s:5:\"title\";s:29:\"Woman learning english online\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:34:{i:0;s:7:\"english\";i:1;s:6:\"lesson\";i:2;s:8:\"learning\";i:3;s:8:\"language\";i:4;s:6:\"laptop\";i:5;s:6:\"online\";i:6;s:7:\"student\";i:7;s:8:\"studying\";i:8;s:6:\"screen\";i:9;s:5:\"woman\";i:10;s:6:\"mature\";i:11;s:7:\"foreign\";i:12;s:8:\"business\";i:13;s:7:\"working\";i:14;s:13:\"communication\";i:15;s:9:\"knowledge\";i:16;s:8:\"computer\";i:17;s:9:\"education\";i:18;s:4:\"work\";i:19;s:8:\"internet\";i:20;s:5:\"study\";i:21;s:10:\"technology\";i:22;s:11:\"translation\";i:23;s:7:\"british\";i:24;s:10:\"university\";i:25;s:7:\"webinar\";i:26;s:6:\"course\";i:27;s:9:\"elearning\";i:28;s:10:\"e-learning\";i:29;s:5:\"speak\";i:30;s:6:\"school\";i:31;s:5:\"learn\";i:32;s:7:\"college\";i:33;s:4:\"home\";}}}'),(192,55,'_elementor_source_image_hash','064dde491653694c75fc558c7fd1cb8a6142138f'),(193,56,'_wp_attached_file','2023/09/alarm-clock.png'),(194,56,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:201;s:6:\"height\";i:200;s:4:\"file\";s:23:\"2023/09/alarm-clock.png\";s:8:\"filesize\";i:9795;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:23:\"alarm-clock-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:11512;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(195,56,'_elementor_source_image_hash','67dec73134ee04236cb1fc33e696157fdef361dc'),(196,57,'_wp_attached_file','2023/09/cute-elementary-kids-with-books-at-school-2022-12-16-18-15-57-utc2.png'),(197,57,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:446;s:6:\"height\";i:593;s:4:\"file\";s:78:\"2023/09/cute-elementary-kids-with-books-at-school-2022-12-16-18-15-57-utc2.png\";s:8:\"filesize\";i:66363;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:78:\"cute-elementary-kids-with-books-at-school-2022-12-16-18-15-57-utc2-226x300.png\";s:5:\"width\";i:226;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:61908;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:78:\"cute-elementary-kids-with-books-at-school-2022-12-16-18-15-57-utc2-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:25244;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(198,57,'_elementor_source_image_hash','50fb918ed4287f4d3ce7e84b7669677467f43fd9'),(199,58,'_wp_attached_file','2023/09/pp6.jpg'),(200,58,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:800;s:4:\"file\";s:15:\"2023/09/pp6.jpg\";s:8:\"filesize\";i:174802;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:15:\"pp6-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:30656;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:15:\"pp6-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19863;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:15:\"pp6-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:89830;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(201,58,'_elementor_source_image_hash','d7c750786e2d0caa810f4153b8f8075e95904c44'),(202,59,'_elementor_edit_mode','builder'),(203,59,'_elementor_template_type','page'),(204,60,'_wp_attached_file','2023/09/Diploma.png'),(205,60,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:201;s:6:\"height\";i:201;s:4:\"file\";s:19:\"2023/09/Diploma.png\";s:8:\"filesize\";i:6004;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"Diploma-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:7427;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(206,60,'_elementor_source_image_hash','0a36ca913ad489118485060f90fae761d750a77e'),(207,61,'_wp_attached_file','2023/09/elementary-student-learning-in-the-classroom-at-sc-2022-11-16-14-48-06-utc-copy.jpg'),(208,61,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:800;s:4:\"file\";s:91:\"2023/09/elementary-student-learning-in-the-classroom-at-sc-2022-11-16-14-48-06-utc-copy.jpg\";s:8:\"filesize\";i:155684;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:91:\"elementary-student-learning-in-the-classroom-at-sc-2022-11-16-14-48-06-utc-copy-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:33888;}s:5:\"large\";a:5:{s:4:\"file\";s:92:\"elementary-student-learning-in-the-classroom-at-sc-2022-11-16-14-48-06-utc-copy-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:119233;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:91:\"elementary-student-learning-in-the-classroom-at-sc-2022-11-16-14-48-06-utc-copy-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24426;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:91:\"elementary-student-learning-in-the-classroom-at-sc-2022-11-16-14-48-06-utc-copy-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:83674;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.2\";s:6:\"credit\";s:12:\"drazen_zigic\";s:6:\"camera\";s:12:\"Canon EOS R3\";s:7:\"caption\";s:64:\"Schoolboy reading from book during a class in elementary school.\";s:17:\"created_timestamp\";s:10:\"1656862730\";s:9:\"copyright\";s:21:\"photo by drazen zigic\";s:12:\"focal_length\";s:2:\"50\";s:3:\"iso\";s:3:\"500\";s:13:\"shutter_speed\";s:7:\"0.00125\";s:5:\"title\";s:55:\"Elementary student learning in the classroom at school.\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:25:{i:0;s:9:\"classroom\";i:1;s:17:\"elementary school\";i:2;s:8:\"learning\";i:3;s:15:\"school children\";i:4;s:9:\"schoolboy\";i:5;s:14:\"back to school\";i:6;s:4:\"boys\";i:7;s:5:\"child\";i:8;s:9:\"education\";i:9;s:16:\"educational exam\";i:10;s:14:\"elementary age\";i:11;s:18:\"elementary student\";i:12;s:15:\"group of people\";i:13;s:7:\"indoors\";i:14;s:3:\"kid\";i:15;s:9:\"knowledge\";i:16;s:10:\"lifestyles\";i:17;s:6:\"people\";i:18;s:15:\"school building\";i:19;s:7:\"student\";i:20;s:8:\"studying\";i:21;s:4:\"book\";i:22;s:7:\"reading\";i:23;s:8:\"notebook\";i:24;s:9:\"Caucasian\";}}}'),(209,59,'_elementor_version','3.15.3'),(210,59,'_elementor_data','[{\"id\":\"6e413def\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":\"7\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/2-copy.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"200\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=50714e7\",\"background_overlay_color\":\"globals\\/colors?id=ff9d88d\",\"shape_divider_bottom_color\":\"globals\\/colors?id=a00e83d\"},\"shape_divider_bottom\":\"tilt\",\"shape_divider_bottom_flip\":\"yes\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4baa4344\",\"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},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"53dea753\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"header_size\":\"h1\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e10270a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"14\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/c4.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":7.7080000000000002},\"_position\":\"absolute\",\"_offset_x\":{\"size\":254,\"unit\":\"px\"},\"_offset_x_tablet\":{\"size\":117,\"unit\":\"px\"},\"_offset_y\":{\"size\":-45,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-29,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":10,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-23,\"unit\":\"px\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5d6145ee\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"15\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/c3.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":2.7629999999999999},\"_position\":\"absolute\",\"_offset_x\":{\"size\":334,\"unit\":\"px\"},\"_offset_x_tablet\":{\"size\":160,\"unit\":\"px\"},\"_offset_y\":{\"size\":85,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":31,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":47,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-42,\"unit\":\"px\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"59402990\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"17\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/edge.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":5.8129999999999997},\"_position\":\"absolute\",\"_offset_x\":{\"size\":865,\"unit\":\"px\"},\"_offset_x_tablet\":{\"size\":545,\"unit\":\"px\"},\"_offset_y\":{\"size\":-32,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-12,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":308,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-6,\"unit\":\"px\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6f0eac14\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"70\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=a00e83d\",\"shape_divider_bottom_color\":\"globals\\/colors?id=50714e7\"},\"shape_divider_bottom\":\"tilt\",\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"af30d5f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_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},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7ffde43b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"23149157\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":15,\"content_position\":\"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},\"_inline_size_tablet\":100,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1671812\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":29,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_mask_shape\":\"custom\",\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=7f7112a\",\"hover_primary_color\":\"\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\"},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"38\",\"bottom\":\"0\",\"left\":\"38\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"7c0a37a4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":85,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"58954deb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Number\",\"align_tablet\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"title_color\":\"globals\\/colors?id=primary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3175988a\",\"elType\":\"widget\",\"settings\":{\"title\":\"+6282 4032 567 \",\"header_size\":\"h4\",\"align_tablet\":\"center\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7392f9b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_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},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"18a37957\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1e8a95df\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":15,\"content_position\":\"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},\"_inline_size_tablet\":100,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2956f87c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":29,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_mask_shape\":\"custom\",\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=f2feccc\",\"hover_primary_color\":\"\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\"},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"38\",\"bottom\":\"0\",\"left\":\"38\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"7e4d6735\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":85,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"37c9adc0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Email Address\",\"align_tablet\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"title_color\":\"globals\\/colors?id=primary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4cbdeb73\",\"elType\":\"widget\",\"settings\":{\"title\":\"example@email.com\",\"header_size\":\"h4\",\"align_tablet\":\"center\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"69bfe1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1304c9ba\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"57e85bcf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":15,\"content_position\":\"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},\"_inline_size_tablet\":100,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1f8a66d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":29,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_mask_shape\":\"custom\",\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=ae9db18\",\"hover_primary_color\":\"\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\"},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"38\",\"bottom\":\"0\",\"left\":\"38\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"318c9d78\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":85,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"57088927\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our location\",\"align_tablet\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"title_color\":\"globals\\/colors?id=primary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"258e5bc4\",\"elType\":\"widget\",\"settings\":{\"title\":\"2443 Oak Ridge Omaha, QA 45065\",\"header_size\":\"h4\",\"align_tablet\":\"center\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4e88019f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=50714e7\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6b83a42f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"50d48b18\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get in touch\",\"align_tablet\":\"center\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"57ebc0e9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Nulla nec ligula molestie, pulvinar mi id, vulputate magna. Etiam lobortis velit vitae ante aliquet tincidunt.<\\/p>\",\"align_tablet\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"17\",\"bottom\":\"0\",\"left\":\"17\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1fbe8e98\",\"elType\":\"widget\",\"settings\":{\"mf_form_id\":\"1090***1681799916030\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"metform\"}],\"isInner\":false},{\"id\":\"6199e792\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6f6dfb32\",\"elType\":\"widget\",\"settings\":{\"address\":\"London Eye, London, United Kingdom\",\"height\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":310,\"sizes\":[]},\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"459e1cc6\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"25\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/13-copy.jpg\"},\"background_repeat\":\"repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002,\"sizes\":[]},\"shape_divider_top\":\"tilt\",\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":123,\"sizes\":[]},\"shape_divider_top_flip\":\"yes\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=0a21634\",\"shape_divider_top_color\":\"globals\\/colors?id=50714e7\"},\"shape_divider_top_height_tablet\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4fabbdb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5f040c7c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Join Our Education center Now\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"},\"align_tablet\":\"center\",\"_margin_mobile\":{\"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},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"397e812e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"28\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/c2.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":37.046999999999997},\"_position\":\"absolute\",\"_offset_x\":{\"size\":508,\"unit\":\"px\"},\"_offset_y\":{\"size\":-53,\"unit\":\"px\"},\"_z_index\":7,\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":89.066999999999993},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":30.067},\"_offset_x_tablet\":{\"size\":94,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":252,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-60,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":28,\"unit\":\"px\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1e87d1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"14\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/c4.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":12.92},\"_position\":\"absolute\",\"_offset_x\":{\"size\":1290,\"unit\":\"px\"},\"_offset_y\":{\"size\":347,\"unit\":\"px\"},\"_z_index\":7,\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":42.299999999999997},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":118.3},\"_offset_x_tablet\":{\"size\":586,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":-72,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-396,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-43,\"unit\":\"px\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"12092b73\",\"elType\":\"widget\",\"settings\":{\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"},\"align_tablet\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2501d482\",\"elType\":\"widget\",\"settings\":{\"text\":\"Sign Up Now\",\"align\":\"left\",\"_z_index\":9,\"__globals__\":{\"background_color\":\"globals\\/colors?id=5425a2a\",\"button_background_hover_color\":\"globals\\/colors?id=7f7112a\"},\"align_tablet\":\"center\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"547bfee9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"26\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/edge3.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":18.638000000000002},\"_offset_x\":{\"size\":172,\"unit\":\"px\"},\"_offset_y\":{\"size\":331,\"unit\":\"px\"},\"_z_index\":7,\"_margin\":{\"unit\":\"%\",\"top\":\"-60\",\"right\":\"45\",\"bottom\":\"0\",\"left\":\"-45\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":39,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6949f4ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"-150\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"50\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-160\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5ab21c46\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"46\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/cute-elementary-kids-with-books-at-school-2022-12-16-18-15-57-utc-copy.jpg\"},\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":\"51\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/liki.png\"},\"width_tablet\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":88,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"240100cb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"57\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/cute-elementary-kids-with-books-at-school-2022-12-16-18-15-57-utc2.png\"},\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_position\":\"absolute\",\"width_tablet\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":88,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(211,62,'_wp_attached_file','2023/09/logoipsum-265.png'),(212,62,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:700;s:6:\"height\";i:171;s:4:\"file\";s:25:\"2023/09/logoipsum-265.png\";s:8:\"filesize\";i:11514;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:24:\"logoipsum-265-300x73.png\";s:5:\"width\";i:300;s:6:\"height\";i:73;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:8077;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:25:\"logoipsum-265-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4443;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(213,62,'_elementor_source_image_hash','6e47e26be2793a1c76000049902cdf29abdc6e9a'),(214,61,'_elementor_source_image_hash','191746705efb8bb469eb447379b91979e1d5949c'),(215,63,'_elementor_edit_mode','builder'),(216,63,'_elementor_template_type','page'),(217,63,'_elementor_version','3.15.3'),(218,63,'_elementor_data','[{\"id\":\"6e413def\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":\"7\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/2-copy.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"200\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=50714e7\",\"background_overlay_color\":\"globals\\/colors?id=ff9d88d\",\"shape_divider_bottom_color\":\"globals\\/colors?id=a00e83d\"},\"shape_divider_bottom\":\"tilt\",\"shape_divider_bottom_flip\":\"yes\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4baa4344\",\"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},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"53dea753\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"header_size\":\"h1\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e10270a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"14\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/c4.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":7.7080000000000002},\"_position\":\"absolute\",\"_offset_x\":{\"size\":254,\"unit\":\"px\"},\"_offset_x_tablet\":{\"size\":117,\"unit\":\"px\"},\"_offset_y\":{\"size\":-45,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-29,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":10,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-23,\"unit\":\"px\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5d6145ee\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"15\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/c3.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":2.7629999999999999},\"_position\":\"absolute\",\"_offset_x\":{\"size\":334,\"unit\":\"px\"},\"_offset_x_tablet\":{\"size\":160,\"unit\":\"px\"},\"_offset_y\":{\"size\":85,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":31,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":47,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-42,\"unit\":\"px\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"59402990\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"17\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/edge.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":5.8129999999999997},\"_position\":\"absolute\",\"_offset_x\":{\"size\":865,\"unit\":\"px\"},\"_offset_x_tablet\":{\"size\":545,\"unit\":\"px\"},\"_offset_y\":{\"size\":-32,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-12,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":308,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-6,\"unit\":\"px\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6f0eac14\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"70\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=a00e83d\",\"shape_divider_bottom_color\":\"globals\\/colors?id=50714e7\"},\"shape_divider_bottom\":\"tilt\",\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"af30d5f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_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},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7ffde43b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"23149157\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":15,\"content_position\":\"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},\"_inline_size_tablet\":100,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1671812\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":29,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_mask_shape\":\"custom\",\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=7f7112a\",\"hover_primary_color\":\"\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\"},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"38\",\"bottom\":\"0\",\"left\":\"38\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"7c0a37a4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":85,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"58954deb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Number\",\"align_tablet\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"title_color\":\"globals\\/colors?id=primary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3175988a\",\"elType\":\"widget\",\"settings\":{\"title\":\"+6282 4032 567 \",\"header_size\":\"h4\",\"align_tablet\":\"center\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7392f9b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_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},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"18a37957\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1e8a95df\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":15,\"content_position\":\"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},\"_inline_size_tablet\":100,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2956f87c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":29,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_mask_shape\":\"custom\",\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=f2feccc\",\"hover_primary_color\":\"\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\"},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"38\",\"bottom\":\"0\",\"left\":\"38\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"7e4d6735\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":85,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"37c9adc0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Email Address\",\"align_tablet\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"title_color\":\"globals\\/colors?id=primary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4cbdeb73\",\"elType\":\"widget\",\"settings\":{\"title\":\"example@email.com\",\"header_size\":\"h4\",\"align_tablet\":\"center\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"69bfe1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1304c9ba\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"57e85bcf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":15,\"content_position\":\"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},\"_inline_size_tablet\":100,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1f8a66d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":29,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_mask_shape\":\"custom\",\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=ae9db18\",\"hover_primary_color\":\"\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\"},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"38\",\"bottom\":\"0\",\"left\":\"38\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"318c9d78\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":85,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"57088927\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our location\",\"align_tablet\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"title_color\":\"globals\\/colors?id=primary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"258e5bc4\",\"elType\":\"widget\",\"settings\":{\"title\":\"2443 Oak Ridge Omaha, QA 45065\",\"header_size\":\"h4\",\"align_tablet\":\"center\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4e88019f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=50714e7\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6b83a42f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"50d48b18\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get in touch\",\"align_tablet\":\"center\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"57ebc0e9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Nulla nec ligula molestie, pulvinar mi id, vulputate magna. Etiam lobortis velit vitae ante aliquet tincidunt.<\\/p>\",\"align_tablet\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"17\",\"bottom\":\"0\",\"left\":\"17\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1fbe8e98\",\"elType\":\"widget\",\"settings\":{\"mf_form_id\":\"1090***1681799916030\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"metform\"}],\"isInner\":false},{\"id\":\"6199e792\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6f6dfb32\",\"elType\":\"widget\",\"settings\":{\"address\":\"London Eye, London, United Kingdom\",\"height\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":310,\"sizes\":[]},\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"459e1cc6\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"25\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/13-copy.jpg\"},\"background_repeat\":\"repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002,\"sizes\":[]},\"shape_divider_top\":\"tilt\",\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":123,\"sizes\":[]},\"shape_divider_top_flip\":\"yes\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=0a21634\",\"shape_divider_top_color\":\"globals\\/colors?id=50714e7\"},\"shape_divider_top_height_tablet\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4fabbdb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5f040c7c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Join Our Education center Now\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"},\"align_tablet\":\"center\",\"_margin_mobile\":{\"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},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"397e812e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"28\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/c2.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":37.046999999999997},\"_position\":\"absolute\",\"_offset_x\":{\"size\":508,\"unit\":\"px\"},\"_offset_y\":{\"size\":-53,\"unit\":\"px\"},\"_z_index\":7,\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":89.066999999999993},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":30.067},\"_offset_x_tablet\":{\"size\":94,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":252,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-60,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":28,\"unit\":\"px\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1e87d1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"14\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/c4.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":12.92},\"_position\":\"absolute\",\"_offset_x\":{\"size\":1290,\"unit\":\"px\"},\"_offset_y\":{\"size\":347,\"unit\":\"px\"},\"_z_index\":7,\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":42.299999999999997},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":118.3},\"_offset_x_tablet\":{\"size\":586,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":-72,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-396,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-43,\"unit\":\"px\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"12092b73\",\"elType\":\"widget\",\"settings\":{\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"},\"align_tablet\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2501d482\",\"elType\":\"widget\",\"settings\":{\"text\":\"Sign Up Now\",\"align\":\"left\",\"_z_index\":9,\"__globals__\":{\"background_color\":\"globals\\/colors?id=5425a2a\",\"button_background_hover_color\":\"globals\\/colors?id=7f7112a\"},\"align_tablet\":\"center\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"547bfee9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"26\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/edge3.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":18.638000000000002},\"_offset_x\":{\"size\":172,\"unit\":\"px\"},\"_offset_y\":{\"size\":331,\"unit\":\"px\"},\"_z_index\":7,\"_margin\":{\"unit\":\"%\",\"top\":\"-60\",\"right\":\"45\",\"bottom\":\"0\",\"left\":\"-45\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":39,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6949f4ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"-150\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"50\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-160\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5ab21c46\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"46\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/cute-elementary-kids-with-books-at-school-2022-12-16-18-15-57-utc-copy.jpg\"},\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":\"51\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/liki.png\"},\"width_tablet\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":88,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"240100cb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"57\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/cute-elementary-kids-with-books-at-school-2022-12-16-18-15-57-utc2.png\"},\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_position\":\"absolute\",\"width_tablet\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":88,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(219,59,'_elementor_page_assets','a:0:{}'),(220,59,'_wp_page_template','elementor_header_footer'),(221,59,'envato_tk_source_kit','6'),(222,59,'envato_tk_source_index','4'),(223,64,'_wp_attached_file','2023/09/Male-Teacher.png'),(224,64,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:201;s:6:\"height\";i:201;s:4:\"file\";s:24:\"2023/09/Male-Teacher.png\";s:8:\"filesize\";i:6979;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:24:\"Male-Teacher-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:7410;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"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,65,'_wp_attached_file','2023/09/3-copy.jpg'),(226,65,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:800;s:4:\"file\";s:18:\"2023/09/3-copy.jpg\";s:8:\"filesize\";i:208230;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:18:\"3-copy-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13414;}s:5:\"large\";a:5:{s:4:\"file\";s:19:\"3-copy-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:82830;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:18:\"3-copy-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10603;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:18:\"3-copy-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:46532;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(227,64,'_elementor_source_image_hash','9fea33870ce325b90f546d7b8cdfc9e5d7a6db84'),(228,66,'_wp_attached_file','2023/09/logoipsum-264.png'),(229,66,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:708;s:6:\"height\";i:171;s:4:\"file\";s:25:\"2023/09/logoipsum-264.png\";s:8:\"filesize\";i:9639;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:24:\"logoipsum-264-300x72.png\";s:5:\"width\";i:300;s:6:\"height\";i:72;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:6462;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:25:\"logoipsum-264-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4534;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(230,66,'_elementor_source_image_hash','7d825587ca95cbc89610b67b359b2b28ea6702e1'),(231,65,'_elementor_source_image_hash','14c4cbf3e7abdf895933d4911944b03aeff2784a'),(232,67,'_wp_attached_file','2023/09/Trophy.png'),(233,67,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:201;s:6:\"height\";i:201;s:4:\"file\";s:18:\"2023/09/Trophy.png\";s:8:\"filesize\";i:4120;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:18:\"Trophy-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4352;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(234,67,'_elementor_source_image_hash','b7ff1924597237bc240e1cec2df11219ee412386'),(235,68,'_wp_attached_file','2023/09/difficult-exam-in-elementary-school-2021-09-24-02-55-23-utc-copy.jpg'),(236,68,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:800;s:4:\"file\";s:76:\"2023/09/difficult-exam-in-elementary-school-2021-09-24-02-55-23-utc-copy.jpg\";s:8:\"filesize\";i:160710;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:76:\"difficult-exam-in-elementary-school-2021-09-24-02-55-23-utc-copy-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:33666;}s:5:\"large\";a:5:{s:4:\"file\";s:77:\"difficult-exam-in-elementary-school-2021-09-24-02-55-23-utc-copy-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:121908;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:76:\"difficult-exam-in-elementary-school-2021-09-24-02-55-23-utc-copy-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24614;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:76:\"difficult-exam-in-elementary-school-2021-09-24-02-55-23-utc-copy-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:84920;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"2\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:20:\"Canon EOS 5D Mark IV\";s:7:\"caption\";s:117:\"Serious concentrated boy in stripped sweater sitting at desk and reading task content while passing test in classroom\";s:17:\"created_timestamp\";s:10:\"1524934074\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"85\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:5:\"0.004\";s:5:\"title\";s:35:\"Difficult exam in elementary school\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:32:{i:0;s:6:\"people\";i:1;s:5:\"group\";i:2;s:8:\"children\";i:3;s:3:\"kid\";i:4;s:4:\"girl\";i:5;s:10:\"schoolgirl\";i:6;s:3:\"boy\";i:7;s:9:\"schoolboy\";i:8;s:6:\"school\";i:9;s:9:\"education\";i:10;s:5:\"pupil\";i:11;s:7:\"student\";i:12;s:10:\"elementary\";i:13;s:5:\"class\";i:14;s:6:\"lesson\";i:15;s:9:\"knowledge\";i:16;s:8:\"studying\";i:17;s:8:\"learning\";i:18;s:9:\"confident\";i:19;s:4:\"exam\";i:20;s:7:\"looking\";i:21;s:4:\"desk\";i:22;s:4:\"quiz\";i:23;s:6:\"modern\";i:24;s:9:\"difficult\";i:25;s:9:\"lifestyle\";i:26;s:6:\"clever\";i:27;s:7:\"reading\";i:28;s:3:\"row\";i:29;s:4:\"line\";i:30;s:7:\"sitting\";i:31;s:10:\"adolescent\";}}}'),(237,69,'_wp_attached_file','2023/09/logoipsum-262.png'),(238,69,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:708;s:6:\"height\";i:171;s:4:\"file\";s:25:\"2023/09/logoipsum-262.png\";s:8:\"filesize\";i:10070;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:24:\"logoipsum-262-300x72.png\";s:5:\"width\";i:300;s:6:\"height\";i:72;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:6965;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:25:\"logoipsum-262-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4436;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(239,69,'_elementor_source_image_hash','1fe8ef32faad32c0faed3b870d5ecb4e94470f20'),(240,70,'_elementor_edit_mode','builder'),(241,70,'_elementor_template_type','page'),(242,68,'_elementor_source_image_hash','8381e227a99b558972386331e6791019b6ed19e8'),(243,70,'_elementor_version','3.15.3'),(244,70,'_elementor_data','[{\"id\":\"48734556\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":\"7\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/2-copy.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"200\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"background_overlay_color\":\"globals\\/colors?id=ff9d88d\",\"shape_divider_bottom_color\":\"globals\\/colors?id=50714e7\"},\"shape_divider_bottom\":\"tilt\",\"shape_divider_bottom_flip\":\"yes\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_color\":\"#DC434C\",\"shape_divider_bottom_color\":\"#F8F8F8\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3cf8143c\",\"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},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"40050754\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pricing\",\"header_size\":\"h1\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"12eef49c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"14\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/c4.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":7.7080000000000002},\"_position\":\"absolute\",\"_offset_x\":{\"size\":333,\"unit\":\"px\"},\"_offset_x_tablet\":{\"size\":133,\"unit\":\"px\"},\"_offset_y\":{\"size\":-51,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-27,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":21,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-14,\"unit\":\"px\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"36e5cdc1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"15\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/c3.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":2.7629999999999999},\"_position\":\"absolute\",\"_offset_x\":{\"size\":397,\"unit\":\"px\"},\"_offset_x_tablet\":{\"size\":177,\"unit\":\"px\"},\"_offset_y\":{\"size\":47,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":41,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":47,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-38,\"unit\":\"px\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"243de614\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"17\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/edge.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":5.8129999999999997},\"_position\":\"absolute\",\"_offset_x\":{\"size\":796,\"unit\":\"px\"},\"_offset_x_tablet\":{\"size\":518,\"unit\":\"px\"},\"_offset_y\":{\"size\":-19,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-14,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":291,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-3,\"unit\":\"px\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"33f1357\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=50714e7\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4924c3d9\",\"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},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2edbe812\",\"elType\":\"widget\",\"settings\":{\"title\":\"Join Our Membership Program\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"align_tablet\":\"center\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7e83d493\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"editor\":\"<p>Nullam non nisi ut lorem pulvinar hendrerit. Nam sodales in eros eu mollis. Duis rhoncus suscipit purus, eu porta urna aliquet sed. In lacinia massa<\\/p>\",\"align_tablet\":\"center\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7672bcee\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=50714e7\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"32fec775\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"align\":\"center\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":20,\"blur\":20,\"spread\":-8,\"color\":\"rgba(0, 0, 0, 0.14)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"24948a28\",\"elType\":\"section\",\"settings\":{\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":175,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"shape_divider_bottom_negative\":\"yes\",\"shape_divider_bottom_above_content\":\"yes\",\"__globals__\":{\"shape_divider_bottom_color\":\"globals\\/colors?id=secondary\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2f46ade4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"34\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/Acanthus-black-white-02-copy.png\"},\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.90000000000000002,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"60\",\"left\":\"45\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=5425a2a\"},\"_inline_size_tablet\":100,\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"467c1b79\",\"elType\":\"widget\",\"settings\":{\"title\":\"Basic\",\"header_size\":\"h3\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7b1557fe\",\"elType\":\"widget\",\"settings\":{\"title\":\"$20.99\",\"align\":\"center\",\"_element_width\":\"auto\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"608535a8\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\/ Month\",\"header_size\":\"h3\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_vertical_align\":\"flex-end\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"title_color\":\"globals\\/colors?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"778a44a8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\",\"text_color\":\"globals\\/colors?id=text\"},\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.90000000000000002,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7d864b8d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Lorem ipsum dolor sit amet\",\"_id\":\"7b2c7f9\",\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Proin at elit ac lacus molestie\",\"_id\":\"83bd579\",\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Nullam non nisi ut lorem\",\"_id\":\"d4c8373\",\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Sed eleifend commodo nibh\",\"_id\":\"6b00c07\",\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=89b15fa\",\"icon_typography_typography\":\"globals\\/typography?id=f8cdd91\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"745efe25\",\"elType\":\"widget\",\"settings\":{\"text\":\"Join Now\",\"align\":\"justify\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"button_background_hover_color\":\"\"},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"3fa5343f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"align\":\"center\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":20,\"blur\":20,\"spread\":-8,\"color\":\"rgba(0, 0, 0, 0.14)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4598fd8c\",\"elType\":\"section\",\"settings\":{\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":175,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"shape_divider_bottom_negative\":\"yes\",\"shape_divider_bottom_above_content\":\"yes\",\"__globals__\":{\"shape_divider_bottom_color\":\"globals\\/colors?id=secondary\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"43487611\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"34\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/Acanthus-black-white-02-copy.png\"},\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.88,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"60\",\"left\":\"45\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=8eb8d4a\"},\"background_position\":\"center right\",\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3db2da81\",\"elType\":\"widget\",\"settings\":{\"title\":\"Standard\",\"header_size\":\"h3\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2f5fb7a\",\"elType\":\"widget\",\"settings\":{\"title\":\"$45.99\",\"align\":\"center\",\"_element_width\":\"auto\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"57722fe4\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\/ Month\",\"header_size\":\"h3\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_vertical_align\":\"flex-end\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"title_color\":\"globals\\/colors?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"703f141e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\",\"text_color\":\"globals\\/colors?id=text\"},\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.90000000000000002,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3e81d260\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Lorem ipsum dolor sit amet\",\"_id\":\"7b2c7f9\",\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Proin at elit ac lacus molestie\",\"_id\":\"83bd579\",\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Nullam non nisi ut lorem\",\"_id\":\"d4c8373\",\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Sed eleifend commodo nibh\",\"_id\":\"6b00c07\",\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=89b15fa\",\"icon_typography_typography\":\"globals\\/typography?id=f8cdd91\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"304e89dd\",\"elType\":\"widget\",\"settings\":{\"text\":\"Join Now\",\"align\":\"justify\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"button_background_hover_color\":\"\"},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"41e25df4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"align\":\"center\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":20,\"blur\":20,\"spread\":-8,\"color\":\"rgba(0, 0, 0, 0.14)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"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\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3ae46431\",\"elType\":\"section\",\"settings\":{\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":175,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"shape_divider_bottom_negative\":\"yes\",\"shape_divider_bottom_above_content\":\"yes\",\"__globals__\":{\"shape_divider_bottom_color\":\"globals\\/colors?id=secondary\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"54605ecf\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"34\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/Acanthus-black-white-02-copy.png\"},\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.93999999999999995,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"60\",\"left\":\"45\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=0a21634\"},\"background_position\":\"bottom right\",\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2ae86454\",\"elType\":\"widget\",\"settings\":{\"title\":\"Premium\",\"header_size\":\"h3\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"54ff71bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"$60.99\",\"align\":\"center\",\"_element_width\":\"auto\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15c20517\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\/ Month\",\"header_size\":\"h3\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_vertical_align\":\"flex-end\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"title_color\":\"globals\\/colors?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59fe1958\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\",\"text_color\":\"globals\\/colors?id=text\"},\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.90000000000000002,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"15ba95bf\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Lorem ipsum dolor sit amet\",\"_id\":\"7b2c7f9\",\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Proin at elit ac lacus molestie\",\"_id\":\"83bd579\",\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Nullam non nisi ut lorem\",\"_id\":\"d4c8373\",\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Sed eleifend commodo nibh\",\"_id\":\"6b00c07\",\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=89b15fa\",\"icon_typography_typography\":\"globals\\/typography?id=f8cdd91\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"2954e957\",\"elType\":\"widget\",\"settings\":{\"text\":\"Join Now\",\"align\":\"justify\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"button_background_hover_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7152d6d4\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"25\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/13-copy.jpg\"},\"background_repeat\":\"repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002,\"sizes\":[]},\"shape_divider_top\":\"tilt\",\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":123,\"sizes\":[]},\"shape_divider_top_flip\":\"yes\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=0a21634\",\"shape_divider_top_color\":\"globals\\/colors?id=50714e7\"},\"shape_divider_top_height_tablet\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3142d243\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7eea109\",\"elType\":\"widget\",\"settings\":{\"title\":\"Join Our Education center Now\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"},\"align_tablet\":\"center\",\"_margin_mobile\":{\"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},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"564be619\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"28\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/c2.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":37.046999999999997},\"_position\":\"absolute\",\"_offset_x\":{\"size\":508,\"unit\":\"px\"},\"_offset_y\":{\"size\":-53,\"unit\":\"px\"},\"_z_index\":7,\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":89.066999999999993},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":30.067},\"_offset_x_tablet\":{\"size\":94,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":252,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-60,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":28,\"unit\":\"px\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"715be61d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"14\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/c4.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":12.92},\"_position\":\"absolute\",\"_offset_x\":{\"size\":1290,\"unit\":\"px\"},\"_offset_y\":{\"size\":347,\"unit\":\"px\"},\"_z_index\":7,\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":42.299999999999997},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":118.3},\"_offset_x_tablet\":{\"size\":586,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":-72,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-396,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-43,\"unit\":\"px\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2319125\",\"elType\":\"widget\",\"settings\":{\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"},\"align_tablet\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7d63d592\",\"elType\":\"widget\",\"settings\":{\"text\":\"Sign Up Now\",\"align\":\"left\",\"_z_index\":9,\"__globals__\":{\"background_color\":\"globals\\/colors?id=5425a2a\",\"button_background_hover_color\":\"globals\\/colors?id=7f7112a\"},\"align_tablet\":\"center\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"4a394343\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"26\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/edge3.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":18.638000000000002},\"_offset_x\":{\"size\":172,\"unit\":\"px\"},\"_offset_y\":{\"size\":331,\"unit\":\"px\"},\"_z_index\":7,\"_margin\":{\"unit\":\"%\",\"top\":\"-60\",\"right\":\"45\",\"bottom\":\"0\",\"left\":\"-45\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":39,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"40cc39f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"-150\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"50\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-160\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2916e702\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"46\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/cute-elementary-kids-with-books-at-school-2022-12-16-18-15-57-utc-copy.jpg\"},\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":\"51\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/liki.png\"},\"width_tablet\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":88,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1d62105b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"57\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/cute-elementary-kids-with-books-at-school-2022-12-16-18-15-57-utc2.png\"},\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_position\":\"absolute\",\"width_tablet\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":88,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(245,71,'_elementor_edit_mode','builder'),(246,71,'_elementor_template_type','page'),(247,71,'_elementor_version','3.15.3'),(248,71,'_elementor_data','[{\"id\":\"48734556\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":\"7\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/2-copy.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"200\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"background_overlay_color\":\"globals\\/colors?id=ff9d88d\",\"shape_divider_bottom_color\":\"globals\\/colors?id=50714e7\"},\"shape_divider_bottom\":\"tilt\",\"shape_divider_bottom_flip\":\"yes\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_color\":\"#DC434C\",\"shape_divider_bottom_color\":\"#F8F8F8\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3cf8143c\",\"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},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"40050754\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pricing\",\"header_size\":\"h1\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"12eef49c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"14\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/c4.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":7.7080000000000002},\"_position\":\"absolute\",\"_offset_x\":{\"size\":333,\"unit\":\"px\"},\"_offset_x_tablet\":{\"size\":133,\"unit\":\"px\"},\"_offset_y\":{\"size\":-51,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-27,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":21,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-14,\"unit\":\"px\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"36e5cdc1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"15\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/c3.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":2.7629999999999999},\"_position\":\"absolute\",\"_offset_x\":{\"size\":397,\"unit\":\"px\"},\"_offset_x_tablet\":{\"size\":177,\"unit\":\"px\"},\"_offset_y\":{\"size\":47,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":41,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":47,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-38,\"unit\":\"px\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"243de614\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"17\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/edge.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":5.8129999999999997},\"_position\":\"absolute\",\"_offset_x\":{\"size\":796,\"unit\":\"px\"},\"_offset_x_tablet\":{\"size\":518,\"unit\":\"px\"},\"_offset_y\":{\"size\":-19,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-14,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":291,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-3,\"unit\":\"px\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"33f1357\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=50714e7\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4924c3d9\",\"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},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2edbe812\",\"elType\":\"widget\",\"settings\":{\"title\":\"Join Our Membership Program\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"align_tablet\":\"center\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7e83d493\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"editor\":\"<p>Nullam non nisi ut lorem pulvinar hendrerit. Nam sodales in eros eu mollis. Duis rhoncus suscipit purus, eu porta urna aliquet sed. In lacinia massa<\\/p>\",\"align_tablet\":\"center\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7672bcee\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=50714e7\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"32fec775\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"align\":\"center\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":20,\"blur\":20,\"spread\":-8,\"color\":\"rgba(0, 0, 0, 0.14)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"24948a28\",\"elType\":\"section\",\"settings\":{\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":175,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"shape_divider_bottom_negative\":\"yes\",\"shape_divider_bottom_above_content\":\"yes\",\"__globals__\":{\"shape_divider_bottom_color\":\"globals\\/colors?id=secondary\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2f46ade4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"34\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/Acanthus-black-white-02-copy.png\"},\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.90000000000000002,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"60\",\"left\":\"45\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=5425a2a\"},\"_inline_size_tablet\":100,\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"467c1b79\",\"elType\":\"widget\",\"settings\":{\"title\":\"Basic\",\"header_size\":\"h3\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7b1557fe\",\"elType\":\"widget\",\"settings\":{\"title\":\"$20.99\",\"align\":\"center\",\"_element_width\":\"auto\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"608535a8\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\/ Month\",\"header_size\":\"h3\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_vertical_align\":\"flex-end\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"title_color\":\"globals\\/colors?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"778a44a8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\",\"text_color\":\"globals\\/colors?id=text\"},\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.90000000000000002,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7d864b8d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Lorem ipsum dolor sit amet\",\"_id\":\"7b2c7f9\",\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Proin at elit ac lacus molestie\",\"_id\":\"83bd579\",\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Nullam non nisi ut lorem\",\"_id\":\"d4c8373\",\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Sed eleifend commodo nibh\",\"_id\":\"6b00c07\",\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=89b15fa\",\"icon_typography_typography\":\"globals\\/typography?id=f8cdd91\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"745efe25\",\"elType\":\"widget\",\"settings\":{\"text\":\"Join Now\",\"align\":\"justify\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"button_background_hover_color\":\"\"},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"3fa5343f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"align\":\"center\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":20,\"blur\":20,\"spread\":-8,\"color\":\"rgba(0, 0, 0, 0.14)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4598fd8c\",\"elType\":\"section\",\"settings\":{\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":175,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"shape_divider_bottom_negative\":\"yes\",\"shape_divider_bottom_above_content\":\"yes\",\"__globals__\":{\"shape_divider_bottom_color\":\"globals\\/colors?id=secondary\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"43487611\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"34\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/Acanthus-black-white-02-copy.png\"},\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.88,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"60\",\"left\":\"45\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=8eb8d4a\"},\"background_position\":\"center right\",\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3db2da81\",\"elType\":\"widget\",\"settings\":{\"title\":\"Standard\",\"header_size\":\"h3\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2f5fb7a\",\"elType\":\"widget\",\"settings\":{\"title\":\"$45.99\",\"align\":\"center\",\"_element_width\":\"auto\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"57722fe4\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\/ Month\",\"header_size\":\"h3\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_vertical_align\":\"flex-end\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"title_color\":\"globals\\/colors?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"703f141e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\",\"text_color\":\"globals\\/colors?id=text\"},\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.90000000000000002,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3e81d260\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Lorem ipsum dolor sit amet\",\"_id\":\"7b2c7f9\",\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Proin at elit ac lacus molestie\",\"_id\":\"83bd579\",\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Nullam non nisi ut lorem\",\"_id\":\"d4c8373\",\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Sed eleifend commodo nibh\",\"_id\":\"6b00c07\",\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=89b15fa\",\"icon_typography_typography\":\"globals\\/typography?id=f8cdd91\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"304e89dd\",\"elType\":\"widget\",\"settings\":{\"text\":\"Join Now\",\"align\":\"justify\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"button_background_hover_color\":\"\"},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"41e25df4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"align\":\"center\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":20,\"blur\":20,\"spread\":-8,\"color\":\"rgba(0, 0, 0, 0.14)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"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\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3ae46431\",\"elType\":\"section\",\"settings\":{\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":175,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"shape_divider_bottom_negative\":\"yes\",\"shape_divider_bottom_above_content\":\"yes\",\"__globals__\":{\"shape_divider_bottom_color\":\"globals\\/colors?id=secondary\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"54605ecf\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"34\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/Acanthus-black-white-02-copy.png\"},\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.93999999999999995,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"60\",\"left\":\"45\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=0a21634\"},\"background_position\":\"bottom right\",\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2ae86454\",\"elType\":\"widget\",\"settings\":{\"title\":\"Premium\",\"header_size\":\"h3\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"54ff71bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"$60.99\",\"align\":\"center\",\"_element_width\":\"auto\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15c20517\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\/ Month\",\"header_size\":\"h3\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_vertical_align\":\"flex-end\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"title_color\":\"globals\\/colors?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59fe1958\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\",\"text_color\":\"globals\\/colors?id=text\"},\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.90000000000000002,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"15ba95bf\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Lorem ipsum dolor sit amet\",\"_id\":\"7b2c7f9\",\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Proin at elit ac lacus molestie\",\"_id\":\"83bd579\",\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Nullam non nisi ut lorem\",\"_id\":\"d4c8373\",\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Sed eleifend commodo nibh\",\"_id\":\"6b00c07\",\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=89b15fa\",\"icon_typography_typography\":\"globals\\/typography?id=f8cdd91\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"2954e957\",\"elType\":\"widget\",\"settings\":{\"text\":\"Join Now\",\"align\":\"justify\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"button_background_hover_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7152d6d4\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"25\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/13-copy.jpg\"},\"background_repeat\":\"repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002,\"sizes\":[]},\"shape_divider_top\":\"tilt\",\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":123,\"sizes\":[]},\"shape_divider_top_flip\":\"yes\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=0a21634\",\"shape_divider_top_color\":\"globals\\/colors?id=50714e7\"},\"shape_divider_top_height_tablet\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3142d243\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7eea109\",\"elType\":\"widget\",\"settings\":{\"title\":\"Join Our Education center Now\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"},\"align_tablet\":\"center\",\"_margin_mobile\":{\"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},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"564be619\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"28\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/c2.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":37.046999999999997},\"_position\":\"absolute\",\"_offset_x\":{\"size\":508,\"unit\":\"px\"},\"_offset_y\":{\"size\":-53,\"unit\":\"px\"},\"_z_index\":7,\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":89.066999999999993},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":30.067},\"_offset_x_tablet\":{\"size\":94,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":252,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-60,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":28,\"unit\":\"px\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"715be61d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"14\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/c4.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":12.92},\"_position\":\"absolute\",\"_offset_x\":{\"size\":1290,\"unit\":\"px\"},\"_offset_y\":{\"size\":347,\"unit\":\"px\"},\"_z_index\":7,\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":42.299999999999997},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":118.3},\"_offset_x_tablet\":{\"size\":586,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":-72,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-396,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-43,\"unit\":\"px\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2319125\",\"elType\":\"widget\",\"settings\":{\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"},\"align_tablet\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7d63d592\",\"elType\":\"widget\",\"settings\":{\"text\":\"Sign Up Now\",\"align\":\"left\",\"_z_index\":9,\"__globals__\":{\"background_color\":\"globals\\/colors?id=5425a2a\",\"button_background_hover_color\":\"globals\\/colors?id=7f7112a\"},\"align_tablet\":\"center\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"4a394343\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"26\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/edge3.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":18.638000000000002},\"_offset_x\":{\"size\":172,\"unit\":\"px\"},\"_offset_y\":{\"size\":331,\"unit\":\"px\"},\"_z_index\":7,\"_margin\":{\"unit\":\"%\",\"top\":\"-60\",\"right\":\"45\",\"bottom\":\"0\",\"left\":\"-45\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":39,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"40cc39f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"-150\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"50\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-160\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2916e702\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"46\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/cute-elementary-kids-with-books-at-school-2022-12-16-18-15-57-utc-copy.jpg\"},\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":\"51\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/liki.png\"},\"width_tablet\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":88,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1d62105b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"57\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/cute-elementary-kids-with-books-at-school-2022-12-16-18-15-57-utc2.png\"},\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_position\":\"absolute\",\"width_tablet\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":88,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(249,72,'_elementor_edit_mode','builder'),(250,72,'_elementor_template_type','page'),(251,70,'_elementor_page_assets','a:0:{}'),(252,70,'_wp_page_template','elementor_header_footer'),(253,70,'envato_tk_source_kit','6'),(254,70,'envato_tk_source_index','8'),(255,72,'_elementor_version','3.15.3'),(256,72,'_elementor_data','[{\"id\":\"54c32390\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":\"7\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/2-copy.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"200\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"background_overlay_color\":\"globals\\/colors?id=ff9d88d\",\"shape_divider_bottom_color\":\"globals\\/colors?id=50714e7\"},\"shape_divider_bottom\":\"tilt\",\"shape_divider_bottom_flip\":\"yes\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_color\":\"#DC434C\",\"shape_divider_bottom_color\":\"#F8F8F8\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3592c24f\",\"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},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7c925c86\",\"elType\":\"widget\",\"settings\":{\"title\":\"Blog\",\"header_size\":\"h1\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1d00124e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"14\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/c4.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":7.7080000000000002},\"_position\":\"absolute\",\"_offset_x\":{\"size\":359,\"unit\":\"px\"},\"_offset_x_tablet\":{\"size\":133,\"unit\":\"px\"},\"_offset_y\":{\"size\":-48,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-27,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":42,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-18,\"unit\":\"px\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"67adca13\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"15\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/c3.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":2.7629999999999999},\"_position\":\"absolute\",\"_offset_x\":{\"size\":428,\"unit\":\"px\"},\"_offset_x_tablet\":{\"size\":177,\"unit\":\"px\"},\"_offset_y\":{\"size\":61,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":41,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":58,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":17,\"unit\":\"px\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"594d5680\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"17\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/edge.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":5.8129999999999997},\"_position\":\"absolute\",\"_offset_x\":{\"size\":765,\"unit\":\"px\"},\"_offset_x_tablet\":{\"size\":518,\"unit\":\"px\"},\"_offset_y\":{\"size\":-18,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-14,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":291,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-3,\"unit\":\"px\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d1a895a\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=50714e7\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"82\",\"left\":\"20\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"61e3538f\",\"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},\"animation\":\"fadeInUp\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6f3af8ad\",\"elType\":\"widget\",\"settings\":{\"title\":\"Articles & Stories\",\"align\":\"center\",\"align_mobile\":\"center\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"33ee0a36\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"15\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/c3.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":4.7309999999999999},\"_position\":\"absolute\",\"_offset_x\":{\"size\":886,\"unit\":\"px\"},\"_offset_y\":{\"size\":19,\"unit\":\"px\"},\"_z_index\":7,\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":45.517000000000003},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":130.517},\"_offset_x_tablet\":{\"size\":536,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":-90,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":34,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":0,\"unit\":\"px\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6ff31ab9\",\"elType\":\"widget\",\"settings\":{\"ekit_blog_posts_layout_style\":\"elementskit-post-image-card\",\"ekit_blog_posts_btn_text\":\"read more \",\"ekit_blog_posts_cats\":[\"1\"],\"ekit_blog_posts_floating_date\":\"yes\",\"ekit_blog_posts_floating_date_style\":\"style2\",\"ekit_blog_posts_floating_category\":\"\",\"ekit_blog_posts_meta\":\"\",\"ekit_blog_posts_background_background\":\"classic\",\"ekit_blog_posts_background_color\":\"#FFFFFF\",\"ekit_blog_posts_shadow_box_shadow_type\":\"yes\",\"ekit_blog_posts_shadow_box_shadow\":{\"horizontal\":9,\"vertical\":23,\"blur\":26,\"spread\":-8,\"color\":\"rgba(0, 0, 0, 0.07)\"},\"ekit_blog_posts_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_blog_posts_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_text_content_wraper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"ekit_blog_posts_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"ekit_blog_posts_content_background\":\"#FFFFFF\",\"ekit_blog_posts_feature_img_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_feature_img_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_feature_img_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_floating_date_bottom_pos\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"ekit_blog_posts_floating_date_bg_color_group_background\":\"classic\",\"ekit_blog_posts_floating_date_bg_color_group_color\":\"#BB8FF7\",\"ekit_blog_posts_floating_date_triangle_color\":\"#B279FF\",\"ekit_blog_posts_title_typography_typography\":\"custom\",\"ekit_blog_posts_title_typography_font_family\":\"Roboto\",\"ekit_blog_posts_title_typography_font_size\":{\"unit\":\"rem\",\"size\":1.2,\"sizes\":[]},\"ekit_blog_posts_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_blog_posts_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2,\"sizes\":[]},\"ekit_blog_posts_title_typography_font_weight\":\"500\",\"ekit_blog_posts_title_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_blog_posts_title_color\":\"#062233\",\"ekit_blog_posts_title_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_content_color\":\"#484848\",\"ekit_blog_posts_btn_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_btn_bg_color_background\":\"classic\",\"ekit_blog_posts_btn_bg_color_color\":\"#FFFFFF00\",\"__globals__\":{\"ekit_blog_posts_content_background\":\"globals\\/colors?id=eb507f3\",\"ekit_blog_posts_title_typography_typography\":\"globals\\/typography?id=64a9188\",\"ekit_blog_posts_title_color\":\"globals\\/colors?id=3f37fea\",\"ekit_blog_posts_content_color\":\"globals\\/colors?id=text\",\"ekit_blog_posts_background_color\":\"globals\\/colors?id=secondary\",\"ekit_blog_posts_border_color\":\"\",\"ekit_blog_posts_floating_date_bg_color_group_color\":\"globals\\/colors?id=0a21634\",\"ekit_blog_posts_floating_date_triangle_color\":\"globals\\/colors?id=3f37fea\",\"ekit_blog_posts_btn_text_color\":\"globals\\/colors?id=0a21634\",\"ekit_blog_posts_btn_bg_color_color\":\"globals\\/colors?id=eb507f3\",\"ekit_blog_posts_content_typography_typography\":\"globals\\/typography?id=f8cdd91\",\"ekit_blog_posts_btn_hover_color\":\"globals\\/colors?id=4b29dee\"},\"ekit_blog_posts_floating_date_triangle_position_left\":{\"unit\":\"%\",\"size\":1,\"sizes\":[]},\"ekit_blog_posts_floating_date_triangle_position_top\":{\"unit\":\"px\",\"size\":-9,\"sizes\":[]},\"ekit_blog_posts_num\":6,\"_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_meta_author_icons\":{\"value\":\"icon icon-user\",\"library\":\"ekiticons\"},\"ekit_blog_posts_meta_date_icons\":{\"value\":\"icon icon-calendar3\",\"library\":\"ekiticons\"},\"ekit_blog_posts_meta_category_icons\":{\"value\":\"icon icon-folder\",\"library\":\"ekiticons\"},\"ekit_blog_posts_meta_comment_icons\":{\"value\":\"icon icon-comment\",\"library\":\"ekiticons\"},\"ekit_blog_posts_btn_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_blog_posts_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_blog_posts_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_blog_posts_background_slideshow_gallery\":[],\"ekit_blog_posts_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_blog_posts_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_blog_posts_background_hover_slideshow_gallery\":[],\"ekit_blog_posts_meta_background_normal_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_blog_posts_meta_background_normal_slideshow_gallery\":[],\"ekit_blog_posts_meta_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_blog_posts_meta_background_hover_slideshow_gallery\":[],\"ekit_blog_posts_floating_date_bg_color_group_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_blog_posts_floating_date_bg_color_group_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_blog_posts_floating_date_bg_color_group_slideshow_gallery\":[],\"ekit_blog_posts_border_highlight_bg_color_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_blog_posts_border_highlight_bg_color_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_blog_posts_border_highlight_bg_color_slideshow_gallery\":[],\"ekit_blog_posts_border_highlight_bg_color_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_blog_posts_border_highlight_bg_color_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_blog_posts_border_highlight_bg_color_hover_slideshow_gallery\":[],\"ekit_blog_posts_btn_bg_color_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_blog_posts_btn_bg_color_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_blog_posts_btn_bg_color_slideshow_gallery\":[],\"ekit_blog_posts_btn_bg_hover_color_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_blog_posts_btn_bg_hover_color_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_blog_posts_btn_bg_hover_color_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-blog-posts\"},{\"id\":\"6cde7cc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"19\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/c1.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":12.685},\"_position\":\"absolute\",\"_offset_x\":{\"size\":959,\"unit\":\"px\"},\"_offset_y\":{\"size\":-122,\"unit\":\"px\"},\"_z_index\":7,\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":116.93300000000001},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":38.933},\"_offset_x_tablet\":{\"size\":547,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":21,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-98,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-46,\"unit\":\"px\"},\"_z_index_mobile\":1,\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"619e660a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"25\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/13-copy.jpg\"},\"background_repeat\":\"repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002,\"sizes\":[]},\"shape_divider_top\":\"tilt\",\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":123,\"sizes\":[]},\"shape_divider_top_flip\":\"yes\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=0a21634\",\"shape_divider_top_color\":\"globals\\/colors?id=50714e7\"},\"shape_divider_top_height_tablet\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7e0d20a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"514f8850\",\"elType\":\"widget\",\"settings\":{\"title\":\"Join Our Education center Now\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"},\"align_tablet\":\"center\",\"_margin_mobile\":{\"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},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"49c2d03\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"28\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/c2.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":37.046999999999997},\"_position\":\"absolute\",\"_offset_x\":{\"size\":508,\"unit\":\"px\"},\"_offset_y\":{\"size\":-53,\"unit\":\"px\"},\"_z_index\":7,\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":89.066999999999993},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":30.067},\"_offset_x_tablet\":{\"size\":94,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":252,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-60,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":28,\"unit\":\"px\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2dce2aa8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"14\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/c4.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":12.92},\"_position\":\"absolute\",\"_offset_x\":{\"size\":1290,\"unit\":\"px\"},\"_offset_y\":{\"size\":347,\"unit\":\"px\"},\"_z_index\":7,\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":42.299999999999997},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":118.3},\"_offset_x_tablet\":{\"size\":586,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":-72,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-396,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-43,\"unit\":\"px\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6085926b\",\"elType\":\"widget\",\"settings\":{\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"},\"align_tablet\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1e7d1c28\",\"elType\":\"widget\",\"settings\":{\"text\":\"Sign Up Now\",\"align\":\"left\",\"_z_index\":9,\"__globals__\":{\"background_color\":\"globals\\/colors?id=5425a2a\",\"button_background_hover_color\":\"globals\\/colors?id=7f7112a\"},\"align_tablet\":\"center\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"396f87f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"26\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/edge3.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":18.638000000000002},\"_offset_x\":{\"size\":172,\"unit\":\"px\"},\"_offset_y\":{\"size\":331,\"unit\":\"px\"},\"_z_index\":7,\"_margin\":{\"unit\":\"%\",\"top\":\"-60\",\"right\":\"45\",\"bottom\":\"0\",\"left\":\"-45\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":39,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"7b3a8faf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"-150\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"50\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-160\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6aad0be7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"46\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/cute-elementary-kids-with-books-at-school-2022-12-16-18-15-57-utc-copy.jpg\"},\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":\"51\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/liki.png\"},\"width_tablet\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":88,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"45b2e719\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"57\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/cute-elementary-kids-with-books-at-school-2022-12-16-18-15-57-utc2.png\"},\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_position\":\"absolute\",\"width_tablet\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":88,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(257,73,'_elementor_edit_mode','builder'),(258,73,'_elementor_template_type','page'),(259,73,'_elementor_version','3.15.3'),(260,73,'_elementor_data','[{\"id\":\"54c32390\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":\"7\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/2-copy.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"200\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"background_overlay_color\":\"globals\\/colors?id=ff9d88d\",\"shape_divider_bottom_color\":\"globals\\/colors?id=50714e7\"},\"shape_divider_bottom\":\"tilt\",\"shape_divider_bottom_flip\":\"yes\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_color\":\"#DC434C\",\"shape_divider_bottom_color\":\"#F8F8F8\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3592c24f\",\"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},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7c925c86\",\"elType\":\"widget\",\"settings\":{\"title\":\"Blog\",\"header_size\":\"h1\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1d00124e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"14\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/c4.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":7.7080000000000002},\"_position\":\"absolute\",\"_offset_x\":{\"size\":359,\"unit\":\"px\"},\"_offset_x_tablet\":{\"size\":133,\"unit\":\"px\"},\"_offset_y\":{\"size\":-48,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-27,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":42,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-18,\"unit\":\"px\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"67adca13\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"15\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/c3.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":2.7629999999999999},\"_position\":\"absolute\",\"_offset_x\":{\"size\":428,\"unit\":\"px\"},\"_offset_x_tablet\":{\"size\":177,\"unit\":\"px\"},\"_offset_y\":{\"size\":61,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":41,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":58,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":17,\"unit\":\"px\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"594d5680\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"17\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/edge.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":5.8129999999999997},\"_position\":\"absolute\",\"_offset_x\":{\"size\":765,\"unit\":\"px\"},\"_offset_x_tablet\":{\"size\":518,\"unit\":\"px\"},\"_offset_y\":{\"size\":-18,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-14,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":291,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-3,\"unit\":\"px\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d1a895a\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=50714e7\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"82\",\"left\":\"20\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"61e3538f\",\"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},\"animation\":\"fadeInUp\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6f3af8ad\",\"elType\":\"widget\",\"settings\":{\"title\":\"Articles & Stories\",\"align\":\"center\",\"align_mobile\":\"center\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"33ee0a36\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"15\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/c3.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":4.7309999999999999},\"_position\":\"absolute\",\"_offset_x\":{\"size\":886,\"unit\":\"px\"},\"_offset_y\":{\"size\":19,\"unit\":\"px\"},\"_z_index\":7,\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":45.517000000000003},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":130.517},\"_offset_x_tablet\":{\"size\":536,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":-90,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":34,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":0,\"unit\":\"px\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6ff31ab9\",\"elType\":\"widget\",\"settings\":{\"ekit_blog_posts_layout_style\":\"elementskit-post-image-card\",\"ekit_blog_posts_btn_text\":\"read more \",\"ekit_blog_posts_cats\":[\"1\"],\"ekit_blog_posts_floating_date\":\"yes\",\"ekit_blog_posts_floating_date_style\":\"style2\",\"ekit_blog_posts_floating_category\":\"\",\"ekit_blog_posts_meta\":\"\",\"ekit_blog_posts_background_background\":\"classic\",\"ekit_blog_posts_background_color\":\"#FFFFFF\",\"ekit_blog_posts_shadow_box_shadow_type\":\"yes\",\"ekit_blog_posts_shadow_box_shadow\":{\"horizontal\":9,\"vertical\":23,\"blur\":26,\"spread\":-8,\"color\":\"rgba(0, 0, 0, 0.07)\"},\"ekit_blog_posts_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_blog_posts_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_text_content_wraper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"ekit_blog_posts_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"ekit_blog_posts_content_background\":\"#FFFFFF\",\"ekit_blog_posts_feature_img_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_feature_img_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_feature_img_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_floating_date_bottom_pos\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"ekit_blog_posts_floating_date_bg_color_group_background\":\"classic\",\"ekit_blog_posts_floating_date_bg_color_group_color\":\"#BB8FF7\",\"ekit_blog_posts_floating_date_triangle_color\":\"#B279FF\",\"ekit_blog_posts_title_typography_typography\":\"custom\",\"ekit_blog_posts_title_typography_font_family\":\"Roboto\",\"ekit_blog_posts_title_typography_font_size\":{\"unit\":\"rem\",\"size\":1.2,\"sizes\":[]},\"ekit_blog_posts_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_blog_posts_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2,\"sizes\":[]},\"ekit_blog_posts_title_typography_font_weight\":\"500\",\"ekit_blog_posts_title_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_blog_posts_title_color\":\"#062233\",\"ekit_blog_posts_title_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_content_color\":\"#484848\",\"ekit_blog_posts_btn_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_btn_bg_color_background\":\"classic\",\"ekit_blog_posts_btn_bg_color_color\":\"#FFFFFF00\",\"__globals__\":{\"ekit_blog_posts_content_background\":\"globals\\/colors?id=eb507f3\",\"ekit_blog_posts_title_typography_typography\":\"globals\\/typography?id=64a9188\",\"ekit_blog_posts_title_color\":\"globals\\/colors?id=3f37fea\",\"ekit_blog_posts_content_color\":\"globals\\/colors?id=text\",\"ekit_blog_posts_background_color\":\"globals\\/colors?id=secondary\",\"ekit_blog_posts_border_color\":\"\",\"ekit_blog_posts_floating_date_bg_color_group_color\":\"globals\\/colors?id=0a21634\",\"ekit_blog_posts_floating_date_triangle_color\":\"globals\\/colors?id=3f37fea\",\"ekit_blog_posts_btn_text_color\":\"globals\\/colors?id=0a21634\",\"ekit_blog_posts_btn_bg_color_color\":\"globals\\/colors?id=eb507f3\",\"ekit_blog_posts_content_typography_typography\":\"globals\\/typography?id=f8cdd91\",\"ekit_blog_posts_btn_hover_color\":\"globals\\/colors?id=4b29dee\"},\"ekit_blog_posts_floating_date_triangle_position_left\":{\"unit\":\"%\",\"size\":1,\"sizes\":[]},\"ekit_blog_posts_floating_date_triangle_position_top\":{\"unit\":\"px\",\"size\":-9,\"sizes\":[]},\"ekit_blog_posts_num\":6,\"_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_meta_author_icons\":{\"value\":\"icon icon-user\",\"library\":\"ekiticons\"},\"ekit_blog_posts_meta_date_icons\":{\"value\":\"icon icon-calendar3\",\"library\":\"ekiticons\"},\"ekit_blog_posts_meta_category_icons\":{\"value\":\"icon icon-folder\",\"library\":\"ekiticons\"},\"ekit_blog_posts_meta_comment_icons\":{\"value\":\"icon icon-comment\",\"library\":\"ekiticons\"},\"ekit_blog_posts_btn_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_blog_posts_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_blog_posts_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_blog_posts_background_slideshow_gallery\":[],\"ekit_blog_posts_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_blog_posts_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_blog_posts_background_hover_slideshow_gallery\":[],\"ekit_blog_posts_meta_background_normal_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_blog_posts_meta_background_normal_slideshow_gallery\":[],\"ekit_blog_posts_meta_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_blog_posts_meta_background_hover_slideshow_gallery\":[],\"ekit_blog_posts_floating_date_bg_color_group_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_blog_posts_floating_date_bg_color_group_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_blog_posts_floating_date_bg_color_group_slideshow_gallery\":[],\"ekit_blog_posts_border_highlight_bg_color_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_blog_posts_border_highlight_bg_color_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_blog_posts_border_highlight_bg_color_slideshow_gallery\":[],\"ekit_blog_posts_border_highlight_bg_color_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_blog_posts_border_highlight_bg_color_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_blog_posts_border_highlight_bg_color_hover_slideshow_gallery\":[],\"ekit_blog_posts_btn_bg_color_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_blog_posts_btn_bg_color_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_blog_posts_btn_bg_color_slideshow_gallery\":[],\"ekit_blog_posts_btn_bg_hover_color_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_blog_posts_btn_bg_hover_color_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_blog_posts_btn_bg_hover_color_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-blog-posts\"},{\"id\":\"6cde7cc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"19\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/c1.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":12.685},\"_position\":\"absolute\",\"_offset_x\":{\"size\":959,\"unit\":\"px\"},\"_offset_y\":{\"size\":-122,\"unit\":\"px\"},\"_z_index\":7,\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":116.93300000000001},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":38.933},\"_offset_x_tablet\":{\"size\":547,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":21,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-98,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-46,\"unit\":\"px\"},\"_z_index_mobile\":1,\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"619e660a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"25\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/13-copy.jpg\"},\"background_repeat\":\"repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002,\"sizes\":[]},\"shape_divider_top\":\"tilt\",\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":123,\"sizes\":[]},\"shape_divider_top_flip\":\"yes\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=0a21634\",\"shape_divider_top_color\":\"globals\\/colors?id=50714e7\"},\"shape_divider_top_height_tablet\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7e0d20a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"514f8850\",\"elType\":\"widget\",\"settings\":{\"title\":\"Join Our Education center Now\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"},\"align_tablet\":\"center\",\"_margin_mobile\":{\"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},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"49c2d03\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"28\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/c2.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":37.046999999999997},\"_position\":\"absolute\",\"_offset_x\":{\"size\":508,\"unit\":\"px\"},\"_offset_y\":{\"size\":-53,\"unit\":\"px\"},\"_z_index\":7,\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":89.066999999999993},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":30.067},\"_offset_x_tablet\":{\"size\":94,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":252,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-60,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":28,\"unit\":\"px\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2dce2aa8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"14\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/c4.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":12.92},\"_position\":\"absolute\",\"_offset_x\":{\"size\":1290,\"unit\":\"px\"},\"_offset_y\":{\"size\":347,\"unit\":\"px\"},\"_z_index\":7,\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":42.299999999999997},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":118.3},\"_offset_x_tablet\":{\"size\":586,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":-72,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-396,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-43,\"unit\":\"px\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6085926b\",\"elType\":\"widget\",\"settings\":{\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"},\"align_tablet\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1e7d1c28\",\"elType\":\"widget\",\"settings\":{\"text\":\"Sign Up Now\",\"align\":\"left\",\"_z_index\":9,\"__globals__\":{\"background_color\":\"globals\\/colors?id=5425a2a\",\"button_background_hover_color\":\"globals\\/colors?id=7f7112a\"},\"align_tablet\":\"center\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"396f87f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"26\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/edge3.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":18.638000000000002},\"_offset_x\":{\"size\":172,\"unit\":\"px\"},\"_offset_y\":{\"size\":331,\"unit\":\"px\"},\"_z_index\":7,\"_margin\":{\"unit\":\"%\",\"top\":\"-60\",\"right\":\"45\",\"bottom\":\"0\",\"left\":\"-45\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":39,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"7b3a8faf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"-150\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"50\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-160\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6aad0be7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"46\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/cute-elementary-kids-with-books-at-school-2022-12-16-18-15-57-utc-copy.jpg\"},\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":\"51\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/liki.png\"},\"width_tablet\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":88,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"45b2e719\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"57\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/cute-elementary-kids-with-books-at-school-2022-12-16-18-15-57-utc2.png\"},\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_position\":\"absolute\",\"width_tablet\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":88,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(261,72,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(262,72,'_wp_page_template','elementor_header_footer'),(263,72,'envato_tk_source_kit','6'),(264,72,'envato_tk_source_index','9'),(265,74,'_wp_attached_file','2023/09/logoipsum-261.png'),(266,74,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:696;s:6:\"height\";i:171;s:4:\"file\";s:25:\"2023/09/logoipsum-261.png\";s:8:\"filesize\";i:10361;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:24:\"logoipsum-261-300x74.png\";s:5:\"width\";i:300;s:6:\"height\";i:74;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:7340;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:25:\"logoipsum-261-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4383;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(267,74,'_elementor_source_image_hash','ac20b1d11e0fee9279eb7a20a9cceb8adfc232f4'),(268,75,'_wp_attached_file','2023/09/logoipsum-261-1.png'),(269,75,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:696;s:6:\"height\";i:171;s:4:\"file\";s:27:\"2023/09/logoipsum-261-1.png\";s:8:\"filesize\";i:10361;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:26:\"logoipsum-261-1-300x74.png\";s:5:\"width\";i:300;s:6:\"height\";i:74;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:7340;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"logoipsum-261-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:4383;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(270,75,'_elementor_source_image_hash','ac20b1d11e0fee9279eb7a20a9cceb8adfc232f4'),(271,76,'_wp_attached_file','2023/09/logoipsum-259.png'),(272,76,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:642;s:6:\"height\";i:113;s:4:\"file\";s:25:\"2023/09/logoipsum-259.png\";s:8:\"filesize\";i:6719;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:24:\"logoipsum-259-300x53.png\";s:5:\"width\";i:300;s:6:\"height\";i:53;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:6214;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:25:\"logoipsum-259-150x113.png\";s:5:\"width\";i:150;s:6:\"height\";i:113;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2843;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"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,76,'_elementor_source_image_hash','22ffd9d72a4fab58bc0b74eed2fd99be58ee1953'),(274,77,'_wp_attached_file','2023/09/logoipsum-259-1.png'),(275,77,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:642;s:6:\"height\";i:113;s:4:\"file\";s:27:\"2023/09/logoipsum-259-1.png\";s:8:\"filesize\";i:6719;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:26:\"logoipsum-259-1-300x53.png\";s:5:\"width\";i:300;s:6:\"height\";i:53;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:6214;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"logoipsum-259-1-150x113.png\";s:5:\"width\";i:150;s:6:\"height\";i:113;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2843;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(276,77,'_elementor_source_image_hash','22ffd9d72a4fab58bc0b74eed2fd99be58ee1953'),(277,78,'_elementor_edit_mode','builder'),(278,78,'_elementor_template_type','page'),(279,78,'_elementor_version','3.15.3'),(280,78,'_elementor_data','[{\"id\":\"20ea7ad6\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":\"7\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/2-copy.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"200\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"background_overlay_color\":\"globals\\/colors?id=ff9d88d\",\"shape_divider_bottom_color\":\"globals\\/colors?id=a00e83d\"},\"shape_divider_bottom\":\"tilt\",\"shape_divider_bottom_flip\":\"yes\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"background_overlay_color\":\"#DC434C\",\"shape_divider_bottom_color\":\"#F8F8F8\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5f37835\",\"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},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7f6f00a8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Class-Detail\",\"header_size\":\"h1\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bb334d4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"14\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/c4.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":7.7080000000000002},\"_position\":\"absolute\",\"_offset_x\":{\"size\":231,\"unit\":\"px\"},\"_offset_x_tablet\":{\"size\":94,\"unit\":\"px\"},\"_offset_y\":{\"size\":-64,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-42,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":7,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-30,\"unit\":\"px\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":44.366999999999997},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2f305332\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"15\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/c3.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":2.7629999999999999},\"_position\":\"absolute\",\"_offset_x\":{\"size\":294,\"unit\":\"px\"},\"_offset_x_tablet\":{\"size\":138,\"unit\":\"px\"},\"_offset_y\":{\"size\":37,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":27,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":30,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":133,\"unit\":\"px\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":20.367000000000001},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4a7c171e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"17\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/edge.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":5.8129999999999997},\"_position\":\"absolute\",\"_offset_x\":{\"size\":905,\"unit\":\"px\"},\"_offset_x_tablet\":{\"size\":565,\"unit\":\"px\"},\"_offset_y\":{\"size\":-34,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-22,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":234,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":0,\"unit\":\"px\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":47.616999999999997},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"52ead05\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=a00e83d\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"650b6a28\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"background_background\":\"classic\",\"background_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/portrait-of-happy-caucasian-boy-standing-at-chalkb-2021-09-03-06-28-24-utc-copy.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"45\",\"left\":\"20\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":28,\"blur\":28,\"spread\":-14,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"__globals__\":{\"border_color\":\"globals\\/colors?id=secondary\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"746abcc\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":415,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"e102344\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"15\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/c3.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":18.891999999999999},\"_position\":\"absolute\",\"_offset_x\":{\"size\":1105,\"unit\":\"px\"},\"_offset_y\":{\"size\":-56,\"unit\":\"px\"},\"_z_index\":7,\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":33.216999999999999},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":21.216999999999999},\"_offset_x_tablet\":{\"size\":111,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":272,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":100,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":75,\"unit\":\"px\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"11815270\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"%\",\"top\":\"8\",\"right\":\"10\",\"bottom\":\"8\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"content_position\":\"center\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":20,\"blur\":45,\"spread\":-10,\"color\":\"rgba(0, 0, 0, 0.12)\"},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"b2ac893\",\"elType\":\"widget\",\"settings\":{\"title\":\"Mathematic  Class\",\"align_tablet\":\"center\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"90\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6a7ac031\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam vitae iaculis lorem, non finibus arcu. Nullam sed ligula sapien. Aliquam vulputate justo sem, nec tincidunt odio gravida vitae. Nunc porta finibus pellentesque.<\\/p><p>Vestibulum ipsum elit, condimentum vitae dapibus vel, interdum in urna. Aliquam semper vitae lacus eu elementum. <\\/p>\",\"align_tablet\":\"center\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6d32a6fe\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=a00e83d\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"bf7f64\",\"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},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7535b791\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Etiam cursus commodo ante vitae faucibus. Aliquam faucibus, mauris ut aliquet dignissim, turpis ipsum efficitur dui, quis efficitur tellus magna non metus. Fusce tempus justo nisi, non varius justo aliquet quis. Phasellus interdum lectus mattis mauris suscipit ultrices. Phasellus ac vulputate lectus. Nunc sit amet dapibus odio, nec aliquam sem. Etiam pretium mollis nulla, ac ultrices leo tincidunt vitae.<\\/p>\",\"align_tablet\":\"center\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7cfc1308\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4db774fd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"_inline_size_tablet\":50,\"content_position\":\"center\",\"align_tablet\":\"center\",\"background_background\":\"classic\",\"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},\"__globals__\":{\"background_color\":\"globals\\/colors?id=5425a2a\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"741e77f2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Group 1 Schedule \",\"header_size\":\"h5\",\"align_tablet\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4d99d318\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Friday,       11am-6pm\",\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"ed8911f\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Saturday,  10am-7pm\",\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"099c7e0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Sunday,   11am-5pm\",\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"aa4a2f9\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"__globals__\":{\"icon_color\":\"globals\\/colors?id=secondary\",\"text_color\":\"globals\\/colors?id=secondary\"},\"_element_width_tablet\":\"auto\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"30ba3c7c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"90\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"_inline_size_tablet\":50,\"content_position\":\"center\",\"align_tablet\":\"center\",\"background_background\":\"classic\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=0a21634\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"f31c04\",\"elType\":\"widget\",\"settings\":{\"title\":\"Group 2 Schedule \",\"header_size\":\"h5\",\"align_tablet\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"12c436b6\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Monday,       11am-6pm\",\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"ed8911f\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Tuesday,  10am-7pm\",\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"099c7e0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Wednesday,   11am-5pm\",\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"aa4a2f9\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"__globals__\":{\"icon_color\":\"globals\\/colors?id=secondary\",\"text_color\":\"globals\\/colors?id=secondary\"},\"_element_width_tablet\":\"auto\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"669d3ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"22c27f3a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"44\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/pp3.jpg\"},\"width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":20,\"blur\":20,\"spread\":-10,\"color\":\"rgba(0, 0, 0, 0.09)\"},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_mask_image\":{\"id\":\"52\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/hex2.png\"},\"width_tablet\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"18\",\"left\":\"9\",\"isLinked\":false},\"jkit_transform_rotate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3951921f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Peter Wong\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\"},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"37dbdf1b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Math Teacher\",\"header_size\":\"h5\",\"align\":\"center\",\"_margin\":{\"unit\":\"%\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=24b2df3\",\"title_color\":\"globals\\/colors?id=5425a2a\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"239be40c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"25\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/13-copy.jpg\"},\"background_repeat\":\"repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002,\"sizes\":[]},\"shape_divider_top\":\"tilt\",\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":123,\"sizes\":[]},\"shape_divider_top_flip\":\"yes\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=0a21634\",\"shape_divider_top_color\":\"globals\\/colors?id=a00e83d\"},\"shape_divider_top_height_tablet\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3999fc1a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"ed8d556\",\"elType\":\"widget\",\"settings\":{\"title\":\"Join Our Education center Now\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"},\"align_tablet\":\"center\",\"_margin_mobile\":{\"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},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"271512f5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"28\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/c2.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":37.046999999999997},\"_position\":\"absolute\",\"_offset_x\":{\"size\":508,\"unit\":\"px\"},\"_offset_y\":{\"size\":-53,\"unit\":\"px\"},\"_z_index\":7,\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":89.066999999999993},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":30.067},\"_offset_x_tablet\":{\"size\":94,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":252,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-60,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":28,\"unit\":\"px\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"56c38063\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"14\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/c4.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":12.92},\"_position\":\"absolute\",\"_offset_x\":{\"size\":1290,\"unit\":\"px\"},\"_offset_y\":{\"size\":347,\"unit\":\"px\"},\"_z_index\":7,\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":42.299999999999997},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":118.3},\"_offset_x_tablet\":{\"size\":586,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":-72,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-396,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-43,\"unit\":\"px\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1aa99c93\",\"elType\":\"widget\",\"settings\":{\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"},\"align_tablet\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1ffcc767\",\"elType\":\"widget\",\"settings\":{\"text\":\"Sign Up Now\",\"align\":\"left\",\"_z_index\":9,\"__globals__\":{\"background_color\":\"globals\\/colors?id=5425a2a\",\"button_background_hover_color\":\"globals\\/colors?id=7f7112a\"},\"align_tablet\":\"center\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"397968e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"26\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/edge3.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":18.638000000000002},\"_offset_x\":{\"size\":172,\"unit\":\"px\"},\"_offset_y\":{\"size\":331,\"unit\":\"px\"},\"_z_index\":7,\"_margin\":{\"unit\":\"%\",\"top\":\"-60\",\"right\":\"45\",\"bottom\":\"0\",\"left\":\"-45\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":39,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"4e51cb13\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"-150\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"50\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-160\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"29eb4c1f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"46\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/cute-elementary-kids-with-books-at-school-2022-12-16-18-15-57-utc-copy.jpg\"},\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":\"51\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/liki.png\"},\"width_tablet\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":88,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6ba3f37b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"57\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/cute-elementary-kids-with-books-at-school-2022-12-16-18-15-57-utc2.png\"},\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_position\":\"absolute\",\"width_tablet\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":88,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(281,79,'_elementor_edit_mode','builder'),(282,79,'_elementor_template_type','page'),(283,79,'_elementor_version','3.15.3'),(284,79,'_elementor_data','[{\"id\":\"20ea7ad6\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":\"7\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/2-copy.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"200\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"background_overlay_color\":\"globals\\/colors?id=ff9d88d\",\"shape_divider_bottom_color\":\"globals\\/colors?id=a00e83d\"},\"shape_divider_bottom\":\"tilt\",\"shape_divider_bottom_flip\":\"yes\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"background_overlay_color\":\"#DC434C\",\"shape_divider_bottom_color\":\"#F8F8F8\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5f37835\",\"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},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7f6f00a8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Class-Detail\",\"header_size\":\"h1\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bb334d4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"14\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/c4.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":7.7080000000000002},\"_position\":\"absolute\",\"_offset_x\":{\"size\":231,\"unit\":\"px\"},\"_offset_x_tablet\":{\"size\":94,\"unit\":\"px\"},\"_offset_y\":{\"size\":-64,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-42,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":7,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-30,\"unit\":\"px\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":44.366999999999997},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2f305332\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"15\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/c3.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":2.7629999999999999},\"_position\":\"absolute\",\"_offset_x\":{\"size\":294,\"unit\":\"px\"},\"_offset_x_tablet\":{\"size\":138,\"unit\":\"px\"},\"_offset_y\":{\"size\":37,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":27,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":30,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":133,\"unit\":\"px\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":20.367000000000001},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4a7c171e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"17\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/edge.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":5.8129999999999997},\"_position\":\"absolute\",\"_offset_x\":{\"size\":905,\"unit\":\"px\"},\"_offset_x_tablet\":{\"size\":565,\"unit\":\"px\"},\"_offset_y\":{\"size\":-34,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-22,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":234,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":0,\"unit\":\"px\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":47.616999999999997},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"52ead05\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=a00e83d\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"650b6a28\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"background_background\":\"classic\",\"background_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/portrait-of-happy-caucasian-boy-standing-at-chalkb-2021-09-03-06-28-24-utc-copy.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"45\",\"left\":\"20\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":28,\"blur\":28,\"spread\":-14,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"__globals__\":{\"border_color\":\"globals\\/colors?id=secondary\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"746abcc\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":415,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"e102344\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"15\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/c3.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":18.891999999999999},\"_position\":\"absolute\",\"_offset_x\":{\"size\":1105,\"unit\":\"px\"},\"_offset_y\":{\"size\":-56,\"unit\":\"px\"},\"_z_index\":7,\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":33.216999999999999},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":21.216999999999999},\"_offset_x_tablet\":{\"size\":111,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":272,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":100,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":75,\"unit\":\"px\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"11815270\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"%\",\"top\":\"8\",\"right\":\"10\",\"bottom\":\"8\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"content_position\":\"center\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":20,\"blur\":45,\"spread\":-10,\"color\":\"rgba(0, 0, 0, 0.12)\"},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"b2ac893\",\"elType\":\"widget\",\"settings\":{\"title\":\"Mathematic  Class\",\"align_tablet\":\"center\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"90\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6a7ac031\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam vitae iaculis lorem, non finibus arcu. Nullam sed ligula sapien. Aliquam vulputate justo sem, nec tincidunt odio gravida vitae. Nunc porta finibus pellentesque.<\\/p><p>Vestibulum ipsum elit, condimentum vitae dapibus vel, interdum in urna. Aliquam semper vitae lacus eu elementum. <\\/p>\",\"align_tablet\":\"center\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6d32a6fe\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=a00e83d\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"bf7f64\",\"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},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7535b791\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Etiam cursus commodo ante vitae faucibus. Aliquam faucibus, mauris ut aliquet dignissim, turpis ipsum efficitur dui, quis efficitur tellus magna non metus. Fusce tempus justo nisi, non varius justo aliquet quis. Phasellus interdum lectus mattis mauris suscipit ultrices. Phasellus ac vulputate lectus. Nunc sit amet dapibus odio, nec aliquam sem. Etiam pretium mollis nulla, ac ultrices leo tincidunt vitae.<\\/p>\",\"align_tablet\":\"center\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7cfc1308\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4db774fd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"_inline_size_tablet\":50,\"content_position\":\"center\",\"align_tablet\":\"center\",\"background_background\":\"classic\",\"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},\"__globals__\":{\"background_color\":\"globals\\/colors?id=5425a2a\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"741e77f2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Group 1 Schedule \",\"header_size\":\"h5\",\"align_tablet\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4d99d318\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Friday,       11am-6pm\",\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"ed8911f\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Saturday,  10am-7pm\",\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"099c7e0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Sunday,   11am-5pm\",\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"aa4a2f9\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"__globals__\":{\"icon_color\":\"globals\\/colors?id=secondary\",\"text_color\":\"globals\\/colors?id=secondary\"},\"_element_width_tablet\":\"auto\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"30ba3c7c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"90\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"_inline_size_tablet\":50,\"content_position\":\"center\",\"align_tablet\":\"center\",\"background_background\":\"classic\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=0a21634\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"f31c04\",\"elType\":\"widget\",\"settings\":{\"title\":\"Group 2 Schedule \",\"header_size\":\"h5\",\"align_tablet\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"12c436b6\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Monday,       11am-6pm\",\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"ed8911f\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Tuesday,  10am-7pm\",\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"099c7e0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Wednesday,   11am-5pm\",\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"aa4a2f9\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"__globals__\":{\"icon_color\":\"globals\\/colors?id=secondary\",\"text_color\":\"globals\\/colors?id=secondary\"},\"_element_width_tablet\":\"auto\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"669d3ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"22c27f3a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"44\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/pp3.jpg\"},\"width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":20,\"blur\":20,\"spread\":-10,\"color\":\"rgba(0, 0, 0, 0.09)\"},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_mask_image\":{\"id\":\"52\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/hex2.png\"},\"width_tablet\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"18\",\"left\":\"9\",\"isLinked\":false},\"jkit_transform_rotate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3951921f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Peter Wong\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\"},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"37dbdf1b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Math Teacher\",\"header_size\":\"h5\",\"align\":\"center\",\"_margin\":{\"unit\":\"%\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=24b2df3\",\"title_color\":\"globals\\/colors?id=5425a2a\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"239be40c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"25\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/13-copy.jpg\"},\"background_repeat\":\"repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002,\"sizes\":[]},\"shape_divider_top\":\"tilt\",\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":123,\"sizes\":[]},\"shape_divider_top_flip\":\"yes\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=0a21634\",\"shape_divider_top_color\":\"globals\\/colors?id=a00e83d\"},\"shape_divider_top_height_tablet\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3999fc1a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"ed8d556\",\"elType\":\"widget\",\"settings\":{\"title\":\"Join Our Education center Now\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"},\"align_tablet\":\"center\",\"_margin_mobile\":{\"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},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"271512f5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"28\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/c2.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":37.046999999999997},\"_position\":\"absolute\",\"_offset_x\":{\"size\":508,\"unit\":\"px\"},\"_offset_y\":{\"size\":-53,\"unit\":\"px\"},\"_z_index\":7,\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":89.066999999999993},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":30.067},\"_offset_x_tablet\":{\"size\":94,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":252,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-60,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":28,\"unit\":\"px\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"56c38063\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"14\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/c4.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":12.92},\"_position\":\"absolute\",\"_offset_x\":{\"size\":1290,\"unit\":\"px\"},\"_offset_y\":{\"size\":347,\"unit\":\"px\"},\"_z_index\":7,\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":42.299999999999997},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":118.3},\"_offset_x_tablet\":{\"size\":586,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":-72,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-396,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-43,\"unit\":\"px\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1aa99c93\",\"elType\":\"widget\",\"settings\":{\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"},\"align_tablet\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1ffcc767\",\"elType\":\"widget\",\"settings\":{\"text\":\"Sign Up Now\",\"align\":\"left\",\"_z_index\":9,\"__globals__\":{\"background_color\":\"globals\\/colors?id=5425a2a\",\"button_background_hover_color\":\"globals\\/colors?id=7f7112a\"},\"align_tablet\":\"center\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"397968e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"26\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/edge3.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":18.638000000000002},\"_offset_x\":{\"size\":172,\"unit\":\"px\"},\"_offset_y\":{\"size\":331,\"unit\":\"px\"},\"_z_index\":7,\"_margin\":{\"unit\":\"%\",\"top\":\"-60\",\"right\":\"45\",\"bottom\":\"0\",\"left\":\"-45\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":39,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"4e51cb13\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"-150\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"50\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-160\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"29eb4c1f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"46\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/cute-elementary-kids-with-books-at-school-2022-12-16-18-15-57-utc-copy.jpg\"},\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":\"51\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/liki.png\"},\"width_tablet\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":88,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6ba3f37b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"57\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/cute-elementary-kids-with-books-at-school-2022-12-16-18-15-57-utc2.png\"},\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_position\":\"absolute\",\"width_tablet\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":88,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(285,78,'_elementor_page_assets','a:0:{}'),(286,78,'_wp_page_template','elementor_header_footer'),(287,78,'envato_tk_source_kit','6'),(288,78,'envato_tk_source_index','7'),(289,80,'_wp_attached_file','2023/09/logoipsum-254.png'),(290,80,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:717;s:6:\"height\";i:167;s:4:\"file\";s:25:\"2023/09/logoipsum-254.png\";s:8:\"filesize\";i:10615;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:24:\"logoipsum-254-300x70.png\";s:5:\"width\";i:300;s:6:\"height\";i:70;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:7389;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:25:\"logoipsum-254-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4512;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(291,80,'_elementor_source_image_hash','2be6b8d157b923ca422067430dd62b338c959d5d'),(292,81,'_wp_attached_file','2023/09/logoipsum-254-1.png'),(293,81,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:717;s:6:\"height\";i:167;s:4:\"file\";s:27:\"2023/09/logoipsum-254-1.png\";s:8:\"filesize\";i:10615;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:26:\"logoipsum-254-1-300x70.png\";s:5:\"width\";i:300;s:6:\"height\";i:70;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:7389;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"logoipsum-254-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:4512;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(294,81,'_elementor_source_image_hash','2be6b8d157b923ca422067430dd62b338c959d5d'),(295,82,'_elementor_edit_mode','builder'),(296,82,'_elementor_template_type','page'),(297,82,'_elementor_version','3.15.3'),(298,82,'_elementor_data','[{\"id\":\"499de15e\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":\"7\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/2-copy.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"200\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=50714e7\",\"background_overlay_color\":\"globals\\/colors?id=ff9d88d\",\"shape_divider_bottom_color\":\"globals\\/colors?id=a00e83d\"},\"shape_divider_bottom\":\"tilt\",\"shape_divider_bottom_flip\":\"yes\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"12c552ee\",\"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},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"52ded600\",\"elType\":\"widget\",\"settings\":{\"title\":\"Service\",\"header_size\":\"h1\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1c38e1b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"14\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/c4.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":7.7080000000000002},\"_position\":\"absolute\",\"_offset_x\":{\"size\":285,\"unit\":\"px\"},\"_offset_x_tablet\":{\"size\":133,\"unit\":\"px\"},\"_offset_y\":{\"size\":-32,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-27,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":21,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-14,\"unit\":\"px\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1d318eab\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"15\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/c3.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":2.7629999999999999},\"_position\":\"absolute\",\"_offset_x\":{\"size\":357,\"unit\":\"px\"},\"_offset_x_tablet\":{\"size\":177,\"unit\":\"px\"},\"_offset_y\":{\"size\":71,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":41,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":47,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-38,\"unit\":\"px\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1c86a7bf\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"17\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/edge.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":5.8129999999999997},\"_position\":\"absolute\",\"_offset_x\":{\"size\":858,\"unit\":\"px\"},\"_offset_x_tablet\":{\"size\":518,\"unit\":\"px\"},\"_offset_y\":{\"size\":-41,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-14,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":291,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-3,\"unit\":\"px\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fbbfe8e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"200\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=a00e83d\",\"shape_divider_bottom_color\":\"globals\\/colors?id=50714e7\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"shape_divider_bottom\":\"tilt\",\"shape_divider_bottom_height_tablet\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"494aeb74\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_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\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1c5ac222\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Programs for excellence\",\"align_tablet\":\"center\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"60bd254d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"19\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/c1.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":22.148},\"_position\":\"absolute\",\"_offset_x\":{\"size\":470,\"unit\":\"px\"},\"_offset_y\":{\"size\":-54,\"unit\":\"px\"},\"_z_index\":7,\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":73.183000000000007},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":39.183},\"_offset_x_tablet\":{\"size\":590,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":254,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-80,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-51,\"unit\":\"px\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4237d8cd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"29\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/edge2.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":15.734},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-44,\"unit\":\"px\"},\"_offset_y\":{\"size\":26,\"unit\":\"px\"},\"_z_index\":7,\"_element_width_tablet\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":63.75},\"_offset_x_tablet\":{\"size\":28,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":2,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-23,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-18,\"unit\":\"px\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"266d45b0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Mauris at lacus semper, fermentum mi sed, rutrum nibh. Sed gravida elit ligula, sit amet venenatis diam hendrerit iaculis.<\\/p>\",\"align_tablet\":\"center\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6c0b9a66\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"28\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/c2.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":10.724},\"_position\":\"absolute\",\"_offset_x\":{\"size\":179,\"unit\":\"px\"},\"_offset_y\":{\"size\":408,\"unit\":\"px\"},\"_z_index\":7,\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":23.117000000000001},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":30.117000000000001},\"_offset_x_tablet\":{\"size\":644,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":246,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-10,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":235,\"unit\":\"px\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"449dd258\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover More\",\"align_tablet\":\"center\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"32029b40\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"345da93b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5f53cab9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6add00ec\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"40\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/grade.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_border\":\"none\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"5\",\"isLinked\":false},\"__globals__\":{\"_border_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=384fc29\"},\"jkit_transform_rotate\":{\"unit\":\"px\",\"size\":360,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"54845020\",\"elType\":\"widget\",\"settings\":{\"title\":\"Grade Boost\",\"header_size\":\"h5\",\"align\":\"center\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"45a3af33\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet.<\\/p>\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=f8cdd91\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"65d19764\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"644dd2de\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"45\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/chart.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_border\":\"none\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"5\",\"isLinked\":false},\"__globals__\":{\"_border_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=98e3e15\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4141181e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Skill Evaluation\",\"header_size\":\"h5\",\"align\":\"center\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"323f478a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet.<\\/p>\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=f8cdd91\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1f31c959\",\"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\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5c602b35\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"56198073\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"50\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/test-exam-sheet.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_border\":\"none\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"5\",\"isLinked\":false},\"__globals__\":{\"_border_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=7f7112a\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2b92fcfb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Mock Exam\",\"header_size\":\"h5\",\"align\":\"center\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3503b41d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet.<\\/p>\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=f8cdd91\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"563e97ad\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3f468953\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"54\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/schedule-sheet.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_border\":\"none\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"5\",\"isLinked\":false},\"__globals__\":{\"_border_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=4b29dee\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"769fb650\",\"elType\":\"widget\",\"settings\":{\"title\":\"Weekend Class\",\"header_size\":\"h5\",\"align\":\"center\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f11475a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet.<\\/p>\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=f8cdd91\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e137340\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=50714e7\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"47df0e99\",\"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},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"18336fb9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"align\":\"center\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6fa71433\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4448ba12\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":25,\"blur\":25,\"spread\":-10,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"18\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"18\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=5425a2a\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"425f5e9d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"56\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/alarm-clock.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"99\",\"right\":\"99\",\"bottom\":\"99\",\"left\":\"99\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6b6f79ac\",\"elType\":\"widget\",\"settings\":{\"title\":\"Timely Schedule\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17237a0b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec.<\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"3366aa63\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.070000000000000007,\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":25,\"blur\":25,\"spread\":-10,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"18\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=dafc007\",\"background_overlay_color\":\"globals\\/colors?id=faf5d15\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"68a6ae54\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"60\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/Diploma.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"99\",\"right\":\"99\",\"bottom\":\"99\",\"left\":\"99\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"79bb3234\",\"elType\":\"widget\",\"settings\":{\"title\":\"Course Certication\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"369cd95f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec.<\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"76800a21\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.070000000000000007,\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":25,\"blur\":25,\"spread\":-10,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"18\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=4b29dee\",\"background_overlay_color\":\"globals\\/colors?id=faf5d15\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5274c7fa\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"64\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/Male-Teacher.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"99\",\"right\":\"99\",\"bottom\":\"99\",\"left\":\"99\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cfe127b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Teacher\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"46e00900\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec.<\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"3850f815\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.070000000000000007,\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":25,\"blur\":25,\"spread\":-10,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"18\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"18\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=7f7112a\",\"background_overlay_color\":\"globals\\/colors?id=faf5d15\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3ab7d27f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"67\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/Trophy.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"99\",\"right\":\"99\",\"bottom\":\"99\",\"left\":\"99\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"769abe2f\",\"elType\":\"widget\",\"settings\":{\"title\":\"High Prestige\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5dfa7a2b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec.<\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"322da2d0\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"25\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/13-copy.jpg\"},\"background_repeat\":\"repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002,\"sizes\":[]},\"shape_divider_top\":\"tilt\",\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":123,\"sizes\":[]},\"shape_divider_top_flip\":\"yes\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=0a21634\",\"shape_divider_top_color\":\"globals\\/colors?id=50714e7\"},\"shape_divider_top_height_tablet\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6658b0c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"21d171ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"Join Our Education center Now\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"},\"align_tablet\":\"center\",\"_margin_mobile\":{\"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},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2c6e9bc7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"28\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/c2.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":37.046999999999997},\"_position\":\"absolute\",\"_offset_x\":{\"size\":495,\"unit\":\"px\"},\"_offset_y\":{\"size\":-56,\"unit\":\"px\"},\"_z_index\":7,\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":89.066999999999993},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":30.067},\"_offset_x_tablet\":{\"size\":94,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":252,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-60,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":28,\"unit\":\"px\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"44ecdbc0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"14\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/c4.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":12.92},\"_position\":\"absolute\",\"_offset_x\":{\"size\":1290,\"unit\":\"px\"},\"_offset_y\":{\"size\":347,\"unit\":\"px\"},\"_z_index\":7,\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":42.299999999999997},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":118.3},\"_offset_x_tablet\":{\"size\":586,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":-72,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-396,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-43,\"unit\":\"px\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"64980a4b\",\"elType\":\"widget\",\"settings\":{\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"},\"align_tablet\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"78e7eb9a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Sign Up Now\",\"align\":\"left\",\"_z_index\":9,\"__globals__\":{\"background_color\":\"globals\\/colors?id=5425a2a\",\"button_background_hover_color\":\"globals\\/colors?id=7f7112a\"},\"align_tablet\":\"center\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"2fd676bd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"26\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/edge3.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":18.638000000000002},\"_offset_x\":{\"size\":172,\"unit\":\"px\"},\"_offset_y\":{\"size\":331,\"unit\":\"px\"},\"_z_index\":7,\"_margin\":{\"unit\":\"%\",\"top\":\"-60\",\"right\":\"45\",\"bottom\":\"0\",\"left\":\"-45\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":39,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5394e747\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"-150\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"50\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-160\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"727d0bc6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"46\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/cute-elementary-kids-with-books-at-school-2022-12-16-18-15-57-utc-copy.jpg\"},\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":\"51\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/liki.png\"},\"width_tablet\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":88,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"77dbfb8e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"57\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/cute-elementary-kids-with-books-at-school-2022-12-16-18-15-57-utc2.png\"},\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_position\":\"absolute\",\"width_tablet\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":88,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(299,83,'_elementor_edit_mode','builder'),(300,83,'_elementor_template_type','page'),(301,83,'_elementor_version','3.15.3'),(302,83,'_elementor_data','[{\"id\":\"499de15e\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":\"7\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/2-copy.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"200\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=50714e7\",\"background_overlay_color\":\"globals\\/colors?id=ff9d88d\",\"shape_divider_bottom_color\":\"globals\\/colors?id=a00e83d\"},\"shape_divider_bottom\":\"tilt\",\"shape_divider_bottom_flip\":\"yes\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"12c552ee\",\"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},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"52ded600\",\"elType\":\"widget\",\"settings\":{\"title\":\"Service\",\"header_size\":\"h1\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1c38e1b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"14\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/c4.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":7.7080000000000002},\"_position\":\"absolute\",\"_offset_x\":{\"size\":285,\"unit\":\"px\"},\"_offset_x_tablet\":{\"size\":133,\"unit\":\"px\"},\"_offset_y\":{\"size\":-32,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-27,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":21,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-14,\"unit\":\"px\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1d318eab\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"15\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/c3.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":2.7629999999999999},\"_position\":\"absolute\",\"_offset_x\":{\"size\":357,\"unit\":\"px\"},\"_offset_x_tablet\":{\"size\":177,\"unit\":\"px\"},\"_offset_y\":{\"size\":71,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":41,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":47,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-38,\"unit\":\"px\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1c86a7bf\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"17\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/edge.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":5.8129999999999997},\"_position\":\"absolute\",\"_offset_x\":{\"size\":858,\"unit\":\"px\"},\"_offset_x_tablet\":{\"size\":518,\"unit\":\"px\"},\"_offset_y\":{\"size\":-41,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-14,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":291,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-3,\"unit\":\"px\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fbbfe8e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"200\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=a00e83d\",\"shape_divider_bottom_color\":\"globals\\/colors?id=50714e7\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"shape_divider_bottom\":\"tilt\",\"shape_divider_bottom_height_tablet\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"494aeb74\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_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\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1c5ac222\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Programs for excellence\",\"align_tablet\":\"center\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"60bd254d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"19\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/c1.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":22.148},\"_position\":\"absolute\",\"_offset_x\":{\"size\":470,\"unit\":\"px\"},\"_offset_y\":{\"size\":-54,\"unit\":\"px\"},\"_z_index\":7,\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":73.183000000000007},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":39.183},\"_offset_x_tablet\":{\"size\":590,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":254,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-80,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-51,\"unit\":\"px\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4237d8cd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"29\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/edge2.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":15.734},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-44,\"unit\":\"px\"},\"_offset_y\":{\"size\":26,\"unit\":\"px\"},\"_z_index\":7,\"_element_width_tablet\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":63.75},\"_offset_x_tablet\":{\"size\":28,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":2,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-23,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-18,\"unit\":\"px\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"266d45b0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Mauris at lacus semper, fermentum mi sed, rutrum nibh. Sed gravida elit ligula, sit amet venenatis diam hendrerit iaculis.<\\/p>\",\"align_tablet\":\"center\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6c0b9a66\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"28\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/c2.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":10.724},\"_position\":\"absolute\",\"_offset_x\":{\"size\":179,\"unit\":\"px\"},\"_offset_y\":{\"size\":408,\"unit\":\"px\"},\"_z_index\":7,\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":23.117000000000001},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":30.117000000000001},\"_offset_x_tablet\":{\"size\":644,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":246,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-10,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":235,\"unit\":\"px\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"449dd258\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover More\",\"align_tablet\":\"center\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"32029b40\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"345da93b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5f53cab9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6add00ec\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"40\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/grade.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_border\":\"none\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"5\",\"isLinked\":false},\"__globals__\":{\"_border_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=384fc29\"},\"jkit_transform_rotate\":{\"unit\":\"px\",\"size\":360,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"54845020\",\"elType\":\"widget\",\"settings\":{\"title\":\"Grade Boost\",\"header_size\":\"h5\",\"align\":\"center\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"45a3af33\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet.<\\/p>\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=f8cdd91\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"65d19764\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"644dd2de\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"45\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/chart.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_border\":\"none\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"5\",\"isLinked\":false},\"__globals__\":{\"_border_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=98e3e15\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4141181e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Skill Evaluation\",\"header_size\":\"h5\",\"align\":\"center\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"323f478a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet.<\\/p>\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=f8cdd91\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1f31c959\",\"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\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5c602b35\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"56198073\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"50\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/test-exam-sheet.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_border\":\"none\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"5\",\"isLinked\":false},\"__globals__\":{\"_border_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=7f7112a\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2b92fcfb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Mock Exam\",\"header_size\":\"h5\",\"align\":\"center\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3503b41d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet.<\\/p>\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=f8cdd91\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"563e97ad\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3f468953\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"54\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/schedule-sheet.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_border\":\"none\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"5\",\"isLinked\":false},\"__globals__\":{\"_border_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=4b29dee\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"769fb650\",\"elType\":\"widget\",\"settings\":{\"title\":\"Weekend Class\",\"header_size\":\"h5\",\"align\":\"center\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f11475a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet.<\\/p>\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=f8cdd91\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e137340\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=50714e7\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"47df0e99\",\"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},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"18336fb9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"align\":\"center\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6fa71433\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4448ba12\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":25,\"blur\":25,\"spread\":-10,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"18\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"18\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=5425a2a\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"425f5e9d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"56\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/alarm-clock.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"99\",\"right\":\"99\",\"bottom\":\"99\",\"left\":\"99\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6b6f79ac\",\"elType\":\"widget\",\"settings\":{\"title\":\"Timely Schedule\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17237a0b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec.<\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"3366aa63\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.070000000000000007,\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":25,\"blur\":25,\"spread\":-10,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"18\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=dafc007\",\"background_overlay_color\":\"globals\\/colors?id=faf5d15\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"68a6ae54\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"60\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/Diploma.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"99\",\"right\":\"99\",\"bottom\":\"99\",\"left\":\"99\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"79bb3234\",\"elType\":\"widget\",\"settings\":{\"title\":\"Course Certication\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"369cd95f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec.<\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"76800a21\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.070000000000000007,\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":25,\"blur\":25,\"spread\":-10,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"18\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=4b29dee\",\"background_overlay_color\":\"globals\\/colors?id=faf5d15\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5274c7fa\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"64\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/Male-Teacher.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"99\",\"right\":\"99\",\"bottom\":\"99\",\"left\":\"99\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cfe127b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Teacher\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"46e00900\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec.<\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"3850f815\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.070000000000000007,\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":25,\"blur\":25,\"spread\":-10,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"18\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"18\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=7f7112a\",\"background_overlay_color\":\"globals\\/colors?id=faf5d15\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3ab7d27f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"67\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/Trophy.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"99\",\"right\":\"99\",\"bottom\":\"99\",\"left\":\"99\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"769abe2f\",\"elType\":\"widget\",\"settings\":{\"title\":\"High Prestige\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5dfa7a2b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec.<\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"322da2d0\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"25\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/13-copy.jpg\"},\"background_repeat\":\"repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002,\"sizes\":[]},\"shape_divider_top\":\"tilt\",\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":123,\"sizes\":[]},\"shape_divider_top_flip\":\"yes\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=0a21634\",\"shape_divider_top_color\":\"globals\\/colors?id=50714e7\"},\"shape_divider_top_height_tablet\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6658b0c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"21d171ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"Join Our Education center Now\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"},\"align_tablet\":\"center\",\"_margin_mobile\":{\"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},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2c6e9bc7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"28\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/c2.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":37.046999999999997},\"_position\":\"absolute\",\"_offset_x\":{\"size\":495,\"unit\":\"px\"},\"_offset_y\":{\"size\":-56,\"unit\":\"px\"},\"_z_index\":7,\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":89.066999999999993},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":30.067},\"_offset_x_tablet\":{\"size\":94,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":252,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-60,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":28,\"unit\":\"px\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"44ecdbc0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"14\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/c4.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":12.92},\"_position\":\"absolute\",\"_offset_x\":{\"size\":1290,\"unit\":\"px\"},\"_offset_y\":{\"size\":347,\"unit\":\"px\"},\"_z_index\":7,\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":42.299999999999997},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":118.3},\"_offset_x_tablet\":{\"size\":586,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":-72,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-396,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-43,\"unit\":\"px\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"64980a4b\",\"elType\":\"widget\",\"settings\":{\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"},\"align_tablet\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"78e7eb9a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Sign Up Now\",\"align\":\"left\",\"_z_index\":9,\"__globals__\":{\"background_color\":\"globals\\/colors?id=5425a2a\",\"button_background_hover_color\":\"globals\\/colors?id=7f7112a\"},\"align_tablet\":\"center\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"2fd676bd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"26\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/edge3.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":18.638000000000002},\"_offset_x\":{\"size\":172,\"unit\":\"px\"},\"_offset_y\":{\"size\":331,\"unit\":\"px\"},\"_z_index\":7,\"_margin\":{\"unit\":\"%\",\"top\":\"-60\",\"right\":\"45\",\"bottom\":\"0\",\"left\":\"-45\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":39,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5394e747\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"-150\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"50\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-160\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"727d0bc6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"46\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/cute-elementary-kids-with-books-at-school-2022-12-16-18-15-57-utc-copy.jpg\"},\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":\"51\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/liki.png\"},\"width_tablet\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":88,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"77dbfb8e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"57\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/cute-elementary-kids-with-books-at-school-2022-12-16-18-15-57-utc2.png\"},\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_position\":\"absolute\",\"width_tablet\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":88,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(303,82,'_elementor_page_assets','a:0:{}'),(304,82,'_wp_page_template','elementor_header_footer'),(305,82,'envato_tk_source_kit','6'),(306,82,'envato_tk_source_index','3'),(307,84,'_elementor_edit_mode','builder'),(308,84,'_elementor_template_type','page'),(309,84,'_elementor_version','3.15.3'),(310,84,'_elementor_data','[{\"id\":\"223e4cf1\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":\"7\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/2-copy.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"200\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=50714e7\",\"background_overlay_color\":\"globals\\/colors?id=ff9d88d\",\"shape_divider_bottom_color\":\"globals\\/colors?id=50714e7\"},\"shape_divider_bottom\":\"tilt\",\"shape_divider_bottom_flip\":\"yes\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7fb42906\",\"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},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7417f15f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h1\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"69b61bbc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"14\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/c4.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":7.7080000000000002},\"_position\":\"absolute\",\"_offset_x\":{\"size\":285,\"unit\":\"px\"},\"_offset_x_tablet\":{\"size\":133,\"unit\":\"px\"},\"_offset_y\":{\"size\":-32,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-27,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":21,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-14,\"unit\":\"px\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5a0dedc1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"15\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/c3.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":2.7629999999999999},\"_position\":\"absolute\",\"_offset_x\":{\"size\":357,\"unit\":\"px\"},\"_offset_x_tablet\":{\"size\":177,\"unit\":\"px\"},\"_offset_y\":{\"size\":71,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":41,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":47,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-38,\"unit\":\"px\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4d312184\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"17\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/edge.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":5.8129999999999997},\"_position\":\"absolute\",\"_offset_x\":{\"size\":858,\"unit\":\"px\"},\"_offset_x_tablet\":{\"size\":518,\"unit\":\"px\"},\"_offset_y\":{\"size\":-41,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-14,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":291,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-3,\"unit\":\"px\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"196a6ccc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.69999999999999996,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":175,\"sizes\":[]},\"shape_divider_top_flip\":\"yes\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=50714e7\",\"background_overlay_color\":\"\"},\"shape_divider_top_height_tablet\":{\"unit\":\"px\",\"size\":69,\"sizes\":[]},\"shape_divider_top_height_mobile\":{\"unit\":\"px\",\"size\":51,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"140\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"background_color\":\"#F8F8F8\",\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"330f6fe8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42.542999999999999,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"content_position_tablet\":\"center\",\"align_tablet\":\"center\",\"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\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"51cccdb6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"23\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/aged-teacher-2021-09-24-03-26-41-utc.jpg\"},\"opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-125\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=dafc007\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"150\",\"bottom\":\"0\",\"left\":\"150\",\"isLinked\":false},\"_margin_mobile\":{\"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},\"_element_width_tablet\":\"auto\",\"_z_index_mobile\":6,\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"77814cc5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"32\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/aged-teacher-2021-09-24-03-26-41-utc-2.png\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-125\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-2,\"unit\":\"px\"},\"_offset_y\":{\"size\":1,\"unit\":\"px\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"150\",\"bottom\":\"0\",\"left\":\"150\",\"isLinked\":false},\"_margin_mobile\":{\"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},\"_z_index_mobile\":7,\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5bd1d596\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":57.457000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"75\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"423a254\",\"elType\":\"widget\",\"settings\":{\"title\":\"Preparing Our Children\\u2019s Bright Future\",\"align_tablet\":\"center\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"182d4eb0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"29\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/edge2.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":13.539999999999999},\"_position\":\"absolute\",\"_offset_x\":{\"size\":24,\"unit\":\"px\"},\"_offset_y\":{\"size\":-38,\"unit\":\"px\"},\"_z_index\":7,\"_element_width_tablet\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":70.582999999999998},\"_offset_x_tablet\":{\"size\":14,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":-4,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":8,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":12,\"unit\":\"px\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"113aab03\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec ultrices purus nec sollicitudin eleifend. In hac habitasse platea dictumst.<\\/p>\",\"align_tablet\":\"center\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3ae70ab4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-line-chart-light\",\"library\":\"jkiticon\"},\"view\":\"stacked\",\"title_text\":\"Grade Improvement\",\"description_text\":\" Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"position\":\"left\",\"icon_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=d50cf18\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"primary_color\":\"globals\\/colors?id=7f7112a\",\"description_typography_typography\":\"globals\\/typography?id=f8cdd91\"},\"icon_space_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"text_align_tablet\":\"left\",\"text_align_mobile\":\"center\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_element_width_tablet\":\"auto\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"3151559b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-open-book-light\",\"library\":\"jkiticon\"},\"view\":\"stacked\",\"title_text\":\"Exam Preparation\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing.\",\"position\":\"left\",\"secondary_color\":\"#FFFFFF\",\"icon_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Exo 2\",\"title_typography_font_size\":{\"unit\":\"rem\",\"size\":1.6000000000000001,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.2,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2,\"sizes\":[]},\"title_typography_font_weight\":\"800\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=d50cf18\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"primary_color\":\"globals\\/colors?id=dafc007\",\"description_typography_typography\":\"globals\\/typography?id=f8cdd91\"},\"icon_space_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_element_width_tablet\":\"auto\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"11779894\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-users\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Social Development\",\"description_text\":\"Donec et massa sit amet augue laoreet venenatis id et urna.\",\"position\":\"left\",\"icon_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=d50cf18\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"primary_color\":\"globals\\/colors?id=0a21634\",\"description_typography_typography\":\"globals\\/typography?id=f8cdd91\"},\"icon_space_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_tablet\":\"auto\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"75996510\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"19\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/c1.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.43},\"_position\":\"absolute\",\"_offset_x\":{\"size\":538,\"unit\":\"px\"},\"_offset_y\":{\"size\":-239,\"unit\":\"px\"},\"_z_index\":7,\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":116.93300000000001},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":150.93299999999999},\"_offset_x_tablet\":{\"size\":576,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":-61,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-606,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-475,\"unit\":\"px\"},\"_z_index_mobile\":1,\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3d8639d4\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":\"47\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/boy-at-lesson-2021-09-24-03-25-58-utc-copy.jpg\"},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.81000000000000005,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=5425a2a\"},\"background_position\":\"center center\",\"overflow\":\"hidden\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"49fcd4f1\",\"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},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"37251485\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our vision is every child is safe, inspired, challenged, empowered.\",\"align\":\"center\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"58148fa2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"17\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/edge.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":9.5749999999999993},\"_position\":\"absolute\",\"_offset_x\":{\"size\":1129,\"unit\":\"px\"},\"_offset_y\":{\"size\":-59,\"unit\":\"px\"},\"_z_index\":7,\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":52.017000000000003},\"_offset_x_mobile\":{\"size\":249,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-19,\"unit\":\"px\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"54e83457\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"15\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/c3.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":8.1790000000000003},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-12,\"unit\":\"px\"},\"_offset_y\":{\"size\":-28,\"unit\":\"px\"},\"_z_index\":7,\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":88.516999999999996},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":130.517},\"_offset_x_tablet\":{\"size\":-18,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":-106,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-72,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":70,\"unit\":\"px\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"440d2d27\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Integer efficitur ligula ipsum, at vulputate mi fermentum sit amet. Sed pulvinar rutrum commodo. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean vitae tortor nec lectus mattis congue id sed tortor.<\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1903d664\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"14\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/c4.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":3.73},\"_position\":\"absolute\",\"_offset_x\":{\"size\":81,\"unit\":\"px\"},\"_offset_y\":{\"size\":91,\"unit\":\"px\"},\"_z_index\":7,\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_offset_x_tablet\":{\"size\":616,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":10,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":101,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":30,\"unit\":\"px\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e3b5132\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"728ef16a\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"20\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=50714e7\"},\"overflow\":\"hidden\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"125\",\"left\":\"20\",\"isLinked\":false},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6dc6125f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"_inline_size_tablet\":100,\"_inline_size_mobile\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6b58def0\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"57289cc8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":12,\"blur\":12,\"spread\":-6,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=bb22fe7\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7e0b73a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"62\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/logoipsum-265.png\"},\"width_mobile\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6304d509\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":12,\"blur\":12,\"spread\":-6,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=80e8ddb\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7c21fe6c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"66\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/logoipsum-264.png\"},\"width_mobile\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"416e5ab0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":12,\"blur\":12,\"spread\":-6,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=d38674d\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"798be0a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"69\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/logoipsum-262.png\"},\"width_mobile\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"548be616\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4e7127c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":12,\"blur\":12,\"spread\":-6,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=d38674d\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2ef48302\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"74\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/logoipsum-261.png\"},\"width_mobile\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"1ce04f26\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":12,\"blur\":12,\"spread\":-6,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=a00e83d\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"622116ec\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"76\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/logoipsum-259.png\"},\"width_mobile\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"102a10c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":12,\"blur\":12,\"spread\":-6,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=80e8ddb\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4d85969e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"80\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/logoipsum-254.png\"},\"width_mobile\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7ab09a89\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5a73e39a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Trusted Partners\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"align_tablet\":\"center\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4f44aba4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Donec hendrerit nibh in lectus molestie, id bibendum orci hendrerit. Curabitur euismod ante finibus nibh suscipit, vitae vehicula eros venenatis.<\\/p>\",\"align_tablet\":\"center\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"320d8475\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"25\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/13-copy.jpg\"},\"background_repeat\":\"repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002,\"sizes\":[]},\"shape_divider_top\":\"tilt\",\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":123,\"sizes\":[]},\"shape_divider_top_flip\":\"yes\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=0a21634\",\"shape_divider_top_color\":\"globals\\/colors?id=50714e7\"},\"shape_divider_top_height_tablet\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2487e244\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"16c16ac4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Join Our Education center Now\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"},\"align_tablet\":\"center\",\"_margin_mobile\":{\"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},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"46eda645\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"28\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/c2.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":37.046999999999997},\"_position\":\"absolute\",\"_offset_x\":{\"size\":508,\"unit\":\"px\"},\"_offset_y\":{\"size\":-53,\"unit\":\"px\"},\"_z_index\":7,\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":89.066999999999993},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":30.067},\"_offset_x_tablet\":{\"size\":94,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":252,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-60,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":28,\"unit\":\"px\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"63ce0a32\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"14\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/c4.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":12.92},\"_position\":\"absolute\",\"_offset_x\":{\"size\":1290,\"unit\":\"px\"},\"_offset_y\":{\"size\":347,\"unit\":\"px\"},\"_z_index\":7,\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":42.299999999999997},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":118.3},\"_offset_x_tablet\":{\"size\":586,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":-72,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-396,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-43,\"unit\":\"px\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3daab7b7\",\"elType\":\"widget\",\"settings\":{\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"},\"align_tablet\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"656764d9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Sign Up Now\",\"align\":\"left\",\"_z_index\":9,\"__globals__\":{\"background_color\":\"globals\\/colors?id=5425a2a\",\"button_background_hover_color\":\"globals\\/colors?id=7f7112a\"},\"align_tablet\":\"center\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"59341b14\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"26\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/edge3.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":18.638000000000002},\"_offset_x\":{\"size\":172,\"unit\":\"px\"},\"_offset_y\":{\"size\":331,\"unit\":\"px\"},\"_z_index\":7,\"_margin\":{\"unit\":\"%\",\"top\":\"-60\",\"right\":\"45\",\"bottom\":\"0\",\"left\":\"-45\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":39,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3ea2360c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"-150\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"50\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-160\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2971eb9e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"46\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/cute-elementary-kids-with-books-at-school-2022-12-16-18-15-57-utc-copy.jpg\"},\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":\"51\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/liki.png\"},\"width_tablet\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":88,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5928ea9b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"57\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/cute-elementary-kids-with-books-at-school-2022-12-16-18-15-57-utc2.png\"},\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_position\":\"absolute\",\"width_tablet\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":88,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(311,85,'_elementor_edit_mode','builder'),(312,85,'_elementor_template_type','page'),(313,86,'_elementor_edit_mode','builder'),(314,86,'_elementor_template_type','page'),(315,86,'_elementor_version','3.15.3'),(316,86,'_elementor_data','[{\"id\":\"223e4cf1\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":\"7\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/2-copy.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"200\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=50714e7\",\"background_overlay_color\":\"globals\\/colors?id=ff9d88d\",\"shape_divider_bottom_color\":\"globals\\/colors?id=50714e7\"},\"shape_divider_bottom\":\"tilt\",\"shape_divider_bottom_flip\":\"yes\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7fb42906\",\"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},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7417f15f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h1\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"69b61bbc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"14\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/c4.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":7.7080000000000002},\"_position\":\"absolute\",\"_offset_x\":{\"size\":285,\"unit\":\"px\"},\"_offset_x_tablet\":{\"size\":133,\"unit\":\"px\"},\"_offset_y\":{\"size\":-32,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-27,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":21,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-14,\"unit\":\"px\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5a0dedc1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"15\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/c3.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":2.7629999999999999},\"_position\":\"absolute\",\"_offset_x\":{\"size\":357,\"unit\":\"px\"},\"_offset_x_tablet\":{\"size\":177,\"unit\":\"px\"},\"_offset_y\":{\"size\":71,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":41,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":47,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-38,\"unit\":\"px\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4d312184\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"17\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/edge.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":5.8129999999999997},\"_position\":\"absolute\",\"_offset_x\":{\"size\":858,\"unit\":\"px\"},\"_offset_x_tablet\":{\"size\":518,\"unit\":\"px\"},\"_offset_y\":{\"size\":-41,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-14,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":291,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-3,\"unit\":\"px\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"196a6ccc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.69999999999999996,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":175,\"sizes\":[]},\"shape_divider_top_flip\":\"yes\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=50714e7\",\"background_overlay_color\":\"\"},\"shape_divider_top_height_tablet\":{\"unit\":\"px\",\"size\":69,\"sizes\":[]},\"shape_divider_top_height_mobile\":{\"unit\":\"px\",\"size\":51,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"140\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"background_color\":\"#F8F8F8\",\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"330f6fe8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42.542999999999999,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"content_position_tablet\":\"center\",\"align_tablet\":\"center\",\"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\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"51cccdb6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"23\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/aged-teacher-2021-09-24-03-26-41-utc.jpg\"},\"opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-125\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=dafc007\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"150\",\"bottom\":\"0\",\"left\":\"150\",\"isLinked\":false},\"_margin_mobile\":{\"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},\"_element_width_tablet\":\"auto\",\"_z_index_mobile\":6,\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"77814cc5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"32\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/aged-teacher-2021-09-24-03-26-41-utc-2.png\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-125\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-2,\"unit\":\"px\"},\"_offset_y\":{\"size\":1,\"unit\":\"px\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"150\",\"bottom\":\"0\",\"left\":\"150\",\"isLinked\":false},\"_margin_mobile\":{\"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},\"_z_index_mobile\":7,\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5bd1d596\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":57.457000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"75\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"423a254\",\"elType\":\"widget\",\"settings\":{\"title\":\"Preparing Our Children\\u2019s Bright Future\",\"align_tablet\":\"center\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"182d4eb0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"29\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/edge2.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":13.539999999999999},\"_position\":\"absolute\",\"_offset_x\":{\"size\":24,\"unit\":\"px\"},\"_offset_y\":{\"size\":-38,\"unit\":\"px\"},\"_z_index\":7,\"_element_width_tablet\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":70.582999999999998},\"_offset_x_tablet\":{\"size\":14,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":-4,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":8,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":12,\"unit\":\"px\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"113aab03\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec ultrices purus nec sollicitudin eleifend. In hac habitasse platea dictumst.<\\/p>\",\"align_tablet\":\"center\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3ae70ab4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-line-chart-light\",\"library\":\"jkiticon\"},\"view\":\"stacked\",\"title_text\":\"Grade Improvement\",\"description_text\":\" Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"position\":\"left\",\"icon_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=d50cf18\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"primary_color\":\"globals\\/colors?id=7f7112a\",\"description_typography_typography\":\"globals\\/typography?id=f8cdd91\"},\"icon_space_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"text_align_tablet\":\"left\",\"text_align_mobile\":\"center\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_element_width_tablet\":\"auto\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"3151559b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-open-book-light\",\"library\":\"jkiticon\"},\"view\":\"stacked\",\"title_text\":\"Exam Preparation\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing.\",\"position\":\"left\",\"secondary_color\":\"#FFFFFF\",\"icon_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Exo 2\",\"title_typography_font_size\":{\"unit\":\"rem\",\"size\":1.6000000000000001,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.2,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2,\"sizes\":[]},\"title_typography_font_weight\":\"800\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=d50cf18\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"primary_color\":\"globals\\/colors?id=dafc007\",\"description_typography_typography\":\"globals\\/typography?id=f8cdd91\"},\"icon_space_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_element_width_tablet\":\"auto\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"11779894\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-users\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Social Development\",\"description_text\":\"Donec et massa sit amet augue laoreet venenatis id et urna.\",\"position\":\"left\",\"icon_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=d50cf18\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"primary_color\":\"globals\\/colors?id=0a21634\",\"description_typography_typography\":\"globals\\/typography?id=f8cdd91\"},\"icon_space_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_tablet\":\"auto\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"75996510\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"19\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/c1.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.43},\"_position\":\"absolute\",\"_offset_x\":{\"size\":538,\"unit\":\"px\"},\"_offset_y\":{\"size\":-239,\"unit\":\"px\"},\"_z_index\":7,\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":116.93300000000001},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":150.93299999999999},\"_offset_x_tablet\":{\"size\":576,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":-61,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-606,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-475,\"unit\":\"px\"},\"_z_index_mobile\":1,\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3d8639d4\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":\"47\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/boy-at-lesson-2021-09-24-03-25-58-utc-copy.jpg\"},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.81000000000000005,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=5425a2a\"},\"background_position\":\"center center\",\"overflow\":\"hidden\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"49fcd4f1\",\"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},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"37251485\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our vision is every child is safe, inspired, challenged, empowered.\",\"align\":\"center\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"58148fa2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"17\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/edge.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":9.5749999999999993},\"_position\":\"absolute\",\"_offset_x\":{\"size\":1129,\"unit\":\"px\"},\"_offset_y\":{\"size\":-59,\"unit\":\"px\"},\"_z_index\":7,\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":52.017000000000003},\"_offset_x_mobile\":{\"size\":249,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-19,\"unit\":\"px\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"54e83457\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"15\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/c3.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":8.1790000000000003},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-12,\"unit\":\"px\"},\"_offset_y\":{\"size\":-28,\"unit\":\"px\"},\"_z_index\":7,\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":88.516999999999996},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":130.517},\"_offset_x_tablet\":{\"size\":-18,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":-106,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-72,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":70,\"unit\":\"px\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"440d2d27\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Integer efficitur ligula ipsum, at vulputate mi fermentum sit amet. Sed pulvinar rutrum commodo. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean vitae tortor nec lectus mattis congue id sed tortor.<\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1903d664\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"14\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/c4.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":3.73},\"_position\":\"absolute\",\"_offset_x\":{\"size\":81,\"unit\":\"px\"},\"_offset_y\":{\"size\":91,\"unit\":\"px\"},\"_z_index\":7,\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_offset_x_tablet\":{\"size\":616,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":10,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":101,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":30,\"unit\":\"px\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e3b5132\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"728ef16a\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"20\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=50714e7\"},\"overflow\":\"hidden\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"125\",\"left\":\"20\",\"isLinked\":false},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6dc6125f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"_inline_size_tablet\":100,\"_inline_size_mobile\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6b58def0\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"57289cc8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":12,\"blur\":12,\"spread\":-6,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=bb22fe7\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7e0b73a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"62\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/logoipsum-265.png\"},\"width_mobile\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6304d509\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":12,\"blur\":12,\"spread\":-6,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=80e8ddb\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7c21fe6c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"66\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/logoipsum-264.png\"},\"width_mobile\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"416e5ab0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":12,\"blur\":12,\"spread\":-6,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=d38674d\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"798be0a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"69\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/logoipsum-262.png\"},\"width_mobile\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"548be616\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4e7127c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":12,\"blur\":12,\"spread\":-6,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=d38674d\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2ef48302\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"74\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/logoipsum-261.png\"},\"width_mobile\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"1ce04f26\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":12,\"blur\":12,\"spread\":-6,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=a00e83d\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"622116ec\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"76\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/logoipsum-259.png\"},\"width_mobile\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"102a10c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":12,\"blur\":12,\"spread\":-6,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=80e8ddb\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4d85969e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"80\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/logoipsum-254.png\"},\"width_mobile\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7ab09a89\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5a73e39a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Trusted Partners\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"align_tablet\":\"center\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4f44aba4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Donec hendrerit nibh in lectus molestie, id bibendum orci hendrerit. Curabitur euismod ante finibus nibh suscipit, vitae vehicula eros venenatis.<\\/p>\",\"align_tablet\":\"center\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"320d8475\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"25\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/13-copy.jpg\"},\"background_repeat\":\"repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002,\"sizes\":[]},\"shape_divider_top\":\"tilt\",\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":123,\"sizes\":[]},\"shape_divider_top_flip\":\"yes\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=0a21634\",\"shape_divider_top_color\":\"globals\\/colors?id=50714e7\"},\"shape_divider_top_height_tablet\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2487e244\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"16c16ac4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Join Our Education center Now\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"},\"align_tablet\":\"center\",\"_margin_mobile\":{\"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},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"46eda645\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"28\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/c2.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":37.046999999999997},\"_position\":\"absolute\",\"_offset_x\":{\"size\":508,\"unit\":\"px\"},\"_offset_y\":{\"size\":-53,\"unit\":\"px\"},\"_z_index\":7,\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":89.066999999999993},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":30.067},\"_offset_x_tablet\":{\"size\":94,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":252,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-60,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":28,\"unit\":\"px\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"63ce0a32\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"14\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/c4.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":12.92},\"_position\":\"absolute\",\"_offset_x\":{\"size\":1290,\"unit\":\"px\"},\"_offset_y\":{\"size\":347,\"unit\":\"px\"},\"_z_index\":7,\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":42.299999999999997},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":118.3},\"_offset_x_tablet\":{\"size\":586,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":-72,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-396,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-43,\"unit\":\"px\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3daab7b7\",\"elType\":\"widget\",\"settings\":{\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"},\"align_tablet\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"656764d9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Sign Up Now\",\"align\":\"left\",\"_z_index\":9,\"__globals__\":{\"background_color\":\"globals\\/colors?id=5425a2a\",\"button_background_hover_color\":\"globals\\/colors?id=7f7112a\"},\"align_tablet\":\"center\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"59341b14\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"26\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/edge3.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":18.638000000000002},\"_offset_x\":{\"size\":172,\"unit\":\"px\"},\"_offset_y\":{\"size\":331,\"unit\":\"px\"},\"_z_index\":7,\"_margin\":{\"unit\":\"%\",\"top\":\"-60\",\"right\":\"45\",\"bottom\":\"0\",\"left\":\"-45\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":39,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3ea2360c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"-150\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"50\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-160\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2971eb9e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"46\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/cute-elementary-kids-with-books-at-school-2022-12-16-18-15-57-utc-copy.jpg\"},\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":\"51\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/liki.png\"},\"width_tablet\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":88,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5928ea9b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"57\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/cute-elementary-kids-with-books-at-school-2022-12-16-18-15-57-utc2.png\"},\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_position\":\"absolute\",\"width_tablet\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":88,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(317,85,'_elementor_version','3.15.3');
INSERT INTO `wp_postmeta` VALUES (318,85,'_elementor_data','[{\"id\":\"31f9d985\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":\"7\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/2-copy.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"200\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"background_overlay_color\":\"globals\\/colors?id=ff9d88d\",\"shape_divider_bottom_color\":\"globals\\/colors?id=a00e83d\"},\"shape_divider_bottom\":\"tilt\",\"shape_divider_bottom_flip\":\"yes\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_color\":\"#DC434C\",\"shape_divider_bottom_color\":\"#F8F8F8\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"10954b0\",\"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},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"70577e4b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Teacher\",\"header_size\":\"h1\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"38a49cbb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"14\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/c4.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":7.7080000000000002},\"_position\":\"absolute\",\"_offset_x\":{\"size\":285,\"unit\":\"px\"},\"_offset_x_tablet\":{\"size\":133,\"unit\":\"px\"},\"_offset_y\":{\"size\":-32,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-27,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":21,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-14,\"unit\":\"px\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3c3fc44e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"15\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/c3.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":2.7629999999999999},\"_position\":\"absolute\",\"_offset_x\":{\"size\":357,\"unit\":\"px\"},\"_offset_x_tablet\":{\"size\":177,\"unit\":\"px\"},\"_offset_y\":{\"size\":71,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":41,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":47,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-38,\"unit\":\"px\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8f1cdc1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"17\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/edge.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":5.8129999999999997},\"_position\":\"absolute\",\"_offset_x\":{\"size\":858,\"unit\":\"px\"},\"_offset_x_tablet\":{\"size\":518,\"unit\":\"px\"},\"_offset_y\":{\"size\":-41,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-14,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":291,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-3,\"unit\":\"px\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3aae79f0\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=a00e83d\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2a7b44bf\",\"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},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4eaac904\",\"elType\":\"widget\",\"settings\":{\"title\":\"Meet our certified teacher\",\"align\":\"center\",\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"45da633a\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2ef8cebf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"71474678\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"30\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/pp1.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Harry Smith\",\"sg_member_position\":\"English Teacher\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"4c2d797\",\"sg_social_normal_background_background_background\":\"classic\",\"__globals__\":{\"sg_social_normal_background_background_color\":\"globals\\/colors?id=5425a2a\"},\"sg_social_normal_color\":\"\",\"sg_social_normal_background_background_color\":\"\",\"sg_social_normal_background_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_color_b\":\"#f2295b\",\"sg_social_normal_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_normal_background_background_gradient_type\":\"linear\",\"sg_social_normal_background_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"sg_social_normal_background_background_gradient_position\":\"center center\",\"sg_social_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_normal_background_background_position\":\"\",\"sg_social_normal_background_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_attachment\":\"\",\"sg_social_normal_background_background_repeat\":\"\",\"sg_social_normal_background_background_size\":\"\",\"sg_social_normal_background_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_normal_background_background_video_link\":\"\",\"sg_social_normal_background_background_video_start\":\"\",\"sg_social_normal_background_background_video_end\":\"\",\"sg_social_normal_background_background_play_once\":\"\",\"sg_social_normal_background_background_play_on_mobile\":\"\",\"sg_social_normal_background_background_privacy_mode\":\"\",\"sg_social_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_normal_background_background_slideshow_gallery\":[],\"sg_social_normal_background_background_slideshow_loop\":\"yes\",\"sg_social_normal_background_background_slideshow_slide_duration\":5000,\"sg_social_normal_background_background_slideshow_slide_transition\":\"fade\",\"sg_social_normal_background_background_slideshow_transition_duration\":500,\"sg_social_normal_background_background_slideshow_background_size\":\"\",\"sg_social_normal_background_background_slideshow_background_position\":\"\",\"sg_social_normal_background_background_slideshow_lazyload\":\"\",\"sg_social_normal_background_background_slideshow_ken_burns\":\"\",\"sg_social_normal_background_background_slideshow_ken_burns_zoom_direction\":\"in\",\"sg_social_normal_border_border_border\":\"\",\"sg_social_normal_border_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"sg_social_normal_border_border_color\":\"\",\"sg_social_normal_boxshadow_box_shadow_box_shadow_type\":\"\",\"sg_social_normal_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"sg_social_normal_boxshadow_box_shadow_box_shadow_position\":\" \",\"sg_social_normal_textshadow_text_shadow_text_shadow_type\":\"\",\"sg_social_normal_textshadow_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"sg_social_hover_color\":\"\",\"sg_social_hover_background_background_background\":\"\",\"sg_social_hover_background_background_color\":\"\",\"sg_social_hover_background_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_color_b\":\"#f2295b\",\"sg_social_hover_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_hover_background_background_gradient_type\":\"linear\",\"sg_social_hover_background_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"sg_social_hover_background_background_gradient_position\":\"center center\",\"sg_social_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_hover_background_background_position\":\"\",\"sg_social_hover_background_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_attachment\":\"\",\"sg_social_hover_background_background_repeat\":\"\",\"sg_social_hover_background_background_size\":\"\",\"sg_social_hover_background_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_hover_background_background_video_link\":\"\",\"sg_social_hover_background_background_video_start\":\"\",\"sg_social_hover_background_background_video_end\":\"\",\"sg_social_hover_background_background_play_once\":\"\",\"sg_social_hover_background_background_play_on_mobile\":\"\",\"sg_social_hover_background_background_privacy_mode\":\"\",\"sg_social_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_hover_background_background_slideshow_gallery\":[],\"sg_social_hover_background_background_slideshow_loop\":\"yes\",\"sg_social_hover_background_background_slideshow_slide_duration\":5000,\"sg_social_hover_background_background_slideshow_slide_transition\":\"fade\",\"sg_social_hover_background_background_slideshow_transition_duration\":500,\"sg_social_hover_background_background_slideshow_background_size\":\"\",\"sg_social_hover_background_background_slideshow_background_position\":\"\",\"sg_social_hover_background_background_slideshow_lazyload\":\"\",\"sg_social_hover_background_background_slideshow_ken_burns\":\"\",\"sg_social_hover_background_background_slideshow_ken_burns_zoom_direction\":\"in\",\"sg_social_hover_border_border_border\":\"\",\"sg_social_hover_border_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"sg_social_hover_border_border_color\":\"\",\"sg_social_hover_boxshadow_box_shadow_box_shadow_type\":\"\",\"sg_social_hover_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"sg_social_hover_boxshadow_box_shadow_box_shadow_position\":\" \",\"sg_social_hover_textshadow_text_shadow_text_shadow_type\":\"\",\"sg_social_hover_textshadow_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"}},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"5d7eb15\",\"sg_social_normal_background_background_background\":\"classic\",\"__globals__\":{\"sg_social_normal_background_background_color\":\"globals\\/colors?id=5425a2a\"},\"sg_social_normal_color\":\"\",\"sg_social_normal_background_background_color\":\"\",\"sg_social_normal_background_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_color_b\":\"#f2295b\",\"sg_social_normal_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_normal_background_background_gradient_type\":\"linear\",\"sg_social_normal_background_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"sg_social_normal_background_background_gradient_position\":\"center center\",\"sg_social_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_normal_background_background_position\":\"\",\"sg_social_normal_background_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_attachment\":\"\",\"sg_social_normal_background_background_repeat\":\"\",\"sg_social_normal_background_background_size\":\"\",\"sg_social_normal_background_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_normal_background_background_video_link\":\"\",\"sg_social_normal_background_background_video_start\":\"\",\"sg_social_normal_background_background_video_end\":\"\",\"sg_social_normal_background_background_play_once\":\"\",\"sg_social_normal_background_background_play_on_mobile\":\"\",\"sg_social_normal_background_background_privacy_mode\":\"\",\"sg_social_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_normal_background_background_slideshow_gallery\":[],\"sg_social_normal_background_background_slideshow_loop\":\"yes\",\"sg_social_normal_background_background_slideshow_slide_duration\":5000,\"sg_social_normal_background_background_slideshow_slide_transition\":\"fade\",\"sg_social_normal_background_background_slideshow_transition_duration\":500,\"sg_social_normal_background_background_slideshow_background_size\":\"\",\"sg_social_normal_background_background_slideshow_background_position\":\"\",\"sg_social_normal_background_background_slideshow_lazyload\":\"\",\"sg_social_normal_background_background_slideshow_ken_burns\":\"\",\"sg_social_normal_background_background_slideshow_ken_burns_zoom_direction\":\"in\",\"sg_social_normal_border_border_border\":\"\",\"sg_social_normal_border_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"sg_social_normal_border_border_color\":\"\",\"sg_social_normal_boxshadow_box_shadow_box_shadow_type\":\"\",\"sg_social_normal_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"sg_social_normal_boxshadow_box_shadow_box_shadow_position\":\" \",\"sg_social_normal_textshadow_text_shadow_text_shadow_type\":\"\",\"sg_social_normal_textshadow_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"sg_social_hover_color\":\"\",\"sg_social_hover_background_background_background\":\"\",\"sg_social_hover_background_background_color\":\"\",\"sg_social_hover_background_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_color_b\":\"#f2295b\",\"sg_social_hover_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_hover_background_background_gradient_type\":\"linear\",\"sg_social_hover_background_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"sg_social_hover_background_background_gradient_position\":\"center center\",\"sg_social_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_hover_background_background_position\":\"\",\"sg_social_hover_background_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_attachment\":\"\",\"sg_social_hover_background_background_repeat\":\"\",\"sg_social_hover_background_background_size\":\"\",\"sg_social_hover_background_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_hover_background_background_video_link\":\"\",\"sg_social_hover_background_background_video_start\":\"\",\"sg_social_hover_background_background_video_end\":\"\",\"sg_social_hover_background_background_play_once\":\"\",\"sg_social_hover_background_background_play_on_mobile\":\"\",\"sg_social_hover_background_background_privacy_mode\":\"\",\"sg_social_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_hover_background_background_slideshow_gallery\":[],\"sg_social_hover_background_background_slideshow_loop\":\"yes\",\"sg_social_hover_background_background_slideshow_slide_duration\":5000,\"sg_social_hover_background_background_slideshow_slide_transition\":\"fade\",\"sg_social_hover_background_background_slideshow_transition_duration\":500,\"sg_social_hover_background_background_slideshow_background_size\":\"\",\"sg_social_hover_background_background_slideshow_background_position\":\"\",\"sg_social_hover_background_background_slideshow_lazyload\":\"\",\"sg_social_hover_background_background_slideshow_ken_burns\":\"\",\"sg_social_hover_background_background_slideshow_ken_burns_zoom_direction\":\"in\",\"sg_social_hover_border_border_border\":\"\",\"sg_social_hover_border_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"sg_social_hover_border_border_color\":\"\",\"sg_social_hover_boxshadow_box_shadow_box_shadow_type\":\"\",\"sg_social_hover_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"sg_social_hover_boxshadow_box_shadow_box_shadow_position\":\" \",\"sg_social_hover_textshadow_text_shadow_text_shadow_type\":\"\",\"sg_social_hover_textshadow_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"}},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"51fd3fb\",\"sg_social_normal_background_background_background\":\"classic\",\"__globals__\":{\"sg_social_normal_background_background_color\":\"globals\\/colors?id=5425a2a\"},\"sg_social_normal_color\":\"\",\"sg_social_normal_background_background_color\":\"\",\"sg_social_normal_background_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_color_b\":\"#f2295b\",\"sg_social_normal_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_normal_background_background_gradient_type\":\"linear\",\"sg_social_normal_background_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"sg_social_normal_background_background_gradient_position\":\"center center\",\"sg_social_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_normal_background_background_position\":\"\",\"sg_social_normal_background_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_attachment\":\"\",\"sg_social_normal_background_background_repeat\":\"\",\"sg_social_normal_background_background_size\":\"\",\"sg_social_normal_background_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_normal_background_background_video_link\":\"\",\"sg_social_normal_background_background_video_start\":\"\",\"sg_social_normal_background_background_video_end\":\"\",\"sg_social_normal_background_background_play_once\":\"\",\"sg_social_normal_background_background_play_on_mobile\":\"\",\"sg_social_normal_background_background_privacy_mode\":\"\",\"sg_social_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_normal_background_background_slideshow_gallery\":[],\"sg_social_normal_background_background_slideshow_loop\":\"yes\",\"sg_social_normal_background_background_slideshow_slide_duration\":5000,\"sg_social_normal_background_background_slideshow_slide_transition\":\"fade\",\"sg_social_normal_background_background_slideshow_transition_duration\":500,\"sg_social_normal_background_background_slideshow_background_size\":\"\",\"sg_social_normal_background_background_slideshow_background_position\":\"\",\"sg_social_normal_background_background_slideshow_lazyload\":\"\",\"sg_social_normal_background_background_slideshow_ken_burns\":\"\",\"sg_social_normal_background_background_slideshow_ken_burns_zoom_direction\":\"in\",\"sg_social_normal_border_border_border\":\"\",\"sg_social_normal_border_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"sg_social_normal_border_border_color\":\"\",\"sg_social_normal_boxshadow_box_shadow_box_shadow_type\":\"\",\"sg_social_normal_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"sg_social_normal_boxshadow_box_shadow_box_shadow_position\":\" \",\"sg_social_normal_textshadow_text_shadow_text_shadow_type\":\"\",\"sg_social_normal_textshadow_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"sg_social_hover_color\":\"\",\"sg_social_hover_background_background_background\":\"\",\"sg_social_hover_background_background_color\":\"\",\"sg_social_hover_background_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_color_b\":\"#f2295b\",\"sg_social_hover_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_hover_background_background_gradient_type\":\"linear\",\"sg_social_hover_background_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"sg_social_hover_background_background_gradient_position\":\"center center\",\"sg_social_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_hover_background_background_position\":\"\",\"sg_social_hover_background_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_attachment\":\"\",\"sg_social_hover_background_background_repeat\":\"\",\"sg_social_hover_background_background_size\":\"\",\"sg_social_hover_background_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_hover_background_background_video_link\":\"\",\"sg_social_hover_background_background_video_start\":\"\",\"sg_social_hover_background_background_video_end\":\"\",\"sg_social_hover_background_background_play_once\":\"\",\"sg_social_hover_background_background_play_on_mobile\":\"\",\"sg_social_hover_background_background_privacy_mode\":\"\",\"sg_social_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_hover_background_background_slideshow_gallery\":[],\"sg_social_hover_background_background_slideshow_loop\":\"yes\",\"sg_social_hover_background_background_slideshow_slide_duration\":5000,\"sg_social_hover_background_background_slideshow_slide_transition\":\"fade\",\"sg_social_hover_background_background_slideshow_transition_duration\":500,\"sg_social_hover_background_background_slideshow_background_size\":\"\",\"sg_social_hover_background_background_slideshow_background_position\":\"\",\"sg_social_hover_background_background_slideshow_lazyload\":\"\",\"sg_social_hover_background_background_slideshow_ken_burns\":\"\",\"sg_social_hover_background_background_slideshow_ken_burns_zoom_direction\":\"in\",\"sg_social_hover_border_border_border\":\"\",\"sg_social_hover_border_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"sg_social_hover_border_border_color\":\"\",\"sg_social_hover_boxshadow_box_shadow_box_shadow_type\":\"\",\"sg_social_hover_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"sg_social_hover_boxshadow_box_shadow_box_shadow_position\":\" \",\"sg_social_hover_textshadow_text_shadow_text_shadow_type\":\"\",\"sg_social_hover_textshadow_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"}}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"55\",\"left\":\"20\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"20\",\"left\":\"13\",\"isLinked\":false},\"jkit_transform_rotate\":{\"unit\":\"px\",\"size\":358,\"sizes\":[]},\"_background_background\":\"classic\",\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":30,\"blur\":30,\"spread\":-10,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"st_position_normal_color_responsive\":\"globals\\/colors?id=50714e7\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=secondary\"},\"sg_popup_close_icon\":{\"value\":\"fas fa-times\",\"library\":\"fa-solid\"},\"st_content_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_content_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_content_normal_background_background_slideshow_gallery\":[],\"st_content_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_content_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_content_hover_background_background_slideshow_gallery\":[],\"st_image_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_image_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_image_background_background_slideshow_gallery\":[],\"st_image_overlay_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_image_overlay_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_image_overlay_background_background_slideshow_gallery\":[],\"st_control_modal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_control_modal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_control_modal_background_background_slideshow_gallery\":[],\"st_close_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_close_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_close_normal_background_background_slideshow_gallery\":[],\"st_close_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_close_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_close_hover_background_background_slideshow_gallery\":[],\"st_hover_content_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_hover_content_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_hover_content_background_background_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"2688ec8d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"126bc4f7\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"39\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/pp2.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Gregory Warren\",\"sg_member_position\":\"Social Teacher\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"4c2d797\",\"sg_social_normal_background_background_background\":\"classic\",\"__globals__\":{\"sg_social_normal_background_background_color\":\"globals\\/colors?id=5425a2a\"},\"sg_social_normal_color\":\"\",\"sg_social_normal_background_background_color\":\"\",\"sg_social_normal_background_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_color_b\":\"#f2295b\",\"sg_social_normal_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_normal_background_background_gradient_type\":\"linear\",\"sg_social_normal_background_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"sg_social_normal_background_background_gradient_position\":\"center center\",\"sg_social_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_normal_background_background_position\":\"\",\"sg_social_normal_background_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_attachment\":\"\",\"sg_social_normal_background_background_repeat\":\"\",\"sg_social_normal_background_background_size\":\"\",\"sg_social_normal_background_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_normal_background_background_video_link\":\"\",\"sg_social_normal_background_background_video_start\":\"\",\"sg_social_normal_background_background_video_end\":\"\",\"sg_social_normal_background_background_play_once\":\"\",\"sg_social_normal_background_background_play_on_mobile\":\"\",\"sg_social_normal_background_background_privacy_mode\":\"\",\"sg_social_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_normal_background_background_slideshow_gallery\":[],\"sg_social_normal_background_background_slideshow_loop\":\"yes\",\"sg_social_normal_background_background_slideshow_slide_duration\":5000,\"sg_social_normal_background_background_slideshow_slide_transition\":\"fade\",\"sg_social_normal_background_background_slideshow_transition_duration\":500,\"sg_social_normal_background_background_slideshow_background_size\":\"\",\"sg_social_normal_background_background_slideshow_background_position\":\"\",\"sg_social_normal_background_background_slideshow_lazyload\":\"\",\"sg_social_normal_background_background_slideshow_ken_burns\":\"\",\"sg_social_normal_background_background_slideshow_ken_burns_zoom_direction\":\"in\",\"sg_social_normal_border_border_border\":\"\",\"sg_social_normal_border_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"sg_social_normal_border_border_color\":\"\",\"sg_social_normal_boxshadow_box_shadow_box_shadow_type\":\"\",\"sg_social_normal_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"sg_social_normal_boxshadow_box_shadow_box_shadow_position\":\" \",\"sg_social_normal_textshadow_text_shadow_text_shadow_type\":\"\",\"sg_social_normal_textshadow_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"sg_social_hover_color\":\"\",\"sg_social_hover_background_background_background\":\"\",\"sg_social_hover_background_background_color\":\"\",\"sg_social_hover_background_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_color_b\":\"#f2295b\",\"sg_social_hover_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_hover_background_background_gradient_type\":\"linear\",\"sg_social_hover_background_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"sg_social_hover_background_background_gradient_position\":\"center center\",\"sg_social_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_hover_background_background_position\":\"\",\"sg_social_hover_background_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_attachment\":\"\",\"sg_social_hover_background_background_repeat\":\"\",\"sg_social_hover_background_background_size\":\"\",\"sg_social_hover_background_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_hover_background_background_video_link\":\"\",\"sg_social_hover_background_background_video_start\":\"\",\"sg_social_hover_background_background_video_end\":\"\",\"sg_social_hover_background_background_play_once\":\"\",\"sg_social_hover_background_background_play_on_mobile\":\"\",\"sg_social_hover_background_background_privacy_mode\":\"\",\"sg_social_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_hover_background_background_slideshow_gallery\":[],\"sg_social_hover_background_background_slideshow_loop\":\"yes\",\"sg_social_hover_background_background_slideshow_slide_duration\":5000,\"sg_social_hover_background_background_slideshow_slide_transition\":\"fade\",\"sg_social_hover_background_background_slideshow_transition_duration\":500,\"sg_social_hover_background_background_slideshow_background_size\":\"\",\"sg_social_hover_background_background_slideshow_background_position\":\"\",\"sg_social_hover_background_background_slideshow_lazyload\":\"\",\"sg_social_hover_background_background_slideshow_ken_burns\":\"\",\"sg_social_hover_background_background_slideshow_ken_burns_zoom_direction\":\"in\",\"sg_social_hover_border_border_border\":\"\",\"sg_social_hover_border_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"sg_social_hover_border_border_color\":\"\",\"sg_social_hover_boxshadow_box_shadow_box_shadow_type\":\"\",\"sg_social_hover_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"sg_social_hover_boxshadow_box_shadow_box_shadow_position\":\" \",\"sg_social_hover_textshadow_text_shadow_text_shadow_type\":\"\",\"sg_social_hover_textshadow_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"}},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"5d7eb15\",\"sg_social_normal_background_background_background\":\"classic\",\"__globals__\":{\"sg_social_normal_background_background_color\":\"globals\\/colors?id=5425a2a\"},\"sg_social_normal_color\":\"\",\"sg_social_normal_background_background_color\":\"\",\"sg_social_normal_background_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_color_b\":\"#f2295b\",\"sg_social_normal_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_normal_background_background_gradient_type\":\"linear\",\"sg_social_normal_background_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"sg_social_normal_background_background_gradient_position\":\"center center\",\"sg_social_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_normal_background_background_position\":\"\",\"sg_social_normal_background_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_attachment\":\"\",\"sg_social_normal_background_background_repeat\":\"\",\"sg_social_normal_background_background_size\":\"\",\"sg_social_normal_background_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_normal_background_background_video_link\":\"\",\"sg_social_normal_background_background_video_start\":\"\",\"sg_social_normal_background_background_video_end\":\"\",\"sg_social_normal_background_background_play_once\":\"\",\"sg_social_normal_background_background_play_on_mobile\":\"\",\"sg_social_normal_background_background_privacy_mode\":\"\",\"sg_social_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_normal_background_background_slideshow_gallery\":[],\"sg_social_normal_background_background_slideshow_loop\":\"yes\",\"sg_social_normal_background_background_slideshow_slide_duration\":5000,\"sg_social_normal_background_background_slideshow_slide_transition\":\"fade\",\"sg_social_normal_background_background_slideshow_transition_duration\":500,\"sg_social_normal_background_background_slideshow_background_size\":\"\",\"sg_social_normal_background_background_slideshow_background_position\":\"\",\"sg_social_normal_background_background_slideshow_lazyload\":\"\",\"sg_social_normal_background_background_slideshow_ken_burns\":\"\",\"sg_social_normal_background_background_slideshow_ken_burns_zoom_direction\":\"in\",\"sg_social_normal_border_border_border\":\"\",\"sg_social_normal_border_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"sg_social_normal_border_border_color\":\"\",\"sg_social_normal_boxshadow_box_shadow_box_shadow_type\":\"\",\"sg_social_normal_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"sg_social_normal_boxshadow_box_shadow_box_shadow_position\":\" \",\"sg_social_normal_textshadow_text_shadow_text_shadow_type\":\"\",\"sg_social_normal_textshadow_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"sg_social_hover_color\":\"\",\"sg_social_hover_background_background_background\":\"\",\"sg_social_hover_background_background_color\":\"\",\"sg_social_hover_background_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_color_b\":\"#f2295b\",\"sg_social_hover_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_hover_background_background_gradient_type\":\"linear\",\"sg_social_hover_background_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"sg_social_hover_background_background_gradient_position\":\"center center\",\"sg_social_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_hover_background_background_position\":\"\",\"sg_social_hover_background_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_attachment\":\"\",\"sg_social_hover_background_background_repeat\":\"\",\"sg_social_hover_background_background_size\":\"\",\"sg_social_hover_background_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_hover_background_background_video_link\":\"\",\"sg_social_hover_background_background_video_start\":\"\",\"sg_social_hover_background_background_video_end\":\"\",\"sg_social_hover_background_background_play_once\":\"\",\"sg_social_hover_background_background_play_on_mobile\":\"\",\"sg_social_hover_background_background_privacy_mode\":\"\",\"sg_social_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_hover_background_background_slideshow_gallery\":[],\"sg_social_hover_background_background_slideshow_loop\":\"yes\",\"sg_social_hover_background_background_slideshow_slide_duration\":5000,\"sg_social_hover_background_background_slideshow_slide_transition\":\"fade\",\"sg_social_hover_background_background_slideshow_transition_duration\":500,\"sg_social_hover_background_background_slideshow_background_size\":\"\",\"sg_social_hover_background_background_slideshow_background_position\":\"\",\"sg_social_hover_background_background_slideshow_lazyload\":\"\",\"sg_social_hover_background_background_slideshow_ken_burns\":\"\",\"sg_social_hover_background_background_slideshow_ken_burns_zoom_direction\":\"in\",\"sg_social_hover_border_border_border\":\"\",\"sg_social_hover_border_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"sg_social_hover_border_border_color\":\"\",\"sg_social_hover_boxshadow_box_shadow_box_shadow_type\":\"\",\"sg_social_hover_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"sg_social_hover_boxshadow_box_shadow_box_shadow_position\":\" \",\"sg_social_hover_textshadow_text_shadow_text_shadow_type\":\"\",\"sg_social_hover_textshadow_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"}},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"51fd3fb\",\"sg_social_normal_background_background_background\":\"classic\",\"__globals__\":{\"sg_social_normal_background_background_color\":\"globals\\/colors?id=5425a2a\"},\"sg_social_normal_color\":\"\",\"sg_social_normal_background_background_color\":\"\",\"sg_social_normal_background_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_color_b\":\"#f2295b\",\"sg_social_normal_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_normal_background_background_gradient_type\":\"linear\",\"sg_social_normal_background_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"sg_social_normal_background_background_gradient_position\":\"center center\",\"sg_social_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_normal_background_background_position\":\"\",\"sg_social_normal_background_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_attachment\":\"\",\"sg_social_normal_background_background_repeat\":\"\",\"sg_social_normal_background_background_size\":\"\",\"sg_social_normal_background_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_normal_background_background_video_link\":\"\",\"sg_social_normal_background_background_video_start\":\"\",\"sg_social_normal_background_background_video_end\":\"\",\"sg_social_normal_background_background_play_once\":\"\",\"sg_social_normal_background_background_play_on_mobile\":\"\",\"sg_social_normal_background_background_privacy_mode\":\"\",\"sg_social_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_normal_background_background_slideshow_gallery\":[],\"sg_social_normal_background_background_slideshow_loop\":\"yes\",\"sg_social_normal_background_background_slideshow_slide_duration\":5000,\"sg_social_normal_background_background_slideshow_slide_transition\":\"fade\",\"sg_social_normal_background_background_slideshow_transition_duration\":500,\"sg_social_normal_background_background_slideshow_background_size\":\"\",\"sg_social_normal_background_background_slideshow_background_position\":\"\",\"sg_social_normal_background_background_slideshow_lazyload\":\"\",\"sg_social_normal_background_background_slideshow_ken_burns\":\"\",\"sg_social_normal_background_background_slideshow_ken_burns_zoom_direction\":\"in\",\"sg_social_normal_border_border_border\":\"\",\"sg_social_normal_border_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"sg_social_normal_border_border_color\":\"\",\"sg_social_normal_boxshadow_box_shadow_box_shadow_type\":\"\",\"sg_social_normal_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"sg_social_normal_boxshadow_box_shadow_box_shadow_position\":\" \",\"sg_social_normal_textshadow_text_shadow_text_shadow_type\":\"\",\"sg_social_normal_textshadow_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"sg_social_hover_color\":\"\",\"sg_social_hover_background_background_background\":\"\",\"sg_social_hover_background_background_color\":\"\",\"sg_social_hover_background_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_color_b\":\"#f2295b\",\"sg_social_hover_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_hover_background_background_gradient_type\":\"linear\",\"sg_social_hover_background_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"sg_social_hover_background_background_gradient_position\":\"center center\",\"sg_social_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_hover_background_background_position\":\"\",\"sg_social_hover_background_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_attachment\":\"\",\"sg_social_hover_background_background_repeat\":\"\",\"sg_social_hover_background_background_size\":\"\",\"sg_social_hover_background_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_hover_background_background_video_link\":\"\",\"sg_social_hover_background_background_video_start\":\"\",\"sg_social_hover_background_background_video_end\":\"\",\"sg_social_hover_background_background_play_once\":\"\",\"sg_social_hover_background_background_play_on_mobile\":\"\",\"sg_social_hover_background_background_privacy_mode\":\"\",\"sg_social_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_hover_background_background_slideshow_gallery\":[],\"sg_social_hover_background_background_slideshow_loop\":\"yes\",\"sg_social_hover_background_background_slideshow_slide_duration\":5000,\"sg_social_hover_background_background_slideshow_slide_transition\":\"fade\",\"sg_social_hover_background_background_slideshow_transition_duration\":500,\"sg_social_hover_background_background_slideshow_background_size\":\"\",\"sg_social_hover_background_background_slideshow_background_position\":\"\",\"sg_social_hover_background_background_slideshow_lazyload\":\"\",\"sg_social_hover_background_background_slideshow_ken_burns\":\"\",\"sg_social_hover_background_background_slideshow_ken_burns_zoom_direction\":\"in\",\"sg_social_hover_border_border_border\":\"\",\"sg_social_hover_border_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"sg_social_hover_border_border_color\":\"\",\"sg_social_hover_boxshadow_box_shadow_box_shadow_type\":\"\",\"sg_social_hover_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"sg_social_hover_boxshadow_box_shadow_box_shadow_position\":\" \",\"sg_social_hover_textshadow_text_shadow_text_shadow_type\":\"\",\"sg_social_hover_textshadow_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"}}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"55\",\"left\":\"20\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"20\",\"left\":\"13\",\"isLinked\":false},\"jkit_transform_rotate\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_background_background\":\"classic\",\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":30,\"blur\":30,\"spread\":-10,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"st_position_normal_color_responsive\":\"globals\\/colors?id=50714e7\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=secondary\"},\"sg_popup_close_icon\":{\"value\":\"fas fa-times\",\"library\":\"fa-solid\"},\"st_content_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_content_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_content_normal_background_background_slideshow_gallery\":[],\"st_content_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_content_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_content_hover_background_background_slideshow_gallery\":[],\"st_image_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_image_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_image_background_background_slideshow_gallery\":[],\"st_image_overlay_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_image_overlay_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_image_overlay_background_background_slideshow_gallery\":[],\"st_control_modal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_control_modal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_control_modal_background_background_slideshow_gallery\":[],\"st_close_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_close_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_close_normal_background_background_slideshow_gallery\":[],\"st_close_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_close_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_close_hover_background_background_slideshow_gallery\":[],\"st_hover_content_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_hover_content_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_hover_content_background_background_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"7f5f26cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2ff3f16a\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"44\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/pp3.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Peter wong\",\"sg_member_position\":\"Math Teacher\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"4c2d797\",\"sg_social_normal_background_background_background\":\"classic\",\"__globals__\":{\"sg_social_normal_background_background_color\":\"globals\\/colors?id=5425a2a\"},\"sg_social_normal_color\":\"\",\"sg_social_normal_background_background_color\":\"\",\"sg_social_normal_background_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_color_b\":\"#f2295b\",\"sg_social_normal_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_normal_background_background_gradient_type\":\"linear\",\"sg_social_normal_background_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"sg_social_normal_background_background_gradient_position\":\"center center\",\"sg_social_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_normal_background_background_position\":\"\",\"sg_social_normal_background_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_attachment\":\"\",\"sg_social_normal_background_background_repeat\":\"\",\"sg_social_normal_background_background_size\":\"\",\"sg_social_normal_background_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_normal_background_background_video_link\":\"\",\"sg_social_normal_background_background_video_start\":\"\",\"sg_social_normal_background_background_video_end\":\"\",\"sg_social_normal_background_background_play_once\":\"\",\"sg_social_normal_background_background_play_on_mobile\":\"\",\"sg_social_normal_background_background_privacy_mode\":\"\",\"sg_social_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_normal_background_background_slideshow_gallery\":[],\"sg_social_normal_background_background_slideshow_loop\":\"yes\",\"sg_social_normal_background_background_slideshow_slide_duration\":5000,\"sg_social_normal_background_background_slideshow_slide_transition\":\"fade\",\"sg_social_normal_background_background_slideshow_transition_duration\":500,\"sg_social_normal_background_background_slideshow_background_size\":\"\",\"sg_social_normal_background_background_slideshow_background_position\":\"\",\"sg_social_normal_background_background_slideshow_lazyload\":\"\",\"sg_social_normal_background_background_slideshow_ken_burns\":\"\",\"sg_social_normal_background_background_slideshow_ken_burns_zoom_direction\":\"in\",\"sg_social_normal_border_border_border\":\"\",\"sg_social_normal_border_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"sg_social_normal_border_border_color\":\"\",\"sg_social_normal_boxshadow_box_shadow_box_shadow_type\":\"\",\"sg_social_normal_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"sg_social_normal_boxshadow_box_shadow_box_shadow_position\":\" \",\"sg_social_normal_textshadow_text_shadow_text_shadow_type\":\"\",\"sg_social_normal_textshadow_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"sg_social_hover_color\":\"\",\"sg_social_hover_background_background_background\":\"\",\"sg_social_hover_background_background_color\":\"\",\"sg_social_hover_background_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_color_b\":\"#f2295b\",\"sg_social_hover_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_hover_background_background_gradient_type\":\"linear\",\"sg_social_hover_background_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"sg_social_hover_background_background_gradient_position\":\"center center\",\"sg_social_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_hover_background_background_position\":\"\",\"sg_social_hover_background_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_attachment\":\"\",\"sg_social_hover_background_background_repeat\":\"\",\"sg_social_hover_background_background_size\":\"\",\"sg_social_hover_background_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_hover_background_background_video_link\":\"\",\"sg_social_hover_background_background_video_start\":\"\",\"sg_social_hover_background_background_video_end\":\"\",\"sg_social_hover_background_background_play_once\":\"\",\"sg_social_hover_background_background_play_on_mobile\":\"\",\"sg_social_hover_background_background_privacy_mode\":\"\",\"sg_social_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_hover_background_background_slideshow_gallery\":[],\"sg_social_hover_background_background_slideshow_loop\":\"yes\",\"sg_social_hover_background_background_slideshow_slide_duration\":5000,\"sg_social_hover_background_background_slideshow_slide_transition\":\"fade\",\"sg_social_hover_background_background_slideshow_transition_duration\":500,\"sg_social_hover_background_background_slideshow_background_size\":\"\",\"sg_social_hover_background_background_slideshow_background_position\":\"\",\"sg_social_hover_background_background_slideshow_lazyload\":\"\",\"sg_social_hover_background_background_slideshow_ken_burns\":\"\",\"sg_social_hover_background_background_slideshow_ken_burns_zoom_direction\":\"in\",\"sg_social_hover_border_border_border\":\"\",\"sg_social_hover_border_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"sg_social_hover_border_border_color\":\"\",\"sg_social_hover_boxshadow_box_shadow_box_shadow_type\":\"\",\"sg_social_hover_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"sg_social_hover_boxshadow_box_shadow_box_shadow_position\":\" \",\"sg_social_hover_textshadow_text_shadow_text_shadow_type\":\"\",\"sg_social_hover_textshadow_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"}},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"5d7eb15\",\"sg_social_normal_background_background_background\":\"classic\",\"__globals__\":{\"sg_social_normal_background_background_color\":\"globals\\/colors?id=5425a2a\"},\"sg_social_normal_color\":\"\",\"sg_social_normal_background_background_color\":\"\",\"sg_social_normal_background_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_color_b\":\"#f2295b\",\"sg_social_normal_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_normal_background_background_gradient_type\":\"linear\",\"sg_social_normal_background_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"sg_social_normal_background_background_gradient_position\":\"center center\",\"sg_social_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_normal_background_background_position\":\"\",\"sg_social_normal_background_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_attachment\":\"\",\"sg_social_normal_background_background_repeat\":\"\",\"sg_social_normal_background_background_size\":\"\",\"sg_social_normal_background_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_normal_background_background_video_link\":\"\",\"sg_social_normal_background_background_video_start\":\"\",\"sg_social_normal_background_background_video_end\":\"\",\"sg_social_normal_background_background_play_once\":\"\",\"sg_social_normal_background_background_play_on_mobile\":\"\",\"sg_social_normal_background_background_privacy_mode\":\"\",\"sg_social_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_normal_background_background_slideshow_gallery\":[],\"sg_social_normal_background_background_slideshow_loop\":\"yes\",\"sg_social_normal_background_background_slideshow_slide_duration\":5000,\"sg_social_normal_background_background_slideshow_slide_transition\":\"fade\",\"sg_social_normal_background_background_slideshow_transition_duration\":500,\"sg_social_normal_background_background_slideshow_background_size\":\"\",\"sg_social_normal_background_background_slideshow_background_position\":\"\",\"sg_social_normal_background_background_slideshow_lazyload\":\"\",\"sg_social_normal_background_background_slideshow_ken_burns\":\"\",\"sg_social_normal_background_background_slideshow_ken_burns_zoom_direction\":\"in\",\"sg_social_normal_border_border_border\":\"\",\"sg_social_normal_border_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"sg_social_normal_border_border_color\":\"\",\"sg_social_normal_boxshadow_box_shadow_box_shadow_type\":\"\",\"sg_social_normal_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"sg_social_normal_boxshadow_box_shadow_box_shadow_position\":\" \",\"sg_social_normal_textshadow_text_shadow_text_shadow_type\":\"\",\"sg_social_normal_textshadow_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"sg_social_hover_color\":\"\",\"sg_social_hover_background_background_background\":\"\",\"sg_social_hover_background_background_color\":\"\",\"sg_social_hover_background_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_color_b\":\"#f2295b\",\"sg_social_hover_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_hover_background_background_gradient_type\":\"linear\",\"sg_social_hover_background_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"sg_social_hover_background_background_gradient_position\":\"center center\",\"sg_social_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_hover_background_background_position\":\"\",\"sg_social_hover_background_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_attachment\":\"\",\"sg_social_hover_background_background_repeat\":\"\",\"sg_social_hover_background_background_size\":\"\",\"sg_social_hover_background_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_hover_background_background_video_link\":\"\",\"sg_social_hover_background_background_video_start\":\"\",\"sg_social_hover_background_background_video_end\":\"\",\"sg_social_hover_background_background_play_once\":\"\",\"sg_social_hover_background_background_play_on_mobile\":\"\",\"sg_social_hover_background_background_privacy_mode\":\"\",\"sg_social_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_hover_background_background_slideshow_gallery\":[],\"sg_social_hover_background_background_slideshow_loop\":\"yes\",\"sg_social_hover_background_background_slideshow_slide_duration\":5000,\"sg_social_hover_background_background_slideshow_slide_transition\":\"fade\",\"sg_social_hover_background_background_slideshow_transition_duration\":500,\"sg_social_hover_background_background_slideshow_background_size\":\"\",\"sg_social_hover_background_background_slideshow_background_position\":\"\",\"sg_social_hover_background_background_slideshow_lazyload\":\"\",\"sg_social_hover_background_background_slideshow_ken_burns\":\"\",\"sg_social_hover_background_background_slideshow_ken_burns_zoom_direction\":\"in\",\"sg_social_hover_border_border_border\":\"\",\"sg_social_hover_border_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"sg_social_hover_border_border_color\":\"\",\"sg_social_hover_boxshadow_box_shadow_box_shadow_type\":\"\",\"sg_social_hover_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"sg_social_hover_boxshadow_box_shadow_box_shadow_position\":\" \",\"sg_social_hover_textshadow_text_shadow_text_shadow_type\":\"\",\"sg_social_hover_textshadow_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"}},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"51fd3fb\",\"sg_social_normal_background_background_background\":\"classic\",\"__globals__\":{\"sg_social_normal_background_background_color\":\"globals\\/colors?id=5425a2a\"},\"sg_social_normal_color\":\"\",\"sg_social_normal_background_background_color\":\"\",\"sg_social_normal_background_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_color_b\":\"#f2295b\",\"sg_social_normal_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_normal_background_background_gradient_type\":\"linear\",\"sg_social_normal_background_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"sg_social_normal_background_background_gradient_position\":\"center center\",\"sg_social_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_normal_background_background_position\":\"\",\"sg_social_normal_background_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_attachment\":\"\",\"sg_social_normal_background_background_repeat\":\"\",\"sg_social_normal_background_background_size\":\"\",\"sg_social_normal_background_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_normal_background_background_video_link\":\"\",\"sg_social_normal_background_background_video_start\":\"\",\"sg_social_normal_background_background_video_end\":\"\",\"sg_social_normal_background_background_play_once\":\"\",\"sg_social_normal_background_background_play_on_mobile\":\"\",\"sg_social_normal_background_background_privacy_mode\":\"\",\"sg_social_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_normal_background_background_slideshow_gallery\":[],\"sg_social_normal_background_background_slideshow_loop\":\"yes\",\"sg_social_normal_background_background_slideshow_slide_duration\":5000,\"sg_social_normal_background_background_slideshow_slide_transition\":\"fade\",\"sg_social_normal_background_background_slideshow_transition_duration\":500,\"sg_social_normal_background_background_slideshow_background_size\":\"\",\"sg_social_normal_background_background_slideshow_background_position\":\"\",\"sg_social_normal_background_background_slideshow_lazyload\":\"\",\"sg_social_normal_background_background_slideshow_ken_burns\":\"\",\"sg_social_normal_background_background_slideshow_ken_burns_zoom_direction\":\"in\",\"sg_social_normal_border_border_border\":\"\",\"sg_social_normal_border_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"sg_social_normal_border_border_color\":\"\",\"sg_social_normal_boxshadow_box_shadow_box_shadow_type\":\"\",\"sg_social_normal_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"sg_social_normal_boxshadow_box_shadow_box_shadow_position\":\" \",\"sg_social_normal_textshadow_text_shadow_text_shadow_type\":\"\",\"sg_social_normal_textshadow_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"sg_social_hover_color\":\"\",\"sg_social_hover_background_background_background\":\"\",\"sg_social_hover_background_background_color\":\"\",\"sg_social_hover_background_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_color_b\":\"#f2295b\",\"sg_social_hover_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_hover_background_background_gradient_type\":\"linear\",\"sg_social_hover_background_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"sg_social_hover_background_background_gradient_position\":\"center center\",\"sg_social_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_hover_background_background_position\":\"\",\"sg_social_hover_background_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_attachment\":\"\",\"sg_social_hover_background_background_repeat\":\"\",\"sg_social_hover_background_background_size\":\"\",\"sg_social_hover_background_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_hover_background_background_video_link\":\"\",\"sg_social_hover_background_background_video_start\":\"\",\"sg_social_hover_background_background_video_end\":\"\",\"sg_social_hover_background_background_play_once\":\"\",\"sg_social_hover_background_background_play_on_mobile\":\"\",\"sg_social_hover_background_background_privacy_mode\":\"\",\"sg_social_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_hover_background_background_slideshow_gallery\":[],\"sg_social_hover_background_background_slideshow_loop\":\"yes\",\"sg_social_hover_background_background_slideshow_slide_duration\":5000,\"sg_social_hover_background_background_slideshow_slide_transition\":\"fade\",\"sg_social_hover_background_background_slideshow_transition_duration\":500,\"sg_social_hover_background_background_slideshow_background_size\":\"\",\"sg_social_hover_background_background_slideshow_background_position\":\"\",\"sg_social_hover_background_background_slideshow_lazyload\":\"\",\"sg_social_hover_background_background_slideshow_ken_burns\":\"\",\"sg_social_hover_background_background_slideshow_ken_burns_zoom_direction\":\"in\",\"sg_social_hover_border_border_border\":\"\",\"sg_social_hover_border_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"sg_social_hover_border_border_color\":\"\",\"sg_social_hover_boxshadow_box_shadow_box_shadow_type\":\"\",\"sg_social_hover_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"sg_social_hover_boxshadow_box_shadow_box_shadow_position\":\" \",\"sg_social_hover_textshadow_text_shadow_text_shadow_type\":\"\",\"sg_social_hover_textshadow_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"}}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"55\",\"left\":\"20\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"20\",\"left\":\"13\",\"isLinked\":false},\"jkit_transform_rotate\":{\"unit\":\"px\",\"size\":358,\"sizes\":[]},\"_background_background\":\"classic\",\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":30,\"blur\":30,\"spread\":-10,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"st_position_normal_color_responsive\":\"globals\\/colors?id=50714e7\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=secondary\"},\"sg_popup_close_icon\":{\"value\":\"fas fa-times\",\"library\":\"fa-solid\"},\"st_content_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_content_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_content_normal_background_background_slideshow_gallery\":[],\"st_content_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_content_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_content_hover_background_background_slideshow_gallery\":[],\"st_image_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_image_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_image_background_background_slideshow_gallery\":[],\"st_image_overlay_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_image_overlay_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_image_overlay_background_background_slideshow_gallery\":[],\"st_control_modal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_control_modal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_control_modal_background_background_slideshow_gallery\":[],\"st_close_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_close_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_close_normal_background_background_slideshow_gallery\":[],\"st_close_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_close_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_close_hover_background_background_slideshow_gallery\":[],\"st_hover_content_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_hover_content_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_hover_content_background_background_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3a26f6ba\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5c835561\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6798134f\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"49\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/pp5.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Jimmy Smith\",\"sg_member_position\":\"English Teacher\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"4c2d797\",\"sg_social_normal_background_background_background\":\"classic\",\"__globals__\":{\"sg_social_normal_background_background_color\":\"globals\\/colors?id=5425a2a\"},\"sg_social_normal_color\":\"\",\"sg_social_normal_background_background_color\":\"\",\"sg_social_normal_background_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_color_b\":\"#f2295b\",\"sg_social_normal_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_normal_background_background_gradient_type\":\"linear\",\"sg_social_normal_background_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"sg_social_normal_background_background_gradient_position\":\"center center\",\"sg_social_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_normal_background_background_position\":\"\",\"sg_social_normal_background_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_attachment\":\"\",\"sg_social_normal_background_background_repeat\":\"\",\"sg_social_normal_background_background_size\":\"\",\"sg_social_normal_background_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_normal_background_background_video_link\":\"\",\"sg_social_normal_background_background_video_start\":\"\",\"sg_social_normal_background_background_video_end\":\"\",\"sg_social_normal_background_background_play_once\":\"\",\"sg_social_normal_background_background_play_on_mobile\":\"\",\"sg_social_normal_background_background_privacy_mode\":\"\",\"sg_social_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_normal_background_background_slideshow_gallery\":[],\"sg_social_normal_background_background_slideshow_loop\":\"yes\",\"sg_social_normal_background_background_slideshow_slide_duration\":5000,\"sg_social_normal_background_background_slideshow_slide_transition\":\"fade\",\"sg_social_normal_background_background_slideshow_transition_duration\":500,\"sg_social_normal_background_background_slideshow_background_size\":\"\",\"sg_social_normal_background_background_slideshow_background_position\":\"\",\"sg_social_normal_background_background_slideshow_lazyload\":\"\",\"sg_social_normal_background_background_slideshow_ken_burns\":\"\",\"sg_social_normal_background_background_slideshow_ken_burns_zoom_direction\":\"in\",\"sg_social_normal_border_border_border\":\"\",\"sg_social_normal_border_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"sg_social_normal_border_border_color\":\"\",\"sg_social_normal_boxshadow_box_shadow_box_shadow_type\":\"\",\"sg_social_normal_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"sg_social_normal_boxshadow_box_shadow_box_shadow_position\":\" \",\"sg_social_normal_textshadow_text_shadow_text_shadow_type\":\"\",\"sg_social_normal_textshadow_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"sg_social_hover_color\":\"\",\"sg_social_hover_background_background_background\":\"\",\"sg_social_hover_background_background_color\":\"\",\"sg_social_hover_background_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_color_b\":\"#f2295b\",\"sg_social_hover_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_hover_background_background_gradient_type\":\"linear\",\"sg_social_hover_background_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"sg_social_hover_background_background_gradient_position\":\"center center\",\"sg_social_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_hover_background_background_position\":\"\",\"sg_social_hover_background_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_attachment\":\"\",\"sg_social_hover_background_background_repeat\":\"\",\"sg_social_hover_background_background_size\":\"\",\"sg_social_hover_background_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_hover_background_background_video_link\":\"\",\"sg_social_hover_background_background_video_start\":\"\",\"sg_social_hover_background_background_video_end\":\"\",\"sg_social_hover_background_background_play_once\":\"\",\"sg_social_hover_background_background_play_on_mobile\":\"\",\"sg_social_hover_background_background_privacy_mode\":\"\",\"sg_social_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_hover_background_background_slideshow_gallery\":[],\"sg_social_hover_background_background_slideshow_loop\":\"yes\",\"sg_social_hover_background_background_slideshow_slide_duration\":5000,\"sg_social_hover_background_background_slideshow_slide_transition\":\"fade\",\"sg_social_hover_background_background_slideshow_transition_duration\":500,\"sg_social_hover_background_background_slideshow_background_size\":\"\",\"sg_social_hover_background_background_slideshow_background_position\":\"\",\"sg_social_hover_background_background_slideshow_lazyload\":\"\",\"sg_social_hover_background_background_slideshow_ken_burns\":\"\",\"sg_social_hover_background_background_slideshow_ken_burns_zoom_direction\":\"in\",\"sg_social_hover_border_border_border\":\"\",\"sg_social_hover_border_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"sg_social_hover_border_border_color\":\"\",\"sg_social_hover_boxshadow_box_shadow_box_shadow_type\":\"\",\"sg_social_hover_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"sg_social_hover_boxshadow_box_shadow_box_shadow_position\":\" \",\"sg_social_hover_textshadow_text_shadow_text_shadow_type\":\"\",\"sg_social_hover_textshadow_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"}},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"5d7eb15\",\"sg_social_normal_background_background_background\":\"classic\",\"__globals__\":{\"sg_social_normal_background_background_color\":\"globals\\/colors?id=5425a2a\"},\"sg_social_normal_color\":\"\",\"sg_social_normal_background_background_color\":\"\",\"sg_social_normal_background_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_color_b\":\"#f2295b\",\"sg_social_normal_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_normal_background_background_gradient_type\":\"linear\",\"sg_social_normal_background_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"sg_social_normal_background_background_gradient_position\":\"center center\",\"sg_social_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_normal_background_background_position\":\"\",\"sg_social_normal_background_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_attachment\":\"\",\"sg_social_normal_background_background_repeat\":\"\",\"sg_social_normal_background_background_size\":\"\",\"sg_social_normal_background_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_normal_background_background_video_link\":\"\",\"sg_social_normal_background_background_video_start\":\"\",\"sg_social_normal_background_background_video_end\":\"\",\"sg_social_normal_background_background_play_once\":\"\",\"sg_social_normal_background_background_play_on_mobile\":\"\",\"sg_social_normal_background_background_privacy_mode\":\"\",\"sg_social_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_normal_background_background_slideshow_gallery\":[],\"sg_social_normal_background_background_slideshow_loop\":\"yes\",\"sg_social_normal_background_background_slideshow_slide_duration\":5000,\"sg_social_normal_background_background_slideshow_slide_transition\":\"fade\",\"sg_social_normal_background_background_slideshow_transition_duration\":500,\"sg_social_normal_background_background_slideshow_background_size\":\"\",\"sg_social_normal_background_background_slideshow_background_position\":\"\",\"sg_social_normal_background_background_slideshow_lazyload\":\"\",\"sg_social_normal_background_background_slideshow_ken_burns\":\"\",\"sg_social_normal_background_background_slideshow_ken_burns_zoom_direction\":\"in\",\"sg_social_normal_border_border_border\":\"\",\"sg_social_normal_border_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"sg_social_normal_border_border_color\":\"\",\"sg_social_normal_boxshadow_box_shadow_box_shadow_type\":\"\",\"sg_social_normal_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"sg_social_normal_boxshadow_box_shadow_box_shadow_position\":\" \",\"sg_social_normal_textshadow_text_shadow_text_shadow_type\":\"\",\"sg_social_normal_textshadow_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"sg_social_hover_color\":\"\",\"sg_social_hover_background_background_background\":\"\",\"sg_social_hover_background_background_color\":\"\",\"sg_social_hover_background_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_color_b\":\"#f2295b\",\"sg_social_hover_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_hover_background_background_gradient_type\":\"linear\",\"sg_social_hover_background_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"sg_social_hover_background_background_gradient_position\":\"center center\",\"sg_social_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_hover_background_background_position\":\"\",\"sg_social_hover_background_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_attachment\":\"\",\"sg_social_hover_background_background_repeat\":\"\",\"sg_social_hover_background_background_size\":\"\",\"sg_social_hover_background_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_hover_background_background_video_link\":\"\",\"sg_social_hover_background_background_video_start\":\"\",\"sg_social_hover_background_background_video_end\":\"\",\"sg_social_hover_background_background_play_once\":\"\",\"sg_social_hover_background_background_play_on_mobile\":\"\",\"sg_social_hover_background_background_privacy_mode\":\"\",\"sg_social_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_hover_background_background_slideshow_gallery\":[],\"sg_social_hover_background_background_slideshow_loop\":\"yes\",\"sg_social_hover_background_background_slideshow_slide_duration\":5000,\"sg_social_hover_background_background_slideshow_slide_transition\":\"fade\",\"sg_social_hover_background_background_slideshow_transition_duration\":500,\"sg_social_hover_background_background_slideshow_background_size\":\"\",\"sg_social_hover_background_background_slideshow_background_position\":\"\",\"sg_social_hover_background_background_slideshow_lazyload\":\"\",\"sg_social_hover_background_background_slideshow_ken_burns\":\"\",\"sg_social_hover_background_background_slideshow_ken_burns_zoom_direction\":\"in\",\"sg_social_hover_border_border_border\":\"\",\"sg_social_hover_border_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"sg_social_hover_border_border_color\":\"\",\"sg_social_hover_boxshadow_box_shadow_box_shadow_type\":\"\",\"sg_social_hover_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"sg_social_hover_boxshadow_box_shadow_box_shadow_position\":\" \",\"sg_social_hover_textshadow_text_shadow_text_shadow_type\":\"\",\"sg_social_hover_textshadow_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"}},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"51fd3fb\",\"sg_social_normal_background_background_background\":\"classic\",\"__globals__\":{\"sg_social_normal_background_background_color\":\"globals\\/colors?id=5425a2a\"},\"sg_social_normal_color\":\"\",\"sg_social_normal_background_background_color\":\"\",\"sg_social_normal_background_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_color_b\":\"#f2295b\",\"sg_social_normal_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_normal_background_background_gradient_type\":\"linear\",\"sg_social_normal_background_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"sg_social_normal_background_background_gradient_position\":\"center center\",\"sg_social_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_normal_background_background_position\":\"\",\"sg_social_normal_background_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_attachment\":\"\",\"sg_social_normal_background_background_repeat\":\"\",\"sg_social_normal_background_background_size\":\"\",\"sg_social_normal_background_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_normal_background_background_video_link\":\"\",\"sg_social_normal_background_background_video_start\":\"\",\"sg_social_normal_background_background_video_end\":\"\",\"sg_social_normal_background_background_play_once\":\"\",\"sg_social_normal_background_background_play_on_mobile\":\"\",\"sg_social_normal_background_background_privacy_mode\":\"\",\"sg_social_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_normal_background_background_slideshow_gallery\":[],\"sg_social_normal_background_background_slideshow_loop\":\"yes\",\"sg_social_normal_background_background_slideshow_slide_duration\":5000,\"sg_social_normal_background_background_slideshow_slide_transition\":\"fade\",\"sg_social_normal_background_background_slideshow_transition_duration\":500,\"sg_social_normal_background_background_slideshow_background_size\":\"\",\"sg_social_normal_background_background_slideshow_background_position\":\"\",\"sg_social_normal_background_background_slideshow_lazyload\":\"\",\"sg_social_normal_background_background_slideshow_ken_burns\":\"\",\"sg_social_normal_background_background_slideshow_ken_burns_zoom_direction\":\"in\",\"sg_social_normal_border_border_border\":\"\",\"sg_social_normal_border_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"sg_social_normal_border_border_color\":\"\",\"sg_social_normal_boxshadow_box_shadow_box_shadow_type\":\"\",\"sg_social_normal_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"sg_social_normal_boxshadow_box_shadow_box_shadow_position\":\" \",\"sg_social_normal_textshadow_text_shadow_text_shadow_type\":\"\",\"sg_social_normal_textshadow_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"sg_social_hover_color\":\"\",\"sg_social_hover_background_background_background\":\"\",\"sg_social_hover_background_background_color\":\"\",\"sg_social_hover_background_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_color_b\":\"#f2295b\",\"sg_social_hover_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_hover_background_background_gradient_type\":\"linear\",\"sg_social_hover_background_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"sg_social_hover_background_background_gradient_position\":\"center center\",\"sg_social_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_hover_background_background_position\":\"\",\"sg_social_hover_background_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_attachment\":\"\",\"sg_social_hover_background_background_repeat\":\"\",\"sg_social_hover_background_background_size\":\"\",\"sg_social_hover_background_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_hover_background_background_video_link\":\"\",\"sg_social_hover_background_background_video_start\":\"\",\"sg_social_hover_background_background_video_end\":\"\",\"sg_social_hover_background_background_play_once\":\"\",\"sg_social_hover_background_background_play_on_mobile\":\"\",\"sg_social_hover_background_background_privacy_mode\":\"\",\"sg_social_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_hover_background_background_slideshow_gallery\":[],\"sg_social_hover_background_background_slideshow_loop\":\"yes\",\"sg_social_hover_background_background_slideshow_slide_duration\":5000,\"sg_social_hover_background_background_slideshow_slide_transition\":\"fade\",\"sg_social_hover_background_background_slideshow_transition_duration\":500,\"sg_social_hover_background_background_slideshow_background_size\":\"\",\"sg_social_hover_background_background_slideshow_background_position\":\"\",\"sg_social_hover_background_background_slideshow_lazyload\":\"\",\"sg_social_hover_background_background_slideshow_ken_burns\":\"\",\"sg_social_hover_background_background_slideshow_ken_burns_zoom_direction\":\"in\",\"sg_social_hover_border_border_border\":\"\",\"sg_social_hover_border_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"sg_social_hover_border_border_color\":\"\",\"sg_social_hover_boxshadow_box_shadow_box_shadow_type\":\"\",\"sg_social_hover_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"sg_social_hover_boxshadow_box_shadow_box_shadow_position\":\" \",\"sg_social_hover_textshadow_text_shadow_text_shadow_type\":\"\",\"sg_social_hover_textshadow_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"}}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"55\",\"left\":\"20\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"20\",\"left\":\"13\",\"isLinked\":false},\"jkit_transform_rotate\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_background_background\":\"classic\",\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":30,\"blur\":30,\"spread\":-10,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"st_position_normal_color_responsive\":\"globals\\/colors?id=50714e7\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=secondary\"},\"sg_popup_close_icon\":{\"value\":\"fas fa-times\",\"library\":\"fa-solid\"},\"st_content_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_content_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_content_normal_background_background_slideshow_gallery\":[],\"st_content_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_content_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_content_hover_background_background_slideshow_gallery\":[],\"st_image_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_image_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_image_background_background_slideshow_gallery\":[],\"st_image_overlay_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_image_overlay_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_image_overlay_background_background_slideshow_gallery\":[],\"st_control_modal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_control_modal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_control_modal_background_background_slideshow_gallery\":[],\"st_close_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_close_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_close_normal_background_background_slideshow_gallery\":[],\"st_close_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_close_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_close_hover_background_background_slideshow_gallery\":[],\"st_hover_content_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_hover_content_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_hover_content_background_background_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"2639d96b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4d1bdb2f\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"53\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/pp4.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Edward Connor\",\"sg_member_position\":\"Math Teacher\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"4c2d797\",\"sg_social_normal_background_background_background\":\"classic\",\"__globals__\":{\"sg_social_normal_background_background_color\":\"globals\\/colors?id=5425a2a\"},\"sg_social_normal_color\":\"\",\"sg_social_normal_background_background_color\":\"\",\"sg_social_normal_background_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_color_b\":\"#f2295b\",\"sg_social_normal_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_normal_background_background_gradient_type\":\"linear\",\"sg_social_normal_background_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"sg_social_normal_background_background_gradient_position\":\"center center\",\"sg_social_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_normal_background_background_position\":\"\",\"sg_social_normal_background_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_attachment\":\"\",\"sg_social_normal_background_background_repeat\":\"\",\"sg_social_normal_background_background_size\":\"\",\"sg_social_normal_background_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_normal_background_background_video_link\":\"\",\"sg_social_normal_background_background_video_start\":\"\",\"sg_social_normal_background_background_video_end\":\"\",\"sg_social_normal_background_background_play_once\":\"\",\"sg_social_normal_background_background_play_on_mobile\":\"\",\"sg_social_normal_background_background_privacy_mode\":\"\",\"sg_social_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_normal_background_background_slideshow_gallery\":[],\"sg_social_normal_background_background_slideshow_loop\":\"yes\",\"sg_social_normal_background_background_slideshow_slide_duration\":5000,\"sg_social_normal_background_background_slideshow_slide_transition\":\"fade\",\"sg_social_normal_background_background_slideshow_transition_duration\":500,\"sg_social_normal_background_background_slideshow_background_size\":\"\",\"sg_social_normal_background_background_slideshow_background_position\":\"\",\"sg_social_normal_background_background_slideshow_lazyload\":\"\",\"sg_social_normal_background_background_slideshow_ken_burns\":\"\",\"sg_social_normal_background_background_slideshow_ken_burns_zoom_direction\":\"in\",\"sg_social_normal_border_border_border\":\"\",\"sg_social_normal_border_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"sg_social_normal_border_border_color\":\"\",\"sg_social_normal_boxshadow_box_shadow_box_shadow_type\":\"\",\"sg_social_normal_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"sg_social_normal_boxshadow_box_shadow_box_shadow_position\":\" \",\"sg_social_normal_textshadow_text_shadow_text_shadow_type\":\"\",\"sg_social_normal_textshadow_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"sg_social_hover_color\":\"\",\"sg_social_hover_background_background_background\":\"\",\"sg_social_hover_background_background_color\":\"\",\"sg_social_hover_background_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_color_b\":\"#f2295b\",\"sg_social_hover_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_hover_background_background_gradient_type\":\"linear\",\"sg_social_hover_background_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"sg_social_hover_background_background_gradient_position\":\"center center\",\"sg_social_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_hover_background_background_position\":\"\",\"sg_social_hover_background_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_attachment\":\"\",\"sg_social_hover_background_background_repeat\":\"\",\"sg_social_hover_background_background_size\":\"\",\"sg_social_hover_background_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_hover_background_background_video_link\":\"\",\"sg_social_hover_background_background_video_start\":\"\",\"sg_social_hover_background_background_video_end\":\"\",\"sg_social_hover_background_background_play_once\":\"\",\"sg_social_hover_background_background_play_on_mobile\":\"\",\"sg_social_hover_background_background_privacy_mode\":\"\",\"sg_social_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_hover_background_background_slideshow_gallery\":[],\"sg_social_hover_background_background_slideshow_loop\":\"yes\",\"sg_social_hover_background_background_slideshow_slide_duration\":5000,\"sg_social_hover_background_background_slideshow_slide_transition\":\"fade\",\"sg_social_hover_background_background_slideshow_transition_duration\":500,\"sg_social_hover_background_background_slideshow_background_size\":\"\",\"sg_social_hover_background_background_slideshow_background_position\":\"\",\"sg_social_hover_background_background_slideshow_lazyload\":\"\",\"sg_social_hover_background_background_slideshow_ken_burns\":\"\",\"sg_social_hover_background_background_slideshow_ken_burns_zoom_direction\":\"in\",\"sg_social_hover_border_border_border\":\"\",\"sg_social_hover_border_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"sg_social_hover_border_border_color\":\"\",\"sg_social_hover_boxshadow_box_shadow_box_shadow_type\":\"\",\"sg_social_hover_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"sg_social_hover_boxshadow_box_shadow_box_shadow_position\":\" \",\"sg_social_hover_textshadow_text_shadow_text_shadow_type\":\"\",\"sg_social_hover_textshadow_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"}},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"5d7eb15\",\"sg_social_normal_background_background_background\":\"classic\",\"__globals__\":{\"sg_social_normal_background_background_color\":\"globals\\/colors?id=5425a2a\"},\"sg_social_normal_color\":\"\",\"sg_social_normal_background_background_color\":\"\",\"sg_social_normal_background_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_color_b\":\"#f2295b\",\"sg_social_normal_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_normal_background_background_gradient_type\":\"linear\",\"sg_social_normal_background_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"sg_social_normal_background_background_gradient_position\":\"center center\",\"sg_social_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_normal_background_background_position\":\"\",\"sg_social_normal_background_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_attachment\":\"\",\"sg_social_normal_background_background_repeat\":\"\",\"sg_social_normal_background_background_size\":\"\",\"sg_social_normal_background_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_normal_background_background_video_link\":\"\",\"sg_social_normal_background_background_video_start\":\"\",\"sg_social_normal_background_background_video_end\":\"\",\"sg_social_normal_background_background_play_once\":\"\",\"sg_social_normal_background_background_play_on_mobile\":\"\",\"sg_social_normal_background_background_privacy_mode\":\"\",\"sg_social_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_normal_background_background_slideshow_gallery\":[],\"sg_social_normal_background_background_slideshow_loop\":\"yes\",\"sg_social_normal_background_background_slideshow_slide_duration\":5000,\"sg_social_normal_background_background_slideshow_slide_transition\":\"fade\",\"sg_social_normal_background_background_slideshow_transition_duration\":500,\"sg_social_normal_background_background_slideshow_background_size\":\"\",\"sg_social_normal_background_background_slideshow_background_position\":\"\",\"sg_social_normal_background_background_slideshow_lazyload\":\"\",\"sg_social_normal_background_background_slideshow_ken_burns\":\"\",\"sg_social_normal_background_background_slideshow_ken_burns_zoom_direction\":\"in\",\"sg_social_normal_border_border_border\":\"\",\"sg_social_normal_border_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"sg_social_normal_border_border_color\":\"\",\"sg_social_normal_boxshadow_box_shadow_box_shadow_type\":\"\",\"sg_social_normal_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"sg_social_normal_boxshadow_box_shadow_box_shadow_position\":\" \",\"sg_social_normal_textshadow_text_shadow_text_shadow_type\":\"\",\"sg_social_normal_textshadow_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"sg_social_hover_color\":\"\",\"sg_social_hover_background_background_background\":\"\",\"sg_social_hover_background_background_color\":\"\",\"sg_social_hover_background_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_color_b\":\"#f2295b\",\"sg_social_hover_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_hover_background_background_gradient_type\":\"linear\",\"sg_social_hover_background_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"sg_social_hover_background_background_gradient_position\":\"center center\",\"sg_social_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_hover_background_background_position\":\"\",\"sg_social_hover_background_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_attachment\":\"\",\"sg_social_hover_background_background_repeat\":\"\",\"sg_social_hover_background_background_size\":\"\",\"sg_social_hover_background_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_hover_background_background_video_link\":\"\",\"sg_social_hover_background_background_video_start\":\"\",\"sg_social_hover_background_background_video_end\":\"\",\"sg_social_hover_background_background_play_once\":\"\",\"sg_social_hover_background_background_play_on_mobile\":\"\",\"sg_social_hover_background_background_privacy_mode\":\"\",\"sg_social_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_hover_background_background_slideshow_gallery\":[],\"sg_social_hover_background_background_slideshow_loop\":\"yes\",\"sg_social_hover_background_background_slideshow_slide_duration\":5000,\"sg_social_hover_background_background_slideshow_slide_transition\":\"fade\",\"sg_social_hover_background_background_slideshow_transition_duration\":500,\"sg_social_hover_background_background_slideshow_background_size\":\"\",\"sg_social_hover_background_background_slideshow_background_position\":\"\",\"sg_social_hover_background_background_slideshow_lazyload\":\"\",\"sg_social_hover_background_background_slideshow_ken_burns\":\"\",\"sg_social_hover_background_background_slideshow_ken_burns_zoom_direction\":\"in\",\"sg_social_hover_border_border_border\":\"\",\"sg_social_hover_border_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"sg_social_hover_border_border_color\":\"\",\"sg_social_hover_boxshadow_box_shadow_box_shadow_type\":\"\",\"sg_social_hover_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"sg_social_hover_boxshadow_box_shadow_box_shadow_position\":\" \",\"sg_social_hover_textshadow_text_shadow_text_shadow_type\":\"\",\"sg_social_hover_textshadow_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"}},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"51fd3fb\",\"sg_social_normal_background_background_background\":\"classic\",\"__globals__\":{\"sg_social_normal_background_background_color\":\"globals\\/colors?id=5425a2a\"},\"sg_social_normal_color\":\"\",\"sg_social_normal_background_background_color\":\"\",\"sg_social_normal_background_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_color_b\":\"#f2295b\",\"sg_social_normal_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_normal_background_background_gradient_type\":\"linear\",\"sg_social_normal_background_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"sg_social_normal_background_background_gradient_position\":\"center center\",\"sg_social_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_normal_background_background_position\":\"\",\"sg_social_normal_background_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_attachment\":\"\",\"sg_social_normal_background_background_repeat\":\"\",\"sg_social_normal_background_background_size\":\"\",\"sg_social_normal_background_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_normal_background_background_video_link\":\"\",\"sg_social_normal_background_background_video_start\":\"\",\"sg_social_normal_background_background_video_end\":\"\",\"sg_social_normal_background_background_play_once\":\"\",\"sg_social_normal_background_background_play_on_mobile\":\"\",\"sg_social_normal_background_background_privacy_mode\":\"\",\"sg_social_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_normal_background_background_slideshow_gallery\":[],\"sg_social_normal_background_background_slideshow_loop\":\"yes\",\"sg_social_normal_background_background_slideshow_slide_duration\":5000,\"sg_social_normal_background_background_slideshow_slide_transition\":\"fade\",\"sg_social_normal_background_background_slideshow_transition_duration\":500,\"sg_social_normal_background_background_slideshow_background_size\":\"\",\"sg_social_normal_background_background_slideshow_background_position\":\"\",\"sg_social_normal_background_background_slideshow_lazyload\":\"\",\"sg_social_normal_background_background_slideshow_ken_burns\":\"\",\"sg_social_normal_background_background_slideshow_ken_burns_zoom_direction\":\"in\",\"sg_social_normal_border_border_border\":\"\",\"sg_social_normal_border_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"sg_social_normal_border_border_color\":\"\",\"sg_social_normal_boxshadow_box_shadow_box_shadow_type\":\"\",\"sg_social_normal_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"sg_social_normal_boxshadow_box_shadow_box_shadow_position\":\" \",\"sg_social_normal_textshadow_text_shadow_text_shadow_type\":\"\",\"sg_social_normal_textshadow_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"sg_social_hover_color\":\"\",\"sg_social_hover_background_background_background\":\"\",\"sg_social_hover_background_background_color\":\"\",\"sg_social_hover_background_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_color_b\":\"#f2295b\",\"sg_social_hover_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_hover_background_background_gradient_type\":\"linear\",\"sg_social_hover_background_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"sg_social_hover_background_background_gradient_position\":\"center center\",\"sg_social_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_hover_background_background_position\":\"\",\"sg_social_hover_background_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_attachment\":\"\",\"sg_social_hover_background_background_repeat\":\"\",\"sg_social_hover_background_background_size\":\"\",\"sg_social_hover_background_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_hover_background_background_video_link\":\"\",\"sg_social_hover_background_background_video_start\":\"\",\"sg_social_hover_background_background_video_end\":\"\",\"sg_social_hover_background_background_play_once\":\"\",\"sg_social_hover_background_background_play_on_mobile\":\"\",\"sg_social_hover_background_background_privacy_mode\":\"\",\"sg_social_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_hover_background_background_slideshow_gallery\":[],\"sg_social_hover_background_background_slideshow_loop\":\"yes\",\"sg_social_hover_background_background_slideshow_slide_duration\":5000,\"sg_social_hover_background_background_slideshow_slide_transition\":\"fade\",\"sg_social_hover_background_background_slideshow_transition_duration\":500,\"sg_social_hover_background_background_slideshow_background_size\":\"\",\"sg_social_hover_background_background_slideshow_background_position\":\"\",\"sg_social_hover_background_background_slideshow_lazyload\":\"\",\"sg_social_hover_background_background_slideshow_ken_burns\":\"\",\"sg_social_hover_background_background_slideshow_ken_burns_zoom_direction\":\"in\",\"sg_social_hover_border_border_border\":\"\",\"sg_social_hover_border_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"sg_social_hover_border_border_color\":\"\",\"sg_social_hover_boxshadow_box_shadow_box_shadow_type\":\"\",\"sg_social_hover_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"sg_social_hover_boxshadow_box_shadow_box_shadow_position\":\" \",\"sg_social_hover_textshadow_text_shadow_text_shadow_type\":\"\",\"sg_social_hover_textshadow_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"}}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"55\",\"left\":\"20\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"20\",\"left\":\"13\",\"isLinked\":false},\"jkit_transform_rotate\":{\"unit\":\"px\",\"size\":358,\"sizes\":[]},\"_background_background\":\"classic\",\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":30,\"blur\":30,\"spread\":-10,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"st_position_normal_color_responsive\":\"globals\\/colors?id=50714e7\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=secondary\"},\"sg_popup_close_icon\":{\"value\":\"fas fa-times\",\"library\":\"fa-solid\"},\"st_content_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_content_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_content_normal_background_background_slideshow_gallery\":[],\"st_content_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_content_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_content_hover_background_background_slideshow_gallery\":[],\"st_image_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_image_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_image_background_background_slideshow_gallery\":[],\"st_image_overlay_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_image_overlay_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_image_overlay_background_background_slideshow_gallery\":[],\"st_control_modal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_control_modal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_control_modal_background_background_slideshow_gallery\":[],\"st_close_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_close_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_close_normal_background_background_slideshow_gallery\":[],\"st_close_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_close_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_close_hover_background_background_slideshow_gallery\":[],\"st_hover_content_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_hover_content_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_hover_content_background_background_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"d6504cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7f3bf420\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"58\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/pp6.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Betty Clarke\",\"sg_member_position\":\"Social Teacher\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"4c2d797\",\"sg_social_normal_background_background_background\":\"classic\",\"__globals__\":{\"sg_social_normal_background_background_color\":\"globals\\/colors?id=5425a2a\"},\"sg_social_normal_color\":\"\",\"sg_social_normal_background_background_color\":\"\",\"sg_social_normal_background_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_color_b\":\"#f2295b\",\"sg_social_normal_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_normal_background_background_gradient_type\":\"linear\",\"sg_social_normal_background_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"sg_social_normal_background_background_gradient_position\":\"center center\",\"sg_social_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_normal_background_background_position\":\"\",\"sg_social_normal_background_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_attachment\":\"\",\"sg_social_normal_background_background_repeat\":\"\",\"sg_social_normal_background_background_size\":\"\",\"sg_social_normal_background_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_normal_background_background_video_link\":\"\",\"sg_social_normal_background_background_video_start\":\"\",\"sg_social_normal_background_background_video_end\":\"\",\"sg_social_normal_background_background_play_once\":\"\",\"sg_social_normal_background_background_play_on_mobile\":\"\",\"sg_social_normal_background_background_privacy_mode\":\"\",\"sg_social_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_normal_background_background_slideshow_gallery\":[],\"sg_social_normal_background_background_slideshow_loop\":\"yes\",\"sg_social_normal_background_background_slideshow_slide_duration\":5000,\"sg_social_normal_background_background_slideshow_slide_transition\":\"fade\",\"sg_social_normal_background_background_slideshow_transition_duration\":500,\"sg_social_normal_background_background_slideshow_background_size\":\"\",\"sg_social_normal_background_background_slideshow_background_position\":\"\",\"sg_social_normal_background_background_slideshow_lazyload\":\"\",\"sg_social_normal_background_background_slideshow_ken_burns\":\"\",\"sg_social_normal_background_background_slideshow_ken_burns_zoom_direction\":\"in\",\"sg_social_normal_border_border_border\":\"\",\"sg_social_normal_border_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"sg_social_normal_border_border_color\":\"\",\"sg_social_normal_boxshadow_box_shadow_box_shadow_type\":\"\",\"sg_social_normal_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"sg_social_normal_boxshadow_box_shadow_box_shadow_position\":\" \",\"sg_social_normal_textshadow_text_shadow_text_shadow_type\":\"\",\"sg_social_normal_textshadow_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"sg_social_hover_color\":\"\",\"sg_social_hover_background_background_background\":\"\",\"sg_social_hover_background_background_color\":\"\",\"sg_social_hover_background_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_color_b\":\"#f2295b\",\"sg_social_hover_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_hover_background_background_gradient_type\":\"linear\",\"sg_social_hover_background_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"sg_social_hover_background_background_gradient_position\":\"center center\",\"sg_social_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_hover_background_background_position\":\"\",\"sg_social_hover_background_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_attachment\":\"\",\"sg_social_hover_background_background_repeat\":\"\",\"sg_social_hover_background_background_size\":\"\",\"sg_social_hover_background_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_hover_background_background_video_link\":\"\",\"sg_social_hover_background_background_video_start\":\"\",\"sg_social_hover_background_background_video_end\":\"\",\"sg_social_hover_background_background_play_once\":\"\",\"sg_social_hover_background_background_play_on_mobile\":\"\",\"sg_social_hover_background_background_privacy_mode\":\"\",\"sg_social_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_hover_background_background_slideshow_gallery\":[],\"sg_social_hover_background_background_slideshow_loop\":\"yes\",\"sg_social_hover_background_background_slideshow_slide_duration\":5000,\"sg_social_hover_background_background_slideshow_slide_transition\":\"fade\",\"sg_social_hover_background_background_slideshow_transition_duration\":500,\"sg_social_hover_background_background_slideshow_background_size\":\"\",\"sg_social_hover_background_background_slideshow_background_position\":\"\",\"sg_social_hover_background_background_slideshow_lazyload\":\"\",\"sg_social_hover_background_background_slideshow_ken_burns\":\"\",\"sg_social_hover_background_background_slideshow_ken_burns_zoom_direction\":\"in\",\"sg_social_hover_border_border_border\":\"\",\"sg_social_hover_border_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"sg_social_hover_border_border_color\":\"\",\"sg_social_hover_boxshadow_box_shadow_box_shadow_type\":\"\",\"sg_social_hover_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"sg_social_hover_boxshadow_box_shadow_box_shadow_position\":\" \",\"sg_social_hover_textshadow_text_shadow_text_shadow_type\":\"\",\"sg_social_hover_textshadow_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"}},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"5d7eb15\",\"sg_social_normal_background_background_background\":\"classic\",\"__globals__\":{\"sg_social_normal_background_background_color\":\"globals\\/colors?id=5425a2a\"},\"sg_social_normal_color\":\"\",\"sg_social_normal_background_background_color\":\"\",\"sg_social_normal_background_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_color_b\":\"#f2295b\",\"sg_social_normal_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_normal_background_background_gradient_type\":\"linear\",\"sg_social_normal_background_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"sg_social_normal_background_background_gradient_position\":\"center center\",\"sg_social_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_normal_background_background_position\":\"\",\"sg_social_normal_background_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_attachment\":\"\",\"sg_social_normal_background_background_repeat\":\"\",\"sg_social_normal_background_background_size\":\"\",\"sg_social_normal_background_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_normal_background_background_video_link\":\"\",\"sg_social_normal_background_background_video_start\":\"\",\"sg_social_normal_background_background_video_end\":\"\",\"sg_social_normal_background_background_play_once\":\"\",\"sg_social_normal_background_background_play_on_mobile\":\"\",\"sg_social_normal_background_background_privacy_mode\":\"\",\"sg_social_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_normal_background_background_slideshow_gallery\":[],\"sg_social_normal_background_background_slideshow_loop\":\"yes\",\"sg_social_normal_background_background_slideshow_slide_duration\":5000,\"sg_social_normal_background_background_slideshow_slide_transition\":\"fade\",\"sg_social_normal_background_background_slideshow_transition_duration\":500,\"sg_social_normal_background_background_slideshow_background_size\":\"\",\"sg_social_normal_background_background_slideshow_background_position\":\"\",\"sg_social_normal_background_background_slideshow_lazyload\":\"\",\"sg_social_normal_background_background_slideshow_ken_burns\":\"\",\"sg_social_normal_background_background_slideshow_ken_burns_zoom_direction\":\"in\",\"sg_social_normal_border_border_border\":\"\",\"sg_social_normal_border_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"sg_social_normal_border_border_color\":\"\",\"sg_social_normal_boxshadow_box_shadow_box_shadow_type\":\"\",\"sg_social_normal_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"sg_social_normal_boxshadow_box_shadow_box_shadow_position\":\" \",\"sg_social_normal_textshadow_text_shadow_text_shadow_type\":\"\",\"sg_social_normal_textshadow_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"sg_social_hover_color\":\"\",\"sg_social_hover_background_background_background\":\"\",\"sg_social_hover_background_background_color\":\"\",\"sg_social_hover_background_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_color_b\":\"#f2295b\",\"sg_social_hover_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_hover_background_background_gradient_type\":\"linear\",\"sg_social_hover_background_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"sg_social_hover_background_background_gradient_position\":\"center center\",\"sg_social_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_hover_background_background_position\":\"\",\"sg_social_hover_background_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_attachment\":\"\",\"sg_social_hover_background_background_repeat\":\"\",\"sg_social_hover_background_background_size\":\"\",\"sg_social_hover_background_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_hover_background_background_video_link\":\"\",\"sg_social_hover_background_background_video_start\":\"\",\"sg_social_hover_background_background_video_end\":\"\",\"sg_social_hover_background_background_play_once\":\"\",\"sg_social_hover_background_background_play_on_mobile\":\"\",\"sg_social_hover_background_background_privacy_mode\":\"\",\"sg_social_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_hover_background_background_slideshow_gallery\":[],\"sg_social_hover_background_background_slideshow_loop\":\"yes\",\"sg_social_hover_background_background_slideshow_slide_duration\":5000,\"sg_social_hover_background_background_slideshow_slide_transition\":\"fade\",\"sg_social_hover_background_background_slideshow_transition_duration\":500,\"sg_social_hover_background_background_slideshow_background_size\":\"\",\"sg_social_hover_background_background_slideshow_background_position\":\"\",\"sg_social_hover_background_background_slideshow_lazyload\":\"\",\"sg_social_hover_background_background_slideshow_ken_burns\":\"\",\"sg_social_hover_background_background_slideshow_ken_burns_zoom_direction\":\"in\",\"sg_social_hover_border_border_border\":\"\",\"sg_social_hover_border_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"sg_social_hover_border_border_color\":\"\",\"sg_social_hover_boxshadow_box_shadow_box_shadow_type\":\"\",\"sg_social_hover_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"sg_social_hover_boxshadow_box_shadow_box_shadow_position\":\" \",\"sg_social_hover_textshadow_text_shadow_text_shadow_type\":\"\",\"sg_social_hover_textshadow_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"}},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"51fd3fb\",\"sg_social_normal_background_background_background\":\"classic\",\"__globals__\":{\"sg_social_normal_background_background_color\":\"globals\\/colors?id=5425a2a\"},\"sg_social_normal_color\":\"\",\"sg_social_normal_background_background_color\":\"\",\"sg_social_normal_background_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_color_b\":\"#f2295b\",\"sg_social_normal_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_normal_background_background_gradient_type\":\"linear\",\"sg_social_normal_background_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"sg_social_normal_background_background_gradient_position\":\"center center\",\"sg_social_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_normal_background_background_position\":\"\",\"sg_social_normal_background_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_attachment\":\"\",\"sg_social_normal_background_background_repeat\":\"\",\"sg_social_normal_background_background_size\":\"\",\"sg_social_normal_background_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_normal_background_background_video_link\":\"\",\"sg_social_normal_background_background_video_start\":\"\",\"sg_social_normal_background_background_video_end\":\"\",\"sg_social_normal_background_background_play_once\":\"\",\"sg_social_normal_background_background_play_on_mobile\":\"\",\"sg_social_normal_background_background_privacy_mode\":\"\",\"sg_social_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_normal_background_background_slideshow_gallery\":[],\"sg_social_normal_background_background_slideshow_loop\":\"yes\",\"sg_social_normal_background_background_slideshow_slide_duration\":5000,\"sg_social_normal_background_background_slideshow_slide_transition\":\"fade\",\"sg_social_normal_background_background_slideshow_transition_duration\":500,\"sg_social_normal_background_background_slideshow_background_size\":\"\",\"sg_social_normal_background_background_slideshow_background_position\":\"\",\"sg_social_normal_background_background_slideshow_lazyload\":\"\",\"sg_social_normal_background_background_slideshow_ken_burns\":\"\",\"sg_social_normal_background_background_slideshow_ken_burns_zoom_direction\":\"in\",\"sg_social_normal_border_border_border\":\"\",\"sg_social_normal_border_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"sg_social_normal_border_border_color\":\"\",\"sg_social_normal_boxshadow_box_shadow_box_shadow_type\":\"\",\"sg_social_normal_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"sg_social_normal_boxshadow_box_shadow_box_shadow_position\":\" \",\"sg_social_normal_textshadow_text_shadow_text_shadow_type\":\"\",\"sg_social_normal_textshadow_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"sg_social_hover_color\":\"\",\"sg_social_hover_background_background_background\":\"\",\"sg_social_hover_background_background_color\":\"\",\"sg_social_hover_background_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_color_b\":\"#f2295b\",\"sg_social_hover_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_hover_background_background_gradient_type\":\"linear\",\"sg_social_hover_background_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"sg_social_hover_background_background_gradient_position\":\"center center\",\"sg_social_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_hover_background_background_position\":\"\",\"sg_social_hover_background_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_attachment\":\"\",\"sg_social_hover_background_background_repeat\":\"\",\"sg_social_hover_background_background_size\":\"\",\"sg_social_hover_background_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_hover_background_background_video_link\":\"\",\"sg_social_hover_background_background_video_start\":\"\",\"sg_social_hover_background_background_video_end\":\"\",\"sg_social_hover_background_background_play_once\":\"\",\"sg_social_hover_background_background_play_on_mobile\":\"\",\"sg_social_hover_background_background_privacy_mode\":\"\",\"sg_social_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_hover_background_background_slideshow_gallery\":[],\"sg_social_hover_background_background_slideshow_loop\":\"yes\",\"sg_social_hover_background_background_slideshow_slide_duration\":5000,\"sg_social_hover_background_background_slideshow_slide_transition\":\"fade\",\"sg_social_hover_background_background_slideshow_transition_duration\":500,\"sg_social_hover_background_background_slideshow_background_size\":\"\",\"sg_social_hover_background_background_slideshow_background_position\":\"\",\"sg_social_hover_background_background_slideshow_lazyload\":\"\",\"sg_social_hover_background_background_slideshow_ken_burns\":\"\",\"sg_social_hover_background_background_slideshow_ken_burns_zoom_direction\":\"in\",\"sg_social_hover_border_border_border\":\"\",\"sg_social_hover_border_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"sg_social_hover_border_border_color\":\"\",\"sg_social_hover_boxshadow_box_shadow_box_shadow_type\":\"\",\"sg_social_hover_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"sg_social_hover_boxshadow_box_shadow_box_shadow_position\":\" \",\"sg_social_hover_textshadow_text_shadow_text_shadow_type\":\"\",\"sg_social_hover_textshadow_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"}}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"55\",\"left\":\"20\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"20\",\"left\":\"13\",\"isLinked\":false},\"jkit_transform_rotate\":{\"unit\":\"px\",\"size\":359,\"sizes\":[]},\"_background_background\":\"classic\",\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":30,\"blur\":30,\"spread\":-10,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"st_position_normal_color_responsive\":\"globals\\/colors?id=50714e7\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=secondary\"},\"sg_popup_close_icon\":{\"value\":\"fas fa-times\",\"library\":\"fa-solid\"},\"st_content_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_content_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_content_normal_background_background_slideshow_gallery\":[],\"st_content_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_content_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_content_hover_background_background_slideshow_gallery\":[],\"st_image_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_image_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_image_background_background_slideshow_gallery\":[],\"st_image_overlay_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_image_overlay_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_image_overlay_background_background_slideshow_gallery\":[],\"st_control_modal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_control_modal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_control_modal_background_background_slideshow_gallery\":[],\"st_close_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_close_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_close_normal_background_background_slideshow_gallery\":[],\"st_close_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_close_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_close_hover_background_background_slideshow_gallery\":[],\"st_hover_content_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_hover_content_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_hover_content_background_background_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"28726dac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"15\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/c3.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":13.103},\"_position\":\"absolute\",\"_offset_x\":{\"size\":1015,\"unit\":\"px\"},\"_offset_y\":{\"size\":-125,\"unit\":\"px\"},\"_z_index\":7,\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":56.966999999999999},\"_offset_x_tablet\":{\"size\":602,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":237,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-75,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-35,\"unit\":\"px\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"76aa879b\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"20\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=50714e7\"},\"overflow\":\"hidden\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"125\",\"left\":\"20\",\"isLinked\":false},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7f2b352b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"_inline_size_tablet\":100,\"_inline_size_mobile\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"218c00db\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"33a86894\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":12,\"blur\":12,\"spread\":-6,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=bb22fe7\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"32f6cd5c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"62\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/logoipsum-265.png\"},\"width_mobile\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"52bb1fe0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":12,\"blur\":12,\"spread\":-6,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=80e8ddb\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"964292b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"66\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/logoipsum-264.png\"},\"width_mobile\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3069062c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":12,\"blur\":12,\"spread\":-6,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=d38674d\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3a59f63e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"69\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/logoipsum-262.png\"},\"width_mobile\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3b8eadee\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7e47ff3b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":12,\"blur\":12,\"spread\":-6,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=d38674d\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"41575032\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"74\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/logoipsum-261.png\"},\"width_mobile\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"946997e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":12,\"blur\":12,\"spread\":-6,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=a00e83d\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2f3d9afd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"76\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/logoipsum-259.png\"},\"width_mobile\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"748e0046\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":12,\"blur\":12,\"spread\":-6,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=80e8ddb\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7e7b2d10\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"80\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/logoipsum-254.png\"},\"width_mobile\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2285d020\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"32363d26\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Trusted Partners\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"align_tablet\":\"center\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"29a16f5b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Donec hendrerit nibh in lectus molestie, id bibendum orci hendrerit. Curabitur euismod ante finibus nibh suscipit, vitae vehicula eros venenatis.<\\/p>\",\"align_tablet\":\"center\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3e3ddea9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"25\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/13-copy.jpg\"},\"background_repeat\":\"repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002,\"sizes\":[]},\"shape_divider_top\":\"tilt\",\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":123,\"sizes\":[]},\"shape_divider_top_flip\":\"yes\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=0a21634\",\"shape_divider_top_color\":\"globals\\/colors?id=50714e7\"},\"shape_divider_top_height_tablet\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"61e97a76\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"47240020\",\"elType\":\"widget\",\"settings\":{\"title\":\"Join Our Education center Now\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"},\"align_tablet\":\"center\",\"_margin_mobile\":{\"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},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"505b48ff\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"28\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/c2.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":37.046999999999997},\"_position\":\"absolute\",\"_offset_x\":{\"size\":508,\"unit\":\"px\"},\"_offset_y\":{\"size\":-53,\"unit\":\"px\"},\"_z_index\":7,\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":89.066999999999993},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":30.067},\"_offset_x_tablet\":{\"size\":94,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":252,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-60,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":28,\"unit\":\"px\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2a8f75cc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"14\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/c4.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":12.92},\"_position\":\"absolute\",\"_offset_x\":{\"size\":1290,\"unit\":\"px\"},\"_offset_y\":{\"size\":347,\"unit\":\"px\"},\"_z_index\":7,\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":42.299999999999997},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":118.3},\"_offset_x_tablet\":{\"size\":586,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":-72,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-396,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-43,\"unit\":\"px\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"718149a5\",\"elType\":\"widget\",\"settings\":{\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"},\"align_tablet\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4e72cc67\",\"elType\":\"widget\",\"settings\":{\"text\":\"Sign Up Now\",\"align\":\"left\",\"_z_index\":9,\"__globals__\":{\"background_color\":\"globals\\/colors?id=5425a2a\",\"button_background_hover_color\":\"globals\\/colors?id=7f7112a\"},\"align_tablet\":\"center\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"36411464\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"26\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/edge3.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":18.638000000000002},\"_offset_x\":{\"size\":172,\"unit\":\"px\"},\"_offset_y\":{\"size\":331,\"unit\":\"px\"},\"_z_index\":7,\"_margin\":{\"unit\":\"%\",\"top\":\"-60\",\"right\":\"45\",\"bottom\":\"0\",\"left\":\"-45\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":39,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5b13bd82\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"-150\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"50\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-160\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"24cd3aab\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"46\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/cute-elementary-kids-with-books-at-school-2022-12-16-18-15-57-utc-copy.jpg\"},\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":\"51\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/liki.png\"},\"width_tablet\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":88,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"684c4494\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"57\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/cute-elementary-kids-with-books-at-school-2022-12-16-18-15-57-utc2.png\"},\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_position\":\"absolute\",\"width_tablet\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":88,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(319,84,'_elementor_page_assets','a:0:{}'),(320,84,'_wp_page_template','elementor_header_footer'),(321,84,'envato_tk_source_kit','6'),(322,84,'envato_tk_source_index','2'),(323,87,'_elementor_edit_mode','builder'),(324,87,'_elementor_template_type','page'),(325,87,'_elementor_version','3.15.3'),(326,87,'_elementor_data','[{\"id\":\"31f9d985\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":\"7\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/2-copy.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"200\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"background_overlay_color\":\"globals\\/colors?id=ff9d88d\",\"shape_divider_bottom_color\":\"globals\\/colors?id=a00e83d\"},\"shape_divider_bottom\":\"tilt\",\"shape_divider_bottom_flip\":\"yes\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_color\":\"#DC434C\",\"shape_divider_bottom_color\":\"#F8F8F8\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"10954b0\",\"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},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"70577e4b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Teacher\",\"header_size\":\"h1\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"38a49cbb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"14\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/c4.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":7.7080000000000002},\"_position\":\"absolute\",\"_offset_x\":{\"size\":285,\"unit\":\"px\"},\"_offset_x_tablet\":{\"size\":133,\"unit\":\"px\"},\"_offset_y\":{\"size\":-32,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-27,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":21,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-14,\"unit\":\"px\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3c3fc44e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"15\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/c3.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":2.7629999999999999},\"_position\":\"absolute\",\"_offset_x\":{\"size\":357,\"unit\":\"px\"},\"_offset_x_tablet\":{\"size\":177,\"unit\":\"px\"},\"_offset_y\":{\"size\":71,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":41,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":47,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-38,\"unit\":\"px\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8f1cdc1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"17\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/edge.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":5.8129999999999997},\"_position\":\"absolute\",\"_offset_x\":{\"size\":858,\"unit\":\"px\"},\"_offset_x_tablet\":{\"size\":518,\"unit\":\"px\"},\"_offset_y\":{\"size\":-41,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-14,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":291,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-3,\"unit\":\"px\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3aae79f0\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=a00e83d\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2a7b44bf\",\"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},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4eaac904\",\"elType\":\"widget\",\"settings\":{\"title\":\"Meet our certified teacher\",\"align\":\"center\",\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"45da633a\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2ef8cebf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"71474678\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"30\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/pp1.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Harry Smith\",\"sg_member_position\":\"English Teacher\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"4c2d797\",\"sg_social_normal_background_background_background\":\"classic\",\"__globals__\":{\"sg_social_normal_background_background_color\":\"globals\\/colors?id=5425a2a\"},\"sg_social_normal_color\":\"\",\"sg_social_normal_background_background_color\":\"\",\"sg_social_normal_background_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_color_b\":\"#f2295b\",\"sg_social_normal_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_normal_background_background_gradient_type\":\"linear\",\"sg_social_normal_background_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"sg_social_normal_background_background_gradient_position\":\"center center\",\"sg_social_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_normal_background_background_position\":\"\",\"sg_social_normal_background_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_attachment\":\"\",\"sg_social_normal_background_background_repeat\":\"\",\"sg_social_normal_background_background_size\":\"\",\"sg_social_normal_background_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_normal_background_background_video_link\":\"\",\"sg_social_normal_background_background_video_start\":\"\",\"sg_social_normal_background_background_video_end\":\"\",\"sg_social_normal_background_background_play_once\":\"\",\"sg_social_normal_background_background_play_on_mobile\":\"\",\"sg_social_normal_background_background_privacy_mode\":\"\",\"sg_social_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_normal_background_background_slideshow_gallery\":[],\"sg_social_normal_background_background_slideshow_loop\":\"yes\",\"sg_social_normal_background_background_slideshow_slide_duration\":5000,\"sg_social_normal_background_background_slideshow_slide_transition\":\"fade\",\"sg_social_normal_background_background_slideshow_transition_duration\":500,\"sg_social_normal_background_background_slideshow_background_size\":\"\",\"sg_social_normal_background_background_slideshow_background_position\":\"\",\"sg_social_normal_background_background_slideshow_lazyload\":\"\",\"sg_social_normal_background_background_slideshow_ken_burns\":\"\",\"sg_social_normal_background_background_slideshow_ken_burns_zoom_direction\":\"in\",\"sg_social_normal_border_border_border\":\"\",\"sg_social_normal_border_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"sg_social_normal_border_border_color\":\"\",\"sg_social_normal_boxshadow_box_shadow_box_shadow_type\":\"\",\"sg_social_normal_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"sg_social_normal_boxshadow_box_shadow_box_shadow_position\":\" \",\"sg_social_normal_textshadow_text_shadow_text_shadow_type\":\"\",\"sg_social_normal_textshadow_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"sg_social_hover_color\":\"\",\"sg_social_hover_background_background_background\":\"\",\"sg_social_hover_background_background_color\":\"\",\"sg_social_hover_background_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_color_b\":\"#f2295b\",\"sg_social_hover_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_hover_background_background_gradient_type\":\"linear\",\"sg_social_hover_background_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"sg_social_hover_background_background_gradient_position\":\"center center\",\"sg_social_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_hover_background_background_position\":\"\",\"sg_social_hover_background_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_attachment\":\"\",\"sg_social_hover_background_background_repeat\":\"\",\"sg_social_hover_background_background_size\":\"\",\"sg_social_hover_background_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_hover_background_background_video_link\":\"\",\"sg_social_hover_background_background_video_start\":\"\",\"sg_social_hover_background_background_video_end\":\"\",\"sg_social_hover_background_background_play_once\":\"\",\"sg_social_hover_background_background_play_on_mobile\":\"\",\"sg_social_hover_background_background_privacy_mode\":\"\",\"sg_social_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_hover_background_background_slideshow_gallery\":[],\"sg_social_hover_background_background_slideshow_loop\":\"yes\",\"sg_social_hover_background_background_slideshow_slide_duration\":5000,\"sg_social_hover_background_background_slideshow_slide_transition\":\"fade\",\"sg_social_hover_background_background_slideshow_transition_duration\":500,\"sg_social_hover_background_background_slideshow_background_size\":\"\",\"sg_social_hover_background_background_slideshow_background_position\":\"\",\"sg_social_hover_background_background_slideshow_lazyload\":\"\",\"sg_social_hover_background_background_slideshow_ken_burns\":\"\",\"sg_social_hover_background_background_slideshow_ken_burns_zoom_direction\":\"in\",\"sg_social_hover_border_border_border\":\"\",\"sg_social_hover_border_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"sg_social_hover_border_border_color\":\"\",\"sg_social_hover_boxshadow_box_shadow_box_shadow_type\":\"\",\"sg_social_hover_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"sg_social_hover_boxshadow_box_shadow_box_shadow_position\":\" \",\"sg_social_hover_textshadow_text_shadow_text_shadow_type\":\"\",\"sg_social_hover_textshadow_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"}},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"5d7eb15\",\"sg_social_normal_background_background_background\":\"classic\",\"__globals__\":{\"sg_social_normal_background_background_color\":\"globals\\/colors?id=5425a2a\"},\"sg_social_normal_color\":\"\",\"sg_social_normal_background_background_color\":\"\",\"sg_social_normal_background_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_color_b\":\"#f2295b\",\"sg_social_normal_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_normal_background_background_gradient_type\":\"linear\",\"sg_social_normal_background_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"sg_social_normal_background_background_gradient_position\":\"center center\",\"sg_social_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_normal_background_background_position\":\"\",\"sg_social_normal_background_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_attachment\":\"\",\"sg_social_normal_background_background_repeat\":\"\",\"sg_social_normal_background_background_size\":\"\",\"sg_social_normal_background_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_normal_background_background_video_link\":\"\",\"sg_social_normal_background_background_video_start\":\"\",\"sg_social_normal_background_background_video_end\":\"\",\"sg_social_normal_background_background_play_once\":\"\",\"sg_social_normal_background_background_play_on_mobile\":\"\",\"sg_social_normal_background_background_privacy_mode\":\"\",\"sg_social_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_normal_background_background_slideshow_gallery\":[],\"sg_social_normal_background_background_slideshow_loop\":\"yes\",\"sg_social_normal_background_background_slideshow_slide_duration\":5000,\"sg_social_normal_background_background_slideshow_slide_transition\":\"fade\",\"sg_social_normal_background_background_slideshow_transition_duration\":500,\"sg_social_normal_background_background_slideshow_background_size\":\"\",\"sg_social_normal_background_background_slideshow_background_position\":\"\",\"sg_social_normal_background_background_slideshow_lazyload\":\"\",\"sg_social_normal_background_background_slideshow_ken_burns\":\"\",\"sg_social_normal_background_background_slideshow_ken_burns_zoom_direction\":\"in\",\"sg_social_normal_border_border_border\":\"\",\"sg_social_normal_border_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"sg_social_normal_border_border_color\":\"\",\"sg_social_normal_boxshadow_box_shadow_box_shadow_type\":\"\",\"sg_social_normal_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"sg_social_normal_boxshadow_box_shadow_box_shadow_position\":\" \",\"sg_social_normal_textshadow_text_shadow_text_shadow_type\":\"\",\"sg_social_normal_textshadow_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"sg_social_hover_color\":\"\",\"sg_social_hover_background_background_background\":\"\",\"sg_social_hover_background_background_color\":\"\",\"sg_social_hover_background_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_color_b\":\"#f2295b\",\"sg_social_hover_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_hover_background_background_gradient_type\":\"linear\",\"sg_social_hover_background_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"sg_social_hover_background_background_gradient_position\":\"center center\",\"sg_social_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_hover_background_background_position\":\"\",\"sg_social_hover_background_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_attachment\":\"\",\"sg_social_hover_background_background_repeat\":\"\",\"sg_social_hover_background_background_size\":\"\",\"sg_social_hover_background_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_hover_background_background_video_link\":\"\",\"sg_social_hover_background_background_video_start\":\"\",\"sg_social_hover_background_background_video_end\":\"\",\"sg_social_hover_background_background_play_once\":\"\",\"sg_social_hover_background_background_play_on_mobile\":\"\",\"sg_social_hover_background_background_privacy_mode\":\"\",\"sg_social_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_hover_background_background_slideshow_gallery\":[],\"sg_social_hover_background_background_slideshow_loop\":\"yes\",\"sg_social_hover_background_background_slideshow_slide_duration\":5000,\"sg_social_hover_background_background_slideshow_slide_transition\":\"fade\",\"sg_social_hover_background_background_slideshow_transition_duration\":500,\"sg_social_hover_background_background_slideshow_background_size\":\"\",\"sg_social_hover_background_background_slideshow_background_position\":\"\",\"sg_social_hover_background_background_slideshow_lazyload\":\"\",\"sg_social_hover_background_background_slideshow_ken_burns\":\"\",\"sg_social_hover_background_background_slideshow_ken_burns_zoom_direction\":\"in\",\"sg_social_hover_border_border_border\":\"\",\"sg_social_hover_border_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"sg_social_hover_border_border_color\":\"\",\"sg_social_hover_boxshadow_box_shadow_box_shadow_type\":\"\",\"sg_social_hover_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"sg_social_hover_boxshadow_box_shadow_box_shadow_position\":\" \",\"sg_social_hover_textshadow_text_shadow_text_shadow_type\":\"\",\"sg_social_hover_textshadow_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"}},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"51fd3fb\",\"sg_social_normal_background_background_background\":\"classic\",\"__globals__\":{\"sg_social_normal_background_background_color\":\"globals\\/colors?id=5425a2a\"},\"sg_social_normal_color\":\"\",\"sg_social_normal_background_background_color\":\"\",\"sg_social_normal_background_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_color_b\":\"#f2295b\",\"sg_social_normal_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_normal_background_background_gradient_type\":\"linear\",\"sg_social_normal_background_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"sg_social_normal_background_background_gradient_position\":\"center center\",\"sg_social_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_normal_background_background_position\":\"\",\"sg_social_normal_background_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_attachment\":\"\",\"sg_social_normal_background_background_repeat\":\"\",\"sg_social_normal_background_background_size\":\"\",\"sg_social_normal_background_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_normal_background_background_video_link\":\"\",\"sg_social_normal_background_background_video_start\":\"\",\"sg_social_normal_background_background_video_end\":\"\",\"sg_social_normal_background_background_play_once\":\"\",\"sg_social_normal_background_background_play_on_mobile\":\"\",\"sg_social_normal_background_background_privacy_mode\":\"\",\"sg_social_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_normal_background_background_slideshow_gallery\":[],\"sg_social_normal_background_background_slideshow_loop\":\"yes\",\"sg_social_normal_background_background_slideshow_slide_duration\":5000,\"sg_social_normal_background_background_slideshow_slide_transition\":\"fade\",\"sg_social_normal_background_background_slideshow_transition_duration\":500,\"sg_social_normal_background_background_slideshow_background_size\":\"\",\"sg_social_normal_background_background_slideshow_background_position\":\"\",\"sg_social_normal_background_background_slideshow_lazyload\":\"\",\"sg_social_normal_background_background_slideshow_ken_burns\":\"\",\"sg_social_normal_background_background_slideshow_ken_burns_zoom_direction\":\"in\",\"sg_social_normal_border_border_border\":\"\",\"sg_social_normal_border_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"sg_social_normal_border_border_color\":\"\",\"sg_social_normal_boxshadow_box_shadow_box_shadow_type\":\"\",\"sg_social_normal_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"sg_social_normal_boxshadow_box_shadow_box_shadow_position\":\" \",\"sg_social_normal_textshadow_text_shadow_text_shadow_type\":\"\",\"sg_social_normal_textshadow_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"sg_social_hover_color\":\"\",\"sg_social_hover_background_background_background\":\"\",\"sg_social_hover_background_background_color\":\"\",\"sg_social_hover_background_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_color_b\":\"#f2295b\",\"sg_social_hover_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_hover_background_background_gradient_type\":\"linear\",\"sg_social_hover_background_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"sg_social_hover_background_background_gradient_position\":\"center center\",\"sg_social_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_hover_background_background_position\":\"\",\"sg_social_hover_background_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_attachment\":\"\",\"sg_social_hover_background_background_repeat\":\"\",\"sg_social_hover_background_background_size\":\"\",\"sg_social_hover_background_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_hover_background_background_video_link\":\"\",\"sg_social_hover_background_background_video_start\":\"\",\"sg_social_hover_background_background_video_end\":\"\",\"sg_social_hover_background_background_play_once\":\"\",\"sg_social_hover_background_background_play_on_mobile\":\"\",\"sg_social_hover_background_background_privacy_mode\":\"\",\"sg_social_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_hover_background_background_slideshow_gallery\":[],\"sg_social_hover_background_background_slideshow_loop\":\"yes\",\"sg_social_hover_background_background_slideshow_slide_duration\":5000,\"sg_social_hover_background_background_slideshow_slide_transition\":\"fade\",\"sg_social_hover_background_background_slideshow_transition_duration\":500,\"sg_social_hover_background_background_slideshow_background_size\":\"\",\"sg_social_hover_background_background_slideshow_background_position\":\"\",\"sg_social_hover_background_background_slideshow_lazyload\":\"\",\"sg_social_hover_background_background_slideshow_ken_burns\":\"\",\"sg_social_hover_background_background_slideshow_ken_burns_zoom_direction\":\"in\",\"sg_social_hover_border_border_border\":\"\",\"sg_social_hover_border_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"sg_social_hover_border_border_color\":\"\",\"sg_social_hover_boxshadow_box_shadow_box_shadow_type\":\"\",\"sg_social_hover_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"sg_social_hover_boxshadow_box_shadow_box_shadow_position\":\" \",\"sg_social_hover_textshadow_text_shadow_text_shadow_type\":\"\",\"sg_social_hover_textshadow_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"}}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"55\",\"left\":\"20\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"20\",\"left\":\"13\",\"isLinked\":false},\"jkit_transform_rotate\":{\"unit\":\"px\",\"size\":358,\"sizes\":[]},\"_background_background\":\"classic\",\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":30,\"blur\":30,\"spread\":-10,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"st_position_normal_color_responsive\":\"globals\\/colors?id=50714e7\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=secondary\"},\"sg_popup_close_icon\":{\"value\":\"fas fa-times\",\"library\":\"fa-solid\"},\"st_content_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_content_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_content_normal_background_background_slideshow_gallery\":[],\"st_content_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_content_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_content_hover_background_background_slideshow_gallery\":[],\"st_image_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_image_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_image_background_background_slideshow_gallery\":[],\"st_image_overlay_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_image_overlay_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_image_overlay_background_background_slideshow_gallery\":[],\"st_control_modal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_control_modal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_control_modal_background_background_slideshow_gallery\":[],\"st_close_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_close_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_close_normal_background_background_slideshow_gallery\":[],\"st_close_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_close_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_close_hover_background_background_slideshow_gallery\":[],\"st_hover_content_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_hover_content_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_hover_content_background_background_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"2688ec8d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"126bc4f7\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"39\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/pp2.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Gregory Warren\",\"sg_member_position\":\"Social Teacher\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"4c2d797\",\"sg_social_normal_background_background_background\":\"classic\",\"__globals__\":{\"sg_social_normal_background_background_color\":\"globals\\/colors?id=5425a2a\"},\"sg_social_normal_color\":\"\",\"sg_social_normal_background_background_color\":\"\",\"sg_social_normal_background_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_color_b\":\"#f2295b\",\"sg_social_normal_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_normal_background_background_gradient_type\":\"linear\",\"sg_social_normal_background_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"sg_social_normal_background_background_gradient_position\":\"center center\",\"sg_social_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_normal_background_background_position\":\"\",\"sg_social_normal_background_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_attachment\":\"\",\"sg_social_normal_background_background_repeat\":\"\",\"sg_social_normal_background_background_size\":\"\",\"sg_social_normal_background_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_normal_background_background_video_link\":\"\",\"sg_social_normal_background_background_video_start\":\"\",\"sg_social_normal_background_background_video_end\":\"\",\"sg_social_normal_background_background_play_once\":\"\",\"sg_social_normal_background_background_play_on_mobile\":\"\",\"sg_social_normal_background_background_privacy_mode\":\"\",\"sg_social_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_normal_background_background_slideshow_gallery\":[],\"sg_social_normal_background_background_slideshow_loop\":\"yes\",\"sg_social_normal_background_background_slideshow_slide_duration\":5000,\"sg_social_normal_background_background_slideshow_slide_transition\":\"fade\",\"sg_social_normal_background_background_slideshow_transition_duration\":500,\"sg_social_normal_background_background_slideshow_background_size\":\"\",\"sg_social_normal_background_background_slideshow_background_position\":\"\",\"sg_social_normal_background_background_slideshow_lazyload\":\"\",\"sg_social_normal_background_background_slideshow_ken_burns\":\"\",\"sg_social_normal_background_background_slideshow_ken_burns_zoom_direction\":\"in\",\"sg_social_normal_border_border_border\":\"\",\"sg_social_normal_border_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"sg_social_normal_border_border_color\":\"\",\"sg_social_normal_boxshadow_box_shadow_box_shadow_type\":\"\",\"sg_social_normal_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"sg_social_normal_boxshadow_box_shadow_box_shadow_position\":\" \",\"sg_social_normal_textshadow_text_shadow_text_shadow_type\":\"\",\"sg_social_normal_textshadow_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"sg_social_hover_color\":\"\",\"sg_social_hover_background_background_background\":\"\",\"sg_social_hover_background_background_color\":\"\",\"sg_social_hover_background_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_color_b\":\"#f2295b\",\"sg_social_hover_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_hover_background_background_gradient_type\":\"linear\",\"sg_social_hover_background_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"sg_social_hover_background_background_gradient_position\":\"center center\",\"sg_social_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_hover_background_background_position\":\"\",\"sg_social_hover_background_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_attachment\":\"\",\"sg_social_hover_background_background_repeat\":\"\",\"sg_social_hover_background_background_size\":\"\",\"sg_social_hover_background_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_hover_background_background_video_link\":\"\",\"sg_social_hover_background_background_video_start\":\"\",\"sg_social_hover_background_background_video_end\":\"\",\"sg_social_hover_background_background_play_once\":\"\",\"sg_social_hover_background_background_play_on_mobile\":\"\",\"sg_social_hover_background_background_privacy_mode\":\"\",\"sg_social_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_hover_background_background_slideshow_gallery\":[],\"sg_social_hover_background_background_slideshow_loop\":\"yes\",\"sg_social_hover_background_background_slideshow_slide_duration\":5000,\"sg_social_hover_background_background_slideshow_slide_transition\":\"fade\",\"sg_social_hover_background_background_slideshow_transition_duration\":500,\"sg_social_hover_background_background_slideshow_background_size\":\"\",\"sg_social_hover_background_background_slideshow_background_position\":\"\",\"sg_social_hover_background_background_slideshow_lazyload\":\"\",\"sg_social_hover_background_background_slideshow_ken_burns\":\"\",\"sg_social_hover_background_background_slideshow_ken_burns_zoom_direction\":\"in\",\"sg_social_hover_border_border_border\":\"\",\"sg_social_hover_border_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"sg_social_hover_border_border_color\":\"\",\"sg_social_hover_boxshadow_box_shadow_box_shadow_type\":\"\",\"sg_social_hover_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"sg_social_hover_boxshadow_box_shadow_box_shadow_position\":\" \",\"sg_social_hover_textshadow_text_shadow_text_shadow_type\":\"\",\"sg_social_hover_textshadow_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"}},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"5d7eb15\",\"sg_social_normal_background_background_background\":\"classic\",\"__globals__\":{\"sg_social_normal_background_background_color\":\"globals\\/colors?id=5425a2a\"},\"sg_social_normal_color\":\"\",\"sg_social_normal_background_background_color\":\"\",\"sg_social_normal_background_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_color_b\":\"#f2295b\",\"sg_social_normal_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_normal_background_background_gradient_type\":\"linear\",\"sg_social_normal_background_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"sg_social_normal_background_background_gradient_position\":\"center center\",\"sg_social_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_normal_background_background_position\":\"\",\"sg_social_normal_background_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_attachment\":\"\",\"sg_social_normal_background_background_repeat\":\"\",\"sg_social_normal_background_background_size\":\"\",\"sg_social_normal_background_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_normal_background_background_video_link\":\"\",\"sg_social_normal_background_background_video_start\":\"\",\"sg_social_normal_background_background_video_end\":\"\",\"sg_social_normal_background_background_play_once\":\"\",\"sg_social_normal_background_background_play_on_mobile\":\"\",\"sg_social_normal_background_background_privacy_mode\":\"\",\"sg_social_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_normal_background_background_slideshow_gallery\":[],\"sg_social_normal_background_background_slideshow_loop\":\"yes\",\"sg_social_normal_background_background_slideshow_slide_duration\":5000,\"sg_social_normal_background_background_slideshow_slide_transition\":\"fade\",\"sg_social_normal_background_background_slideshow_transition_duration\":500,\"sg_social_normal_background_background_slideshow_background_size\":\"\",\"sg_social_normal_background_background_slideshow_background_position\":\"\",\"sg_social_normal_background_background_slideshow_lazyload\":\"\",\"sg_social_normal_background_background_slideshow_ken_burns\":\"\",\"sg_social_normal_background_background_slideshow_ken_burns_zoom_direction\":\"in\",\"sg_social_normal_border_border_border\":\"\",\"sg_social_normal_border_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"sg_social_normal_border_border_color\":\"\",\"sg_social_normal_boxshadow_box_shadow_box_shadow_type\":\"\",\"sg_social_normal_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"sg_social_normal_boxshadow_box_shadow_box_shadow_position\":\" \",\"sg_social_normal_textshadow_text_shadow_text_shadow_type\":\"\",\"sg_social_normal_textshadow_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"sg_social_hover_color\":\"\",\"sg_social_hover_background_background_background\":\"\",\"sg_social_hover_background_background_color\":\"\",\"sg_social_hover_background_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_color_b\":\"#f2295b\",\"sg_social_hover_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_hover_background_background_gradient_type\":\"linear\",\"sg_social_hover_background_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"sg_social_hover_background_background_gradient_position\":\"center center\",\"sg_social_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_hover_background_background_position\":\"\",\"sg_social_hover_background_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_attachment\":\"\",\"sg_social_hover_background_background_repeat\":\"\",\"sg_social_hover_background_background_size\":\"\",\"sg_social_hover_background_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_hover_background_background_video_link\":\"\",\"sg_social_hover_background_background_video_start\":\"\",\"sg_social_hover_background_background_video_end\":\"\",\"sg_social_hover_background_background_play_once\":\"\",\"sg_social_hover_background_background_play_on_mobile\":\"\",\"sg_social_hover_background_background_privacy_mode\":\"\",\"sg_social_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_hover_background_background_slideshow_gallery\":[],\"sg_social_hover_background_background_slideshow_loop\":\"yes\",\"sg_social_hover_background_background_slideshow_slide_duration\":5000,\"sg_social_hover_background_background_slideshow_slide_transition\":\"fade\",\"sg_social_hover_background_background_slideshow_transition_duration\":500,\"sg_social_hover_background_background_slideshow_background_size\":\"\",\"sg_social_hover_background_background_slideshow_background_position\":\"\",\"sg_social_hover_background_background_slideshow_lazyload\":\"\",\"sg_social_hover_background_background_slideshow_ken_burns\":\"\",\"sg_social_hover_background_background_slideshow_ken_burns_zoom_direction\":\"in\",\"sg_social_hover_border_border_border\":\"\",\"sg_social_hover_border_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"sg_social_hover_border_border_color\":\"\",\"sg_social_hover_boxshadow_box_shadow_box_shadow_type\":\"\",\"sg_social_hover_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"sg_social_hover_boxshadow_box_shadow_box_shadow_position\":\" \",\"sg_social_hover_textshadow_text_shadow_text_shadow_type\":\"\",\"sg_social_hover_textshadow_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"}},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"51fd3fb\",\"sg_social_normal_background_background_background\":\"classic\",\"__globals__\":{\"sg_social_normal_background_background_color\":\"globals\\/colors?id=5425a2a\"},\"sg_social_normal_color\":\"\",\"sg_social_normal_background_background_color\":\"\",\"sg_social_normal_background_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_color_b\":\"#f2295b\",\"sg_social_normal_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_normal_background_background_gradient_type\":\"linear\",\"sg_social_normal_background_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"sg_social_normal_background_background_gradient_position\":\"center center\",\"sg_social_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_normal_background_background_position\":\"\",\"sg_social_normal_background_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_attachment\":\"\",\"sg_social_normal_background_background_repeat\":\"\",\"sg_social_normal_background_background_size\":\"\",\"sg_social_normal_background_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_normal_background_background_video_link\":\"\",\"sg_social_normal_background_background_video_start\":\"\",\"sg_social_normal_background_background_video_end\":\"\",\"sg_social_normal_background_background_play_once\":\"\",\"sg_social_normal_background_background_play_on_mobile\":\"\",\"sg_social_normal_background_background_privacy_mode\":\"\",\"sg_social_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_normal_background_background_slideshow_gallery\":[],\"sg_social_normal_background_background_slideshow_loop\":\"yes\",\"sg_social_normal_background_background_slideshow_slide_duration\":5000,\"sg_social_normal_background_background_slideshow_slide_transition\":\"fade\",\"sg_social_normal_background_background_slideshow_transition_duration\":500,\"sg_social_normal_background_background_slideshow_background_size\":\"\",\"sg_social_normal_background_background_slideshow_background_position\":\"\",\"sg_social_normal_background_background_slideshow_lazyload\":\"\",\"sg_social_normal_background_background_slideshow_ken_burns\":\"\",\"sg_social_normal_background_background_slideshow_ken_burns_zoom_direction\":\"in\",\"sg_social_normal_border_border_border\":\"\",\"sg_social_normal_border_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"sg_social_normal_border_border_color\":\"\",\"sg_social_normal_boxshadow_box_shadow_box_shadow_type\":\"\",\"sg_social_normal_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"sg_social_normal_boxshadow_box_shadow_box_shadow_position\":\" \",\"sg_social_normal_textshadow_text_shadow_text_shadow_type\":\"\",\"sg_social_normal_textshadow_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"sg_social_hover_color\":\"\",\"sg_social_hover_background_background_background\":\"\",\"sg_social_hover_background_background_color\":\"\",\"sg_social_hover_background_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_color_b\":\"#f2295b\",\"sg_social_hover_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_hover_background_background_gradient_type\":\"linear\",\"sg_social_hover_background_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"sg_social_hover_background_background_gradient_position\":\"center center\",\"sg_social_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_hover_background_background_position\":\"\",\"sg_social_hover_background_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_attachment\":\"\",\"sg_social_hover_background_background_repeat\":\"\",\"sg_social_hover_background_background_size\":\"\",\"sg_social_hover_background_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_hover_background_background_video_link\":\"\",\"sg_social_hover_background_background_video_start\":\"\",\"sg_social_hover_background_background_video_end\":\"\",\"sg_social_hover_background_background_play_once\":\"\",\"sg_social_hover_background_background_play_on_mobile\":\"\",\"sg_social_hover_background_background_privacy_mode\":\"\",\"sg_social_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_hover_background_background_slideshow_gallery\":[],\"sg_social_hover_background_background_slideshow_loop\":\"yes\",\"sg_social_hover_background_background_slideshow_slide_duration\":5000,\"sg_social_hover_background_background_slideshow_slide_transition\":\"fade\",\"sg_social_hover_background_background_slideshow_transition_duration\":500,\"sg_social_hover_background_background_slideshow_background_size\":\"\",\"sg_social_hover_background_background_slideshow_background_position\":\"\",\"sg_social_hover_background_background_slideshow_lazyload\":\"\",\"sg_social_hover_background_background_slideshow_ken_burns\":\"\",\"sg_social_hover_background_background_slideshow_ken_burns_zoom_direction\":\"in\",\"sg_social_hover_border_border_border\":\"\",\"sg_social_hover_border_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"sg_social_hover_border_border_color\":\"\",\"sg_social_hover_boxshadow_box_shadow_box_shadow_type\":\"\",\"sg_social_hover_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"sg_social_hover_boxshadow_box_shadow_box_shadow_position\":\" \",\"sg_social_hover_textshadow_text_shadow_text_shadow_type\":\"\",\"sg_social_hover_textshadow_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"}}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"55\",\"left\":\"20\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"20\",\"left\":\"13\",\"isLinked\":false},\"jkit_transform_rotate\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_background_background\":\"classic\",\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":30,\"blur\":30,\"spread\":-10,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"st_position_normal_color_responsive\":\"globals\\/colors?id=50714e7\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=secondary\"},\"sg_popup_close_icon\":{\"value\":\"fas fa-times\",\"library\":\"fa-solid\"},\"st_content_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_content_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_content_normal_background_background_slideshow_gallery\":[],\"st_content_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_content_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_content_hover_background_background_slideshow_gallery\":[],\"st_image_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_image_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_image_background_background_slideshow_gallery\":[],\"st_image_overlay_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_image_overlay_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_image_overlay_background_background_slideshow_gallery\":[],\"st_control_modal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_control_modal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_control_modal_background_background_slideshow_gallery\":[],\"st_close_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_close_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_close_normal_background_background_slideshow_gallery\":[],\"st_close_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_close_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_close_hover_background_background_slideshow_gallery\":[],\"st_hover_content_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_hover_content_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_hover_content_background_background_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"7f5f26cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2ff3f16a\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"44\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/pp3.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Peter wong\",\"sg_member_position\":\"Math Teacher\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"4c2d797\",\"sg_social_normal_background_background_background\":\"classic\",\"__globals__\":{\"sg_social_normal_background_background_color\":\"globals\\/colors?id=5425a2a\"},\"sg_social_normal_color\":\"\",\"sg_social_normal_background_background_color\":\"\",\"sg_social_normal_background_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_color_b\":\"#f2295b\",\"sg_social_normal_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_normal_background_background_gradient_type\":\"linear\",\"sg_social_normal_background_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"sg_social_normal_background_background_gradient_position\":\"center center\",\"sg_social_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_normal_background_background_position\":\"\",\"sg_social_normal_background_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_attachment\":\"\",\"sg_social_normal_background_background_repeat\":\"\",\"sg_social_normal_background_background_size\":\"\",\"sg_social_normal_background_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_normal_background_background_video_link\":\"\",\"sg_social_normal_background_background_video_start\":\"\",\"sg_social_normal_background_background_video_end\":\"\",\"sg_social_normal_background_background_play_once\":\"\",\"sg_social_normal_background_background_play_on_mobile\":\"\",\"sg_social_normal_background_background_privacy_mode\":\"\",\"sg_social_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_normal_background_background_slideshow_gallery\":[],\"sg_social_normal_background_background_slideshow_loop\":\"yes\",\"sg_social_normal_background_background_slideshow_slide_duration\":5000,\"sg_social_normal_background_background_slideshow_slide_transition\":\"fade\",\"sg_social_normal_background_background_slideshow_transition_duration\":500,\"sg_social_normal_background_background_slideshow_background_size\":\"\",\"sg_social_normal_background_background_slideshow_background_position\":\"\",\"sg_social_normal_background_background_slideshow_lazyload\":\"\",\"sg_social_normal_background_background_slideshow_ken_burns\":\"\",\"sg_social_normal_background_background_slideshow_ken_burns_zoom_direction\":\"in\",\"sg_social_normal_border_border_border\":\"\",\"sg_social_normal_border_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"sg_social_normal_border_border_color\":\"\",\"sg_social_normal_boxshadow_box_shadow_box_shadow_type\":\"\",\"sg_social_normal_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"sg_social_normal_boxshadow_box_shadow_box_shadow_position\":\" \",\"sg_social_normal_textshadow_text_shadow_text_shadow_type\":\"\",\"sg_social_normal_textshadow_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"sg_social_hover_color\":\"\",\"sg_social_hover_background_background_background\":\"\",\"sg_social_hover_background_background_color\":\"\",\"sg_social_hover_background_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_color_b\":\"#f2295b\",\"sg_social_hover_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_hover_background_background_gradient_type\":\"linear\",\"sg_social_hover_background_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"sg_social_hover_background_background_gradient_position\":\"center center\",\"sg_social_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_hover_background_background_position\":\"\",\"sg_social_hover_background_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_attachment\":\"\",\"sg_social_hover_background_background_repeat\":\"\",\"sg_social_hover_background_background_size\":\"\",\"sg_social_hover_background_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_hover_background_background_video_link\":\"\",\"sg_social_hover_background_background_video_start\":\"\",\"sg_social_hover_background_background_video_end\":\"\",\"sg_social_hover_background_background_play_once\":\"\",\"sg_social_hover_background_background_play_on_mobile\":\"\",\"sg_social_hover_background_background_privacy_mode\":\"\",\"sg_social_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_hover_background_background_slideshow_gallery\":[],\"sg_social_hover_background_background_slideshow_loop\":\"yes\",\"sg_social_hover_background_background_slideshow_slide_duration\":5000,\"sg_social_hover_background_background_slideshow_slide_transition\":\"fade\",\"sg_social_hover_background_background_slideshow_transition_duration\":500,\"sg_social_hover_background_background_slideshow_background_size\":\"\",\"sg_social_hover_background_background_slideshow_background_position\":\"\",\"sg_social_hover_background_background_slideshow_lazyload\":\"\",\"sg_social_hover_background_background_slideshow_ken_burns\":\"\",\"sg_social_hover_background_background_slideshow_ken_burns_zoom_direction\":\"in\",\"sg_social_hover_border_border_border\":\"\",\"sg_social_hover_border_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"sg_social_hover_border_border_color\":\"\",\"sg_social_hover_boxshadow_box_shadow_box_shadow_type\":\"\",\"sg_social_hover_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"sg_social_hover_boxshadow_box_shadow_box_shadow_position\":\" \",\"sg_social_hover_textshadow_text_shadow_text_shadow_type\":\"\",\"sg_social_hover_textshadow_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"}},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"5d7eb15\",\"sg_social_normal_background_background_background\":\"classic\",\"__globals__\":{\"sg_social_normal_background_background_color\":\"globals\\/colors?id=5425a2a\"},\"sg_social_normal_color\":\"\",\"sg_social_normal_background_background_color\":\"\",\"sg_social_normal_background_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_color_b\":\"#f2295b\",\"sg_social_normal_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_normal_background_background_gradient_type\":\"linear\",\"sg_social_normal_background_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"sg_social_normal_background_background_gradient_position\":\"center center\",\"sg_social_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_normal_background_background_position\":\"\",\"sg_social_normal_background_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_attachment\":\"\",\"sg_social_normal_background_background_repeat\":\"\",\"sg_social_normal_background_background_size\":\"\",\"sg_social_normal_background_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_normal_background_background_video_link\":\"\",\"sg_social_normal_background_background_video_start\":\"\",\"sg_social_normal_background_background_video_end\":\"\",\"sg_social_normal_background_background_play_once\":\"\",\"sg_social_normal_background_background_play_on_mobile\":\"\",\"sg_social_normal_background_background_privacy_mode\":\"\",\"sg_social_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_normal_background_background_slideshow_gallery\":[],\"sg_social_normal_background_background_slideshow_loop\":\"yes\",\"sg_social_normal_background_background_slideshow_slide_duration\":5000,\"sg_social_normal_background_background_slideshow_slide_transition\":\"fade\",\"sg_social_normal_background_background_slideshow_transition_duration\":500,\"sg_social_normal_background_background_slideshow_background_size\":\"\",\"sg_social_normal_background_background_slideshow_background_position\":\"\",\"sg_social_normal_background_background_slideshow_lazyload\":\"\",\"sg_social_normal_background_background_slideshow_ken_burns\":\"\",\"sg_social_normal_background_background_slideshow_ken_burns_zoom_direction\":\"in\",\"sg_social_normal_border_border_border\":\"\",\"sg_social_normal_border_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"sg_social_normal_border_border_color\":\"\",\"sg_social_normal_boxshadow_box_shadow_box_shadow_type\":\"\",\"sg_social_normal_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"sg_social_normal_boxshadow_box_shadow_box_shadow_position\":\" \",\"sg_social_normal_textshadow_text_shadow_text_shadow_type\":\"\",\"sg_social_normal_textshadow_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"sg_social_hover_color\":\"\",\"sg_social_hover_background_background_background\":\"\",\"sg_social_hover_background_background_color\":\"\",\"sg_social_hover_background_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_color_b\":\"#f2295b\",\"sg_social_hover_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_hover_background_background_gradient_type\":\"linear\",\"sg_social_hover_background_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"sg_social_hover_background_background_gradient_position\":\"center center\",\"sg_social_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_hover_background_background_position\":\"\",\"sg_social_hover_background_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_attachment\":\"\",\"sg_social_hover_background_background_repeat\":\"\",\"sg_social_hover_background_background_size\":\"\",\"sg_social_hover_background_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_hover_background_background_video_link\":\"\",\"sg_social_hover_background_background_video_start\":\"\",\"sg_social_hover_background_background_video_end\":\"\",\"sg_social_hover_background_background_play_once\":\"\",\"sg_social_hover_background_background_play_on_mobile\":\"\",\"sg_social_hover_background_background_privacy_mode\":\"\",\"sg_social_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_hover_background_background_slideshow_gallery\":[],\"sg_social_hover_background_background_slideshow_loop\":\"yes\",\"sg_social_hover_background_background_slideshow_slide_duration\":5000,\"sg_social_hover_background_background_slideshow_slide_transition\":\"fade\",\"sg_social_hover_background_background_slideshow_transition_duration\":500,\"sg_social_hover_background_background_slideshow_background_size\":\"\",\"sg_social_hover_background_background_slideshow_background_position\":\"\",\"sg_social_hover_background_background_slideshow_lazyload\":\"\",\"sg_social_hover_background_background_slideshow_ken_burns\":\"\",\"sg_social_hover_background_background_slideshow_ken_burns_zoom_direction\":\"in\",\"sg_social_hover_border_border_border\":\"\",\"sg_social_hover_border_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"sg_social_hover_border_border_color\":\"\",\"sg_social_hover_boxshadow_box_shadow_box_shadow_type\":\"\",\"sg_social_hover_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"sg_social_hover_boxshadow_box_shadow_box_shadow_position\":\" \",\"sg_social_hover_textshadow_text_shadow_text_shadow_type\":\"\",\"sg_social_hover_textshadow_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"}},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"51fd3fb\",\"sg_social_normal_background_background_background\":\"classic\",\"__globals__\":{\"sg_social_normal_background_background_color\":\"globals\\/colors?id=5425a2a\"},\"sg_social_normal_color\":\"\",\"sg_social_normal_background_background_color\":\"\",\"sg_social_normal_background_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_color_b\":\"#f2295b\",\"sg_social_normal_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_normal_background_background_gradient_type\":\"linear\",\"sg_social_normal_background_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"sg_social_normal_background_background_gradient_position\":\"center center\",\"sg_social_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_normal_background_background_position\":\"\",\"sg_social_normal_background_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_attachment\":\"\",\"sg_social_normal_background_background_repeat\":\"\",\"sg_social_normal_background_background_size\":\"\",\"sg_social_normal_background_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_normal_background_background_video_link\":\"\",\"sg_social_normal_background_background_video_start\":\"\",\"sg_social_normal_background_background_video_end\":\"\",\"sg_social_normal_background_background_play_once\":\"\",\"sg_social_normal_background_background_play_on_mobile\":\"\",\"sg_social_normal_background_background_privacy_mode\":\"\",\"sg_social_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_normal_background_background_slideshow_gallery\":[],\"sg_social_normal_background_background_slideshow_loop\":\"yes\",\"sg_social_normal_background_background_slideshow_slide_duration\":5000,\"sg_social_normal_background_background_slideshow_slide_transition\":\"fade\",\"sg_social_normal_background_background_slideshow_transition_duration\":500,\"sg_social_normal_background_background_slideshow_background_size\":\"\",\"sg_social_normal_background_background_slideshow_background_position\":\"\",\"sg_social_normal_background_background_slideshow_lazyload\":\"\",\"sg_social_normal_background_background_slideshow_ken_burns\":\"\",\"sg_social_normal_background_background_slideshow_ken_burns_zoom_direction\":\"in\",\"sg_social_normal_border_border_border\":\"\",\"sg_social_normal_border_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"sg_social_normal_border_border_color\":\"\",\"sg_social_normal_boxshadow_box_shadow_box_shadow_type\":\"\",\"sg_social_normal_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"sg_social_normal_boxshadow_box_shadow_box_shadow_position\":\" \",\"sg_social_normal_textshadow_text_shadow_text_shadow_type\":\"\",\"sg_social_normal_textshadow_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"sg_social_hover_color\":\"\",\"sg_social_hover_background_background_background\":\"\",\"sg_social_hover_background_background_color\":\"\",\"sg_social_hover_background_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_color_b\":\"#f2295b\",\"sg_social_hover_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_hover_background_background_gradient_type\":\"linear\",\"sg_social_hover_background_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"sg_social_hover_background_background_gradient_position\":\"center center\",\"sg_social_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_hover_background_background_position\":\"\",\"sg_social_hover_background_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_attachment\":\"\",\"sg_social_hover_background_background_repeat\":\"\",\"sg_social_hover_background_background_size\":\"\",\"sg_social_hover_background_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_hover_background_background_video_link\":\"\",\"sg_social_hover_background_background_video_start\":\"\",\"sg_social_hover_background_background_video_end\":\"\",\"sg_social_hover_background_background_play_once\":\"\",\"sg_social_hover_background_background_play_on_mobile\":\"\",\"sg_social_hover_background_background_privacy_mode\":\"\",\"sg_social_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_hover_background_background_slideshow_gallery\":[],\"sg_social_hover_background_background_slideshow_loop\":\"yes\",\"sg_social_hover_background_background_slideshow_slide_duration\":5000,\"sg_social_hover_background_background_slideshow_slide_transition\":\"fade\",\"sg_social_hover_background_background_slideshow_transition_duration\":500,\"sg_social_hover_background_background_slideshow_background_size\":\"\",\"sg_social_hover_background_background_slideshow_background_position\":\"\",\"sg_social_hover_background_background_slideshow_lazyload\":\"\",\"sg_social_hover_background_background_slideshow_ken_burns\":\"\",\"sg_social_hover_background_background_slideshow_ken_burns_zoom_direction\":\"in\",\"sg_social_hover_border_border_border\":\"\",\"sg_social_hover_border_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"sg_social_hover_border_border_color\":\"\",\"sg_social_hover_boxshadow_box_shadow_box_shadow_type\":\"\",\"sg_social_hover_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"sg_social_hover_boxshadow_box_shadow_box_shadow_position\":\" \",\"sg_social_hover_textshadow_text_shadow_text_shadow_type\":\"\",\"sg_social_hover_textshadow_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"}}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"55\",\"left\":\"20\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"20\",\"left\":\"13\",\"isLinked\":false},\"jkit_transform_rotate\":{\"unit\":\"px\",\"size\":358,\"sizes\":[]},\"_background_background\":\"classic\",\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":30,\"blur\":30,\"spread\":-10,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"st_position_normal_color_responsive\":\"globals\\/colors?id=50714e7\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=secondary\"},\"sg_popup_close_icon\":{\"value\":\"fas fa-times\",\"library\":\"fa-solid\"},\"st_content_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_content_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_content_normal_background_background_slideshow_gallery\":[],\"st_content_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_content_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_content_hover_background_background_slideshow_gallery\":[],\"st_image_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_image_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_image_background_background_slideshow_gallery\":[],\"st_image_overlay_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_image_overlay_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_image_overlay_background_background_slideshow_gallery\":[],\"st_control_modal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_control_modal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_control_modal_background_background_slideshow_gallery\":[],\"st_close_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_close_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_close_normal_background_background_slideshow_gallery\":[],\"st_close_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_close_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_close_hover_background_background_slideshow_gallery\":[],\"st_hover_content_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_hover_content_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_hover_content_background_background_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3a26f6ba\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5c835561\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6798134f\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"49\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/pp5.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Jimmy Smith\",\"sg_member_position\":\"English Teacher\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"4c2d797\",\"sg_social_normal_background_background_background\":\"classic\",\"__globals__\":{\"sg_social_normal_background_background_color\":\"globals\\/colors?id=5425a2a\"},\"sg_social_normal_color\":\"\",\"sg_social_normal_background_background_color\":\"\",\"sg_social_normal_background_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_color_b\":\"#f2295b\",\"sg_social_normal_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_normal_background_background_gradient_type\":\"linear\",\"sg_social_normal_background_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"sg_social_normal_background_background_gradient_position\":\"center center\",\"sg_social_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_normal_background_background_position\":\"\",\"sg_social_normal_background_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_attachment\":\"\",\"sg_social_normal_background_background_repeat\":\"\",\"sg_social_normal_background_background_size\":\"\",\"sg_social_normal_background_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_normal_background_background_video_link\":\"\",\"sg_social_normal_background_background_video_start\":\"\",\"sg_social_normal_background_background_video_end\":\"\",\"sg_social_normal_background_background_play_once\":\"\",\"sg_social_normal_background_background_play_on_mobile\":\"\",\"sg_social_normal_background_background_privacy_mode\":\"\",\"sg_social_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_normal_background_background_slideshow_gallery\":[],\"sg_social_normal_background_background_slideshow_loop\":\"yes\",\"sg_social_normal_background_background_slideshow_slide_duration\":5000,\"sg_social_normal_background_background_slideshow_slide_transition\":\"fade\",\"sg_social_normal_background_background_slideshow_transition_duration\":500,\"sg_social_normal_background_background_slideshow_background_size\":\"\",\"sg_social_normal_background_background_slideshow_background_position\":\"\",\"sg_social_normal_background_background_slideshow_lazyload\":\"\",\"sg_social_normal_background_background_slideshow_ken_burns\":\"\",\"sg_social_normal_background_background_slideshow_ken_burns_zoom_direction\":\"in\",\"sg_social_normal_border_border_border\":\"\",\"sg_social_normal_border_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"sg_social_normal_border_border_color\":\"\",\"sg_social_normal_boxshadow_box_shadow_box_shadow_type\":\"\",\"sg_social_normal_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"sg_social_normal_boxshadow_box_shadow_box_shadow_position\":\" \",\"sg_social_normal_textshadow_text_shadow_text_shadow_type\":\"\",\"sg_social_normal_textshadow_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"sg_social_hover_color\":\"\",\"sg_social_hover_background_background_background\":\"\",\"sg_social_hover_background_background_color\":\"\",\"sg_social_hover_background_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_color_b\":\"#f2295b\",\"sg_social_hover_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_hover_background_background_gradient_type\":\"linear\",\"sg_social_hover_background_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"sg_social_hover_background_background_gradient_position\":\"center center\",\"sg_social_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_hover_background_background_position\":\"\",\"sg_social_hover_background_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_attachment\":\"\",\"sg_social_hover_background_background_repeat\":\"\",\"sg_social_hover_background_background_size\":\"\",\"sg_social_hover_background_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_hover_background_background_video_link\":\"\",\"sg_social_hover_background_background_video_start\":\"\",\"sg_social_hover_background_background_video_end\":\"\",\"sg_social_hover_background_background_play_once\":\"\",\"sg_social_hover_background_background_play_on_mobile\":\"\",\"sg_social_hover_background_background_privacy_mode\":\"\",\"sg_social_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_hover_background_background_slideshow_gallery\":[],\"sg_social_hover_background_background_slideshow_loop\":\"yes\",\"sg_social_hover_background_background_slideshow_slide_duration\":5000,\"sg_social_hover_background_background_slideshow_slide_transition\":\"fade\",\"sg_social_hover_background_background_slideshow_transition_duration\":500,\"sg_social_hover_background_background_slideshow_background_size\":\"\",\"sg_social_hover_background_background_slideshow_background_position\":\"\",\"sg_social_hover_background_background_slideshow_lazyload\":\"\",\"sg_social_hover_background_background_slideshow_ken_burns\":\"\",\"sg_social_hover_background_background_slideshow_ken_burns_zoom_direction\":\"in\",\"sg_social_hover_border_border_border\":\"\",\"sg_social_hover_border_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"sg_social_hover_border_border_color\":\"\",\"sg_social_hover_boxshadow_box_shadow_box_shadow_type\":\"\",\"sg_social_hover_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"sg_social_hover_boxshadow_box_shadow_box_shadow_position\":\" \",\"sg_social_hover_textshadow_text_shadow_text_shadow_type\":\"\",\"sg_social_hover_textshadow_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"}},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"5d7eb15\",\"sg_social_normal_background_background_background\":\"classic\",\"__globals__\":{\"sg_social_normal_background_background_color\":\"globals\\/colors?id=5425a2a\"},\"sg_social_normal_color\":\"\",\"sg_social_normal_background_background_color\":\"\",\"sg_social_normal_background_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_color_b\":\"#f2295b\",\"sg_social_normal_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_normal_background_background_gradient_type\":\"linear\",\"sg_social_normal_background_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"sg_social_normal_background_background_gradient_position\":\"center center\",\"sg_social_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_normal_background_background_position\":\"\",\"sg_social_normal_background_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_attachment\":\"\",\"sg_social_normal_background_background_repeat\":\"\",\"sg_social_normal_background_background_size\":\"\",\"sg_social_normal_background_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_normal_background_background_video_link\":\"\",\"sg_social_normal_background_background_video_start\":\"\",\"sg_social_normal_background_background_video_end\":\"\",\"sg_social_normal_background_background_play_once\":\"\",\"sg_social_normal_background_background_play_on_mobile\":\"\",\"sg_social_normal_background_background_privacy_mode\":\"\",\"sg_social_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_normal_background_background_slideshow_gallery\":[],\"sg_social_normal_background_background_slideshow_loop\":\"yes\",\"sg_social_normal_background_background_slideshow_slide_duration\":5000,\"sg_social_normal_background_background_slideshow_slide_transition\":\"fade\",\"sg_social_normal_background_background_slideshow_transition_duration\":500,\"sg_social_normal_background_background_slideshow_background_size\":\"\",\"sg_social_normal_background_background_slideshow_background_position\":\"\",\"sg_social_normal_background_background_slideshow_lazyload\":\"\",\"sg_social_normal_background_background_slideshow_ken_burns\":\"\",\"sg_social_normal_background_background_slideshow_ken_burns_zoom_direction\":\"in\",\"sg_social_normal_border_border_border\":\"\",\"sg_social_normal_border_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"sg_social_normal_border_border_color\":\"\",\"sg_social_normal_boxshadow_box_shadow_box_shadow_type\":\"\",\"sg_social_normal_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"sg_social_normal_boxshadow_box_shadow_box_shadow_position\":\" \",\"sg_social_normal_textshadow_text_shadow_text_shadow_type\":\"\",\"sg_social_normal_textshadow_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"sg_social_hover_color\":\"\",\"sg_social_hover_background_background_background\":\"\",\"sg_social_hover_background_background_color\":\"\",\"sg_social_hover_background_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_color_b\":\"#f2295b\",\"sg_social_hover_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_hover_background_background_gradient_type\":\"linear\",\"sg_social_hover_background_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"sg_social_hover_background_background_gradient_position\":\"center center\",\"sg_social_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_hover_background_background_position\":\"\",\"sg_social_hover_background_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_attachment\":\"\",\"sg_social_hover_background_background_repeat\":\"\",\"sg_social_hover_background_background_size\":\"\",\"sg_social_hover_background_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_hover_background_background_video_link\":\"\",\"sg_social_hover_background_background_video_start\":\"\",\"sg_social_hover_background_background_video_end\":\"\",\"sg_social_hover_background_background_play_once\":\"\",\"sg_social_hover_background_background_play_on_mobile\":\"\",\"sg_social_hover_background_background_privacy_mode\":\"\",\"sg_social_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_hover_background_background_slideshow_gallery\":[],\"sg_social_hover_background_background_slideshow_loop\":\"yes\",\"sg_social_hover_background_background_slideshow_slide_duration\":5000,\"sg_social_hover_background_background_slideshow_slide_transition\":\"fade\",\"sg_social_hover_background_background_slideshow_transition_duration\":500,\"sg_social_hover_background_background_slideshow_background_size\":\"\",\"sg_social_hover_background_background_slideshow_background_position\":\"\",\"sg_social_hover_background_background_slideshow_lazyload\":\"\",\"sg_social_hover_background_background_slideshow_ken_burns\":\"\",\"sg_social_hover_background_background_slideshow_ken_burns_zoom_direction\":\"in\",\"sg_social_hover_border_border_border\":\"\",\"sg_social_hover_border_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"sg_social_hover_border_border_color\":\"\",\"sg_social_hover_boxshadow_box_shadow_box_shadow_type\":\"\",\"sg_social_hover_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"sg_social_hover_boxshadow_box_shadow_box_shadow_position\":\" \",\"sg_social_hover_textshadow_text_shadow_text_shadow_type\":\"\",\"sg_social_hover_textshadow_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"}},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"51fd3fb\",\"sg_social_normal_background_background_background\":\"classic\",\"__globals__\":{\"sg_social_normal_background_background_color\":\"globals\\/colors?id=5425a2a\"},\"sg_social_normal_color\":\"\",\"sg_social_normal_background_background_color\":\"\",\"sg_social_normal_background_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_color_b\":\"#f2295b\",\"sg_social_normal_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_normal_background_background_gradient_type\":\"linear\",\"sg_social_normal_background_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"sg_social_normal_background_background_gradient_position\":\"center center\",\"sg_social_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_normal_background_background_position\":\"\",\"sg_social_normal_background_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_attachment\":\"\",\"sg_social_normal_background_background_repeat\":\"\",\"sg_social_normal_background_background_size\":\"\",\"sg_social_normal_background_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_normal_background_background_video_link\":\"\",\"sg_social_normal_background_background_video_start\":\"\",\"sg_social_normal_background_background_video_end\":\"\",\"sg_social_normal_background_background_play_once\":\"\",\"sg_social_normal_background_background_play_on_mobile\":\"\",\"sg_social_normal_background_background_privacy_mode\":\"\",\"sg_social_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_normal_background_background_slideshow_gallery\":[],\"sg_social_normal_background_background_slideshow_loop\":\"yes\",\"sg_social_normal_background_background_slideshow_slide_duration\":5000,\"sg_social_normal_background_background_slideshow_slide_transition\":\"fade\",\"sg_social_normal_background_background_slideshow_transition_duration\":500,\"sg_social_normal_background_background_slideshow_background_size\":\"\",\"sg_social_normal_background_background_slideshow_background_position\":\"\",\"sg_social_normal_background_background_slideshow_lazyload\":\"\",\"sg_social_normal_background_background_slideshow_ken_burns\":\"\",\"sg_social_normal_background_background_slideshow_ken_burns_zoom_direction\":\"in\",\"sg_social_normal_border_border_border\":\"\",\"sg_social_normal_border_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"sg_social_normal_border_border_color\":\"\",\"sg_social_normal_boxshadow_box_shadow_box_shadow_type\":\"\",\"sg_social_normal_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"sg_social_normal_boxshadow_box_shadow_box_shadow_position\":\" \",\"sg_social_normal_textshadow_text_shadow_text_shadow_type\":\"\",\"sg_social_normal_textshadow_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"sg_social_hover_color\":\"\",\"sg_social_hover_background_background_background\":\"\",\"sg_social_hover_background_background_color\":\"\",\"sg_social_hover_background_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_color_b\":\"#f2295b\",\"sg_social_hover_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_hover_background_background_gradient_type\":\"linear\",\"sg_social_hover_background_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"sg_social_hover_background_background_gradient_position\":\"center center\",\"sg_social_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_hover_background_background_position\":\"\",\"sg_social_hover_background_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_attachment\":\"\",\"sg_social_hover_background_background_repeat\":\"\",\"sg_social_hover_background_background_size\":\"\",\"sg_social_hover_background_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_hover_background_background_video_link\":\"\",\"sg_social_hover_background_background_video_start\":\"\",\"sg_social_hover_background_background_video_end\":\"\",\"sg_social_hover_background_background_play_once\":\"\",\"sg_social_hover_background_background_play_on_mobile\":\"\",\"sg_social_hover_background_background_privacy_mode\":\"\",\"sg_social_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_hover_background_background_slideshow_gallery\":[],\"sg_social_hover_background_background_slideshow_loop\":\"yes\",\"sg_social_hover_background_background_slideshow_slide_duration\":5000,\"sg_social_hover_background_background_slideshow_slide_transition\":\"fade\",\"sg_social_hover_background_background_slideshow_transition_duration\":500,\"sg_social_hover_background_background_slideshow_background_size\":\"\",\"sg_social_hover_background_background_slideshow_background_position\":\"\",\"sg_social_hover_background_background_slideshow_lazyload\":\"\",\"sg_social_hover_background_background_slideshow_ken_burns\":\"\",\"sg_social_hover_background_background_slideshow_ken_burns_zoom_direction\":\"in\",\"sg_social_hover_border_border_border\":\"\",\"sg_social_hover_border_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"sg_social_hover_border_border_color\":\"\",\"sg_social_hover_boxshadow_box_shadow_box_shadow_type\":\"\",\"sg_social_hover_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"sg_social_hover_boxshadow_box_shadow_box_shadow_position\":\" \",\"sg_social_hover_textshadow_text_shadow_text_shadow_type\":\"\",\"sg_social_hover_textshadow_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"}}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"55\",\"left\":\"20\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"20\",\"left\":\"13\",\"isLinked\":false},\"jkit_transform_rotate\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_background_background\":\"classic\",\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":30,\"blur\":30,\"spread\":-10,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"st_position_normal_color_responsive\":\"globals\\/colors?id=50714e7\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=secondary\"},\"sg_popup_close_icon\":{\"value\":\"fas fa-times\",\"library\":\"fa-solid\"},\"st_content_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_content_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_content_normal_background_background_slideshow_gallery\":[],\"st_content_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_content_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_content_hover_background_background_slideshow_gallery\":[],\"st_image_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_image_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_image_background_background_slideshow_gallery\":[],\"st_image_overlay_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_image_overlay_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_image_overlay_background_background_slideshow_gallery\":[],\"st_control_modal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_control_modal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_control_modal_background_background_slideshow_gallery\":[],\"st_close_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_close_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_close_normal_background_background_slideshow_gallery\":[],\"st_close_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_close_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_close_hover_background_background_slideshow_gallery\":[],\"st_hover_content_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_hover_content_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_hover_content_background_background_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"2639d96b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4d1bdb2f\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"53\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/pp4.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Edward Connor\",\"sg_member_position\":\"Math Teacher\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"4c2d797\",\"sg_social_normal_background_background_background\":\"classic\",\"__globals__\":{\"sg_social_normal_background_background_color\":\"globals\\/colors?id=5425a2a\"},\"sg_social_normal_color\":\"\",\"sg_social_normal_background_background_color\":\"\",\"sg_social_normal_background_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_color_b\":\"#f2295b\",\"sg_social_normal_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_normal_background_background_gradient_type\":\"linear\",\"sg_social_normal_background_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"sg_social_normal_background_background_gradient_position\":\"center center\",\"sg_social_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_normal_background_background_position\":\"\",\"sg_social_normal_background_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_attachment\":\"\",\"sg_social_normal_background_background_repeat\":\"\",\"sg_social_normal_background_background_size\":\"\",\"sg_social_normal_background_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_normal_background_background_video_link\":\"\",\"sg_social_normal_background_background_video_start\":\"\",\"sg_social_normal_background_background_video_end\":\"\",\"sg_social_normal_background_background_play_once\":\"\",\"sg_social_normal_background_background_play_on_mobile\":\"\",\"sg_social_normal_background_background_privacy_mode\":\"\",\"sg_social_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_normal_background_background_slideshow_gallery\":[],\"sg_social_normal_background_background_slideshow_loop\":\"yes\",\"sg_social_normal_background_background_slideshow_slide_duration\":5000,\"sg_social_normal_background_background_slideshow_slide_transition\":\"fade\",\"sg_social_normal_background_background_slideshow_transition_duration\":500,\"sg_social_normal_background_background_slideshow_background_size\":\"\",\"sg_social_normal_background_background_slideshow_background_position\":\"\",\"sg_social_normal_background_background_slideshow_lazyload\":\"\",\"sg_social_normal_background_background_slideshow_ken_burns\":\"\",\"sg_social_normal_background_background_slideshow_ken_burns_zoom_direction\":\"in\",\"sg_social_normal_border_border_border\":\"\",\"sg_social_normal_border_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"sg_social_normal_border_border_color\":\"\",\"sg_social_normal_boxshadow_box_shadow_box_shadow_type\":\"\",\"sg_social_normal_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"sg_social_normal_boxshadow_box_shadow_box_shadow_position\":\" \",\"sg_social_normal_textshadow_text_shadow_text_shadow_type\":\"\",\"sg_social_normal_textshadow_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"sg_social_hover_color\":\"\",\"sg_social_hover_background_background_background\":\"\",\"sg_social_hover_background_background_color\":\"\",\"sg_social_hover_background_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_color_b\":\"#f2295b\",\"sg_social_hover_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_hover_background_background_gradient_type\":\"linear\",\"sg_social_hover_background_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"sg_social_hover_background_background_gradient_position\":\"center center\",\"sg_social_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_hover_background_background_position\":\"\",\"sg_social_hover_background_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_attachment\":\"\",\"sg_social_hover_background_background_repeat\":\"\",\"sg_social_hover_background_background_size\":\"\",\"sg_social_hover_background_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_hover_background_background_video_link\":\"\",\"sg_social_hover_background_background_video_start\":\"\",\"sg_social_hover_background_background_video_end\":\"\",\"sg_social_hover_background_background_play_once\":\"\",\"sg_social_hover_background_background_play_on_mobile\":\"\",\"sg_social_hover_background_background_privacy_mode\":\"\",\"sg_social_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_hover_background_background_slideshow_gallery\":[],\"sg_social_hover_background_background_slideshow_loop\":\"yes\",\"sg_social_hover_background_background_slideshow_slide_duration\":5000,\"sg_social_hover_background_background_slideshow_slide_transition\":\"fade\",\"sg_social_hover_background_background_slideshow_transition_duration\":500,\"sg_social_hover_background_background_slideshow_background_size\":\"\",\"sg_social_hover_background_background_slideshow_background_position\":\"\",\"sg_social_hover_background_background_slideshow_lazyload\":\"\",\"sg_social_hover_background_background_slideshow_ken_burns\":\"\",\"sg_social_hover_background_background_slideshow_ken_burns_zoom_direction\":\"in\",\"sg_social_hover_border_border_border\":\"\",\"sg_social_hover_border_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"sg_social_hover_border_border_color\":\"\",\"sg_social_hover_boxshadow_box_shadow_box_shadow_type\":\"\",\"sg_social_hover_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"sg_social_hover_boxshadow_box_shadow_box_shadow_position\":\" \",\"sg_social_hover_textshadow_text_shadow_text_shadow_type\":\"\",\"sg_social_hover_textshadow_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"}},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"5d7eb15\",\"sg_social_normal_background_background_background\":\"classic\",\"__globals__\":{\"sg_social_normal_background_background_color\":\"globals\\/colors?id=5425a2a\"},\"sg_social_normal_color\":\"\",\"sg_social_normal_background_background_color\":\"\",\"sg_social_normal_background_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_color_b\":\"#f2295b\",\"sg_social_normal_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_normal_background_background_gradient_type\":\"linear\",\"sg_social_normal_background_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"sg_social_normal_background_background_gradient_position\":\"center center\",\"sg_social_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_normal_background_background_position\":\"\",\"sg_social_normal_background_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_attachment\":\"\",\"sg_social_normal_background_background_repeat\":\"\",\"sg_social_normal_background_background_size\":\"\",\"sg_social_normal_background_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_normal_background_background_video_link\":\"\",\"sg_social_normal_background_background_video_start\":\"\",\"sg_social_normal_background_background_video_end\":\"\",\"sg_social_normal_background_background_play_once\":\"\",\"sg_social_normal_background_background_play_on_mobile\":\"\",\"sg_social_normal_background_background_privacy_mode\":\"\",\"sg_social_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_normal_background_background_slideshow_gallery\":[],\"sg_social_normal_background_background_slideshow_loop\":\"yes\",\"sg_social_normal_background_background_slideshow_slide_duration\":5000,\"sg_social_normal_background_background_slideshow_slide_transition\":\"fade\",\"sg_social_normal_background_background_slideshow_transition_duration\":500,\"sg_social_normal_background_background_slideshow_background_size\":\"\",\"sg_social_normal_background_background_slideshow_background_position\":\"\",\"sg_social_normal_background_background_slideshow_lazyload\":\"\",\"sg_social_normal_background_background_slideshow_ken_burns\":\"\",\"sg_social_normal_background_background_slideshow_ken_burns_zoom_direction\":\"in\",\"sg_social_normal_border_border_border\":\"\",\"sg_social_normal_border_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"sg_social_normal_border_border_color\":\"\",\"sg_social_normal_boxshadow_box_shadow_box_shadow_type\":\"\",\"sg_social_normal_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"sg_social_normal_boxshadow_box_shadow_box_shadow_position\":\" \",\"sg_social_normal_textshadow_text_shadow_text_shadow_type\":\"\",\"sg_social_normal_textshadow_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"sg_social_hover_color\":\"\",\"sg_social_hover_background_background_background\":\"\",\"sg_social_hover_background_background_color\":\"\",\"sg_social_hover_background_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_color_b\":\"#f2295b\",\"sg_social_hover_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_hover_background_background_gradient_type\":\"linear\",\"sg_social_hover_background_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"sg_social_hover_background_background_gradient_position\":\"center center\",\"sg_social_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_hover_background_background_position\":\"\",\"sg_social_hover_background_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_attachment\":\"\",\"sg_social_hover_background_background_repeat\":\"\",\"sg_social_hover_background_background_size\":\"\",\"sg_social_hover_background_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_hover_background_background_video_link\":\"\",\"sg_social_hover_background_background_video_start\":\"\",\"sg_social_hover_background_background_video_end\":\"\",\"sg_social_hover_background_background_play_once\":\"\",\"sg_social_hover_background_background_play_on_mobile\":\"\",\"sg_social_hover_background_background_privacy_mode\":\"\",\"sg_social_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_hover_background_background_slideshow_gallery\":[],\"sg_social_hover_background_background_slideshow_loop\":\"yes\",\"sg_social_hover_background_background_slideshow_slide_duration\":5000,\"sg_social_hover_background_background_slideshow_slide_transition\":\"fade\",\"sg_social_hover_background_background_slideshow_transition_duration\":500,\"sg_social_hover_background_background_slideshow_background_size\":\"\",\"sg_social_hover_background_background_slideshow_background_position\":\"\",\"sg_social_hover_background_background_slideshow_lazyload\":\"\",\"sg_social_hover_background_background_slideshow_ken_burns\":\"\",\"sg_social_hover_background_background_slideshow_ken_burns_zoom_direction\":\"in\",\"sg_social_hover_border_border_border\":\"\",\"sg_social_hover_border_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"sg_social_hover_border_border_color\":\"\",\"sg_social_hover_boxshadow_box_shadow_box_shadow_type\":\"\",\"sg_social_hover_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"sg_social_hover_boxshadow_box_shadow_box_shadow_position\":\" \",\"sg_social_hover_textshadow_text_shadow_text_shadow_type\":\"\",\"sg_social_hover_textshadow_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"}},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"51fd3fb\",\"sg_social_normal_background_background_background\":\"classic\",\"__globals__\":{\"sg_social_normal_background_background_color\":\"globals\\/colors?id=5425a2a\"},\"sg_social_normal_color\":\"\",\"sg_social_normal_background_background_color\":\"\",\"sg_social_normal_background_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_color_b\":\"#f2295b\",\"sg_social_normal_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_normal_background_background_gradient_type\":\"linear\",\"sg_social_normal_background_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"sg_social_normal_background_background_gradient_position\":\"center center\",\"sg_social_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_normal_background_background_position\":\"\",\"sg_social_normal_background_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_attachment\":\"\",\"sg_social_normal_background_background_repeat\":\"\",\"sg_social_normal_background_background_size\":\"\",\"sg_social_normal_background_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_normal_background_background_video_link\":\"\",\"sg_social_normal_background_background_video_start\":\"\",\"sg_social_normal_background_background_video_end\":\"\",\"sg_social_normal_background_background_play_once\":\"\",\"sg_social_normal_background_background_play_on_mobile\":\"\",\"sg_social_normal_background_background_privacy_mode\":\"\",\"sg_social_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_normal_background_background_slideshow_gallery\":[],\"sg_social_normal_background_background_slideshow_loop\":\"yes\",\"sg_social_normal_background_background_slideshow_slide_duration\":5000,\"sg_social_normal_background_background_slideshow_slide_transition\":\"fade\",\"sg_social_normal_background_background_slideshow_transition_duration\":500,\"sg_social_normal_background_background_slideshow_background_size\":\"\",\"sg_social_normal_background_background_slideshow_background_position\":\"\",\"sg_social_normal_background_background_slideshow_lazyload\":\"\",\"sg_social_normal_background_background_slideshow_ken_burns\":\"\",\"sg_social_normal_background_background_slideshow_ken_burns_zoom_direction\":\"in\",\"sg_social_normal_border_border_border\":\"\",\"sg_social_normal_border_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"sg_social_normal_border_border_color\":\"\",\"sg_social_normal_boxshadow_box_shadow_box_shadow_type\":\"\",\"sg_social_normal_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"sg_social_normal_boxshadow_box_shadow_box_shadow_position\":\" \",\"sg_social_normal_textshadow_text_shadow_text_shadow_type\":\"\",\"sg_social_normal_textshadow_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"sg_social_hover_color\":\"\",\"sg_social_hover_background_background_background\":\"\",\"sg_social_hover_background_background_color\":\"\",\"sg_social_hover_background_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_color_b\":\"#f2295b\",\"sg_social_hover_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_hover_background_background_gradient_type\":\"linear\",\"sg_social_hover_background_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"sg_social_hover_background_background_gradient_position\":\"center center\",\"sg_social_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_hover_background_background_position\":\"\",\"sg_social_hover_background_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_attachment\":\"\",\"sg_social_hover_background_background_repeat\":\"\",\"sg_social_hover_background_background_size\":\"\",\"sg_social_hover_background_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_hover_background_background_video_link\":\"\",\"sg_social_hover_background_background_video_start\":\"\",\"sg_social_hover_background_background_video_end\":\"\",\"sg_social_hover_background_background_play_once\":\"\",\"sg_social_hover_background_background_play_on_mobile\":\"\",\"sg_social_hover_background_background_privacy_mode\":\"\",\"sg_social_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_hover_background_background_slideshow_gallery\":[],\"sg_social_hover_background_background_slideshow_loop\":\"yes\",\"sg_social_hover_background_background_slideshow_slide_duration\":5000,\"sg_social_hover_background_background_slideshow_slide_transition\":\"fade\",\"sg_social_hover_background_background_slideshow_transition_duration\":500,\"sg_social_hover_background_background_slideshow_background_size\":\"\",\"sg_social_hover_background_background_slideshow_background_position\":\"\",\"sg_social_hover_background_background_slideshow_lazyload\":\"\",\"sg_social_hover_background_background_slideshow_ken_burns\":\"\",\"sg_social_hover_background_background_slideshow_ken_burns_zoom_direction\":\"in\",\"sg_social_hover_border_border_border\":\"\",\"sg_social_hover_border_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"sg_social_hover_border_border_color\":\"\",\"sg_social_hover_boxshadow_box_shadow_box_shadow_type\":\"\",\"sg_social_hover_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"sg_social_hover_boxshadow_box_shadow_box_shadow_position\":\" \",\"sg_social_hover_textshadow_text_shadow_text_shadow_type\":\"\",\"sg_social_hover_textshadow_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"}}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"55\",\"left\":\"20\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"20\",\"left\":\"13\",\"isLinked\":false},\"jkit_transform_rotate\":{\"unit\":\"px\",\"size\":358,\"sizes\":[]},\"_background_background\":\"classic\",\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":30,\"blur\":30,\"spread\":-10,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"st_position_normal_color_responsive\":\"globals\\/colors?id=50714e7\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=secondary\"},\"sg_popup_close_icon\":{\"value\":\"fas fa-times\",\"library\":\"fa-solid\"},\"st_content_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_content_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_content_normal_background_background_slideshow_gallery\":[],\"st_content_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_content_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_content_hover_background_background_slideshow_gallery\":[],\"st_image_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_image_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_image_background_background_slideshow_gallery\":[],\"st_image_overlay_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_image_overlay_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_image_overlay_background_background_slideshow_gallery\":[],\"st_control_modal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_control_modal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_control_modal_background_background_slideshow_gallery\":[],\"st_close_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_close_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_close_normal_background_background_slideshow_gallery\":[],\"st_close_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_close_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_close_hover_background_background_slideshow_gallery\":[],\"st_hover_content_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_hover_content_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_hover_content_background_background_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"d6504cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7f3bf420\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"58\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/pp6.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Betty Clarke\",\"sg_member_position\":\"Social Teacher\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"4c2d797\",\"sg_social_normal_background_background_background\":\"classic\",\"__globals__\":{\"sg_social_normal_background_background_color\":\"globals\\/colors?id=5425a2a\"},\"sg_social_normal_color\":\"\",\"sg_social_normal_background_background_color\":\"\",\"sg_social_normal_background_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_color_b\":\"#f2295b\",\"sg_social_normal_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_normal_background_background_gradient_type\":\"linear\",\"sg_social_normal_background_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"sg_social_normal_background_background_gradient_position\":\"center center\",\"sg_social_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_normal_background_background_position\":\"\",\"sg_social_normal_background_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_attachment\":\"\",\"sg_social_normal_background_background_repeat\":\"\",\"sg_social_normal_background_background_size\":\"\",\"sg_social_normal_background_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_normal_background_background_video_link\":\"\",\"sg_social_normal_background_background_video_start\":\"\",\"sg_social_normal_background_background_video_end\":\"\",\"sg_social_normal_background_background_play_once\":\"\",\"sg_social_normal_background_background_play_on_mobile\":\"\",\"sg_social_normal_background_background_privacy_mode\":\"\",\"sg_social_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_normal_background_background_slideshow_gallery\":[],\"sg_social_normal_background_background_slideshow_loop\":\"yes\",\"sg_social_normal_background_background_slideshow_slide_duration\":5000,\"sg_social_normal_background_background_slideshow_slide_transition\":\"fade\",\"sg_social_normal_background_background_slideshow_transition_duration\":500,\"sg_social_normal_background_background_slideshow_background_size\":\"\",\"sg_social_normal_background_background_slideshow_background_position\":\"\",\"sg_social_normal_background_background_slideshow_lazyload\":\"\",\"sg_social_normal_background_background_slideshow_ken_burns\":\"\",\"sg_social_normal_background_background_slideshow_ken_burns_zoom_direction\":\"in\",\"sg_social_normal_border_border_border\":\"\",\"sg_social_normal_border_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"sg_social_normal_border_border_color\":\"\",\"sg_social_normal_boxshadow_box_shadow_box_shadow_type\":\"\",\"sg_social_normal_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"sg_social_normal_boxshadow_box_shadow_box_shadow_position\":\" \",\"sg_social_normal_textshadow_text_shadow_text_shadow_type\":\"\",\"sg_social_normal_textshadow_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"sg_social_hover_color\":\"\",\"sg_social_hover_background_background_background\":\"\",\"sg_social_hover_background_background_color\":\"\",\"sg_social_hover_background_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_color_b\":\"#f2295b\",\"sg_social_hover_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_hover_background_background_gradient_type\":\"linear\",\"sg_social_hover_background_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"sg_social_hover_background_background_gradient_position\":\"center center\",\"sg_social_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_hover_background_background_position\":\"\",\"sg_social_hover_background_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_attachment\":\"\",\"sg_social_hover_background_background_repeat\":\"\",\"sg_social_hover_background_background_size\":\"\",\"sg_social_hover_background_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_hover_background_background_video_link\":\"\",\"sg_social_hover_background_background_video_start\":\"\",\"sg_social_hover_background_background_video_end\":\"\",\"sg_social_hover_background_background_play_once\":\"\",\"sg_social_hover_background_background_play_on_mobile\":\"\",\"sg_social_hover_background_background_privacy_mode\":\"\",\"sg_social_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_hover_background_background_slideshow_gallery\":[],\"sg_social_hover_background_background_slideshow_loop\":\"yes\",\"sg_social_hover_background_background_slideshow_slide_duration\":5000,\"sg_social_hover_background_background_slideshow_slide_transition\":\"fade\",\"sg_social_hover_background_background_slideshow_transition_duration\":500,\"sg_social_hover_background_background_slideshow_background_size\":\"\",\"sg_social_hover_background_background_slideshow_background_position\":\"\",\"sg_social_hover_background_background_slideshow_lazyload\":\"\",\"sg_social_hover_background_background_slideshow_ken_burns\":\"\",\"sg_social_hover_background_background_slideshow_ken_burns_zoom_direction\":\"in\",\"sg_social_hover_border_border_border\":\"\",\"sg_social_hover_border_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"sg_social_hover_border_border_color\":\"\",\"sg_social_hover_boxshadow_box_shadow_box_shadow_type\":\"\",\"sg_social_hover_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"sg_social_hover_boxshadow_box_shadow_box_shadow_position\":\" \",\"sg_social_hover_textshadow_text_shadow_text_shadow_type\":\"\",\"sg_social_hover_textshadow_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"}},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"5d7eb15\",\"sg_social_normal_background_background_background\":\"classic\",\"__globals__\":{\"sg_social_normal_background_background_color\":\"globals\\/colors?id=5425a2a\"},\"sg_social_normal_color\":\"\",\"sg_social_normal_background_background_color\":\"\",\"sg_social_normal_background_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_color_b\":\"#f2295b\",\"sg_social_normal_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_normal_background_background_gradient_type\":\"linear\",\"sg_social_normal_background_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"sg_social_normal_background_background_gradient_position\":\"center center\",\"sg_social_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_normal_background_background_position\":\"\",\"sg_social_normal_background_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_attachment\":\"\",\"sg_social_normal_background_background_repeat\":\"\",\"sg_social_normal_background_background_size\":\"\",\"sg_social_normal_background_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_normal_background_background_video_link\":\"\",\"sg_social_normal_background_background_video_start\":\"\",\"sg_social_normal_background_background_video_end\":\"\",\"sg_social_normal_background_background_play_once\":\"\",\"sg_social_normal_background_background_play_on_mobile\":\"\",\"sg_social_normal_background_background_privacy_mode\":\"\",\"sg_social_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_normal_background_background_slideshow_gallery\":[],\"sg_social_normal_background_background_slideshow_loop\":\"yes\",\"sg_social_normal_background_background_slideshow_slide_duration\":5000,\"sg_social_normal_background_background_slideshow_slide_transition\":\"fade\",\"sg_social_normal_background_background_slideshow_transition_duration\":500,\"sg_social_normal_background_background_slideshow_background_size\":\"\",\"sg_social_normal_background_background_slideshow_background_position\":\"\",\"sg_social_normal_background_background_slideshow_lazyload\":\"\",\"sg_social_normal_background_background_slideshow_ken_burns\":\"\",\"sg_social_normal_background_background_slideshow_ken_burns_zoom_direction\":\"in\",\"sg_social_normal_border_border_border\":\"\",\"sg_social_normal_border_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"sg_social_normal_border_border_color\":\"\",\"sg_social_normal_boxshadow_box_shadow_box_shadow_type\":\"\",\"sg_social_normal_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"sg_social_normal_boxshadow_box_shadow_box_shadow_position\":\" \",\"sg_social_normal_textshadow_text_shadow_text_shadow_type\":\"\",\"sg_social_normal_textshadow_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"sg_social_hover_color\":\"\",\"sg_social_hover_background_background_background\":\"\",\"sg_social_hover_background_background_color\":\"\",\"sg_social_hover_background_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_color_b\":\"#f2295b\",\"sg_social_hover_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_hover_background_background_gradient_type\":\"linear\",\"sg_social_hover_background_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"sg_social_hover_background_background_gradient_position\":\"center center\",\"sg_social_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_hover_background_background_position\":\"\",\"sg_social_hover_background_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_attachment\":\"\",\"sg_social_hover_background_background_repeat\":\"\",\"sg_social_hover_background_background_size\":\"\",\"sg_social_hover_background_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_hover_background_background_video_link\":\"\",\"sg_social_hover_background_background_video_start\":\"\",\"sg_social_hover_background_background_video_end\":\"\",\"sg_social_hover_background_background_play_once\":\"\",\"sg_social_hover_background_background_play_on_mobile\":\"\",\"sg_social_hover_background_background_privacy_mode\":\"\",\"sg_social_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_hover_background_background_slideshow_gallery\":[],\"sg_social_hover_background_background_slideshow_loop\":\"yes\",\"sg_social_hover_background_background_slideshow_slide_duration\":5000,\"sg_social_hover_background_background_slideshow_slide_transition\":\"fade\",\"sg_social_hover_background_background_slideshow_transition_duration\":500,\"sg_social_hover_background_background_slideshow_background_size\":\"\",\"sg_social_hover_background_background_slideshow_background_position\":\"\",\"sg_social_hover_background_background_slideshow_lazyload\":\"\",\"sg_social_hover_background_background_slideshow_ken_burns\":\"\",\"sg_social_hover_background_background_slideshow_ken_burns_zoom_direction\":\"in\",\"sg_social_hover_border_border_border\":\"\",\"sg_social_hover_border_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"sg_social_hover_border_border_color\":\"\",\"sg_social_hover_boxshadow_box_shadow_box_shadow_type\":\"\",\"sg_social_hover_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"sg_social_hover_boxshadow_box_shadow_box_shadow_position\":\" \",\"sg_social_hover_textshadow_text_shadow_text_shadow_type\":\"\",\"sg_social_hover_textshadow_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"}},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"51fd3fb\",\"sg_social_normal_background_background_background\":\"classic\",\"__globals__\":{\"sg_social_normal_background_background_color\":\"globals\\/colors?id=5425a2a\"},\"sg_social_normal_color\":\"\",\"sg_social_normal_background_background_color\":\"\",\"sg_social_normal_background_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_color_b\":\"#f2295b\",\"sg_social_normal_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_normal_background_background_gradient_type\":\"linear\",\"sg_social_normal_background_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"sg_social_normal_background_background_gradient_position\":\"center center\",\"sg_social_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_normal_background_background_position\":\"\",\"sg_social_normal_background_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_attachment\":\"\",\"sg_social_normal_background_background_repeat\":\"\",\"sg_social_normal_background_background_size\":\"\",\"sg_social_normal_background_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_normal_background_background_video_link\":\"\",\"sg_social_normal_background_background_video_start\":\"\",\"sg_social_normal_background_background_video_end\":\"\",\"sg_social_normal_background_background_play_once\":\"\",\"sg_social_normal_background_background_play_on_mobile\":\"\",\"sg_social_normal_background_background_privacy_mode\":\"\",\"sg_social_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_normal_background_background_slideshow_gallery\":[],\"sg_social_normal_background_background_slideshow_loop\":\"yes\",\"sg_social_normal_background_background_slideshow_slide_duration\":5000,\"sg_social_normal_background_background_slideshow_slide_transition\":\"fade\",\"sg_social_normal_background_background_slideshow_transition_duration\":500,\"sg_social_normal_background_background_slideshow_background_size\":\"\",\"sg_social_normal_background_background_slideshow_background_position\":\"\",\"sg_social_normal_background_background_slideshow_lazyload\":\"\",\"sg_social_normal_background_background_slideshow_ken_burns\":\"\",\"sg_social_normal_background_background_slideshow_ken_burns_zoom_direction\":\"in\",\"sg_social_normal_border_border_border\":\"\",\"sg_social_normal_border_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"sg_social_normal_border_border_color\":\"\",\"sg_social_normal_boxshadow_box_shadow_box_shadow_type\":\"\",\"sg_social_normal_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"sg_social_normal_boxshadow_box_shadow_box_shadow_position\":\" \",\"sg_social_normal_textshadow_text_shadow_text_shadow_type\":\"\",\"sg_social_normal_textshadow_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"sg_social_hover_color\":\"\",\"sg_social_hover_background_background_background\":\"\",\"sg_social_hover_background_background_color\":\"\",\"sg_social_hover_background_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_color_b\":\"#f2295b\",\"sg_social_hover_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_hover_background_background_gradient_type\":\"linear\",\"sg_social_hover_background_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"sg_social_hover_background_background_gradient_position\":\"center center\",\"sg_social_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_hover_background_background_position\":\"\",\"sg_social_hover_background_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_attachment\":\"\",\"sg_social_hover_background_background_repeat\":\"\",\"sg_social_hover_background_background_size\":\"\",\"sg_social_hover_background_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_hover_background_background_video_link\":\"\",\"sg_social_hover_background_background_video_start\":\"\",\"sg_social_hover_background_background_video_end\":\"\",\"sg_social_hover_background_background_play_once\":\"\",\"sg_social_hover_background_background_play_on_mobile\":\"\",\"sg_social_hover_background_background_privacy_mode\":\"\",\"sg_social_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_hover_background_background_slideshow_gallery\":[],\"sg_social_hover_background_background_slideshow_loop\":\"yes\",\"sg_social_hover_background_background_slideshow_slide_duration\":5000,\"sg_social_hover_background_background_slideshow_slide_transition\":\"fade\",\"sg_social_hover_background_background_slideshow_transition_duration\":500,\"sg_social_hover_background_background_slideshow_background_size\":\"\",\"sg_social_hover_background_background_slideshow_background_position\":\"\",\"sg_social_hover_background_background_slideshow_lazyload\":\"\",\"sg_social_hover_background_background_slideshow_ken_burns\":\"\",\"sg_social_hover_background_background_slideshow_ken_burns_zoom_direction\":\"in\",\"sg_social_hover_border_border_border\":\"\",\"sg_social_hover_border_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"sg_social_hover_border_border_color\":\"\",\"sg_social_hover_boxshadow_box_shadow_box_shadow_type\":\"\",\"sg_social_hover_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"sg_social_hover_boxshadow_box_shadow_box_shadow_position\":\" \",\"sg_social_hover_textshadow_text_shadow_text_shadow_type\":\"\",\"sg_social_hover_textshadow_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"}}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"55\",\"left\":\"20\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"20\",\"left\":\"13\",\"isLinked\":false},\"jkit_transform_rotate\":{\"unit\":\"px\",\"size\":359,\"sizes\":[]},\"_background_background\":\"classic\",\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":30,\"blur\":30,\"spread\":-10,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"st_position_normal_color_responsive\":\"globals\\/colors?id=50714e7\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=secondary\"},\"sg_popup_close_icon\":{\"value\":\"fas fa-times\",\"library\":\"fa-solid\"},\"st_content_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_content_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_content_normal_background_background_slideshow_gallery\":[],\"st_content_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_content_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_content_hover_background_background_slideshow_gallery\":[],\"st_image_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_image_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_image_background_background_slideshow_gallery\":[],\"st_image_overlay_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_image_overlay_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_image_overlay_background_background_slideshow_gallery\":[],\"st_control_modal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_control_modal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_control_modal_background_background_slideshow_gallery\":[],\"st_close_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_close_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_close_normal_background_background_slideshow_gallery\":[],\"st_close_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_close_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_close_hover_background_background_slideshow_gallery\":[],\"st_hover_content_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_hover_content_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_hover_content_background_background_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"28726dac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"15\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/c3.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":13.103},\"_position\":\"absolute\",\"_offset_x\":{\"size\":1015,\"unit\":\"px\"},\"_offset_y\":{\"size\":-125,\"unit\":\"px\"},\"_z_index\":7,\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":56.966999999999999},\"_offset_x_tablet\":{\"size\":602,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":237,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-75,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-35,\"unit\":\"px\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"76aa879b\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"20\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=50714e7\"},\"overflow\":\"hidden\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"125\",\"left\":\"20\",\"isLinked\":false},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7f2b352b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"_inline_size_tablet\":100,\"_inline_size_mobile\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"218c00db\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"33a86894\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":12,\"blur\":12,\"spread\":-6,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=bb22fe7\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"32f6cd5c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"62\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/logoipsum-265.png\"},\"width_mobile\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"52bb1fe0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":12,\"blur\":12,\"spread\":-6,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=80e8ddb\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"964292b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"66\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/logoipsum-264.png\"},\"width_mobile\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3069062c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":12,\"blur\":12,\"spread\":-6,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=d38674d\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3a59f63e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"69\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/logoipsum-262.png\"},\"width_mobile\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3b8eadee\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7e47ff3b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":12,\"blur\":12,\"spread\":-6,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=d38674d\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"41575032\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"74\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/logoipsum-261.png\"},\"width_mobile\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"946997e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":12,\"blur\":12,\"spread\":-6,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=a00e83d\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2f3d9afd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"76\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/logoipsum-259.png\"},\"width_mobile\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"748e0046\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":12,\"blur\":12,\"spread\":-6,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=80e8ddb\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7e7b2d10\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"80\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/logoipsum-254.png\"},\"width_mobile\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2285d020\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"32363d26\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Trusted Partners\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"align_tablet\":\"center\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"29a16f5b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Donec hendrerit nibh in lectus molestie, id bibendum orci hendrerit. Curabitur euismod ante finibus nibh suscipit, vitae vehicula eros venenatis.<\\/p>\",\"align_tablet\":\"center\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3e3ddea9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"25\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/13-copy.jpg\"},\"background_repeat\":\"repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002,\"sizes\":[]},\"shape_divider_top\":\"tilt\",\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":123,\"sizes\":[]},\"shape_divider_top_flip\":\"yes\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=0a21634\",\"shape_divider_top_color\":\"globals\\/colors?id=50714e7\"},\"shape_divider_top_height_tablet\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"61e97a76\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"47240020\",\"elType\":\"widget\",\"settings\":{\"title\":\"Join Our Education center Now\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"},\"align_tablet\":\"center\",\"_margin_mobile\":{\"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},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"505b48ff\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"28\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/c2.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":37.046999999999997},\"_position\":\"absolute\",\"_offset_x\":{\"size\":508,\"unit\":\"px\"},\"_offset_y\":{\"size\":-53,\"unit\":\"px\"},\"_z_index\":7,\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":89.066999999999993},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":30.067},\"_offset_x_tablet\":{\"size\":94,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":252,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-60,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":28,\"unit\":\"px\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2a8f75cc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"14\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/c4.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":12.92},\"_position\":\"absolute\",\"_offset_x\":{\"size\":1290,\"unit\":\"px\"},\"_offset_y\":{\"size\":347,\"unit\":\"px\"},\"_z_index\":7,\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":42.299999999999997},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":118.3},\"_offset_x_tablet\":{\"size\":586,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":-72,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-396,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-43,\"unit\":\"px\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"718149a5\",\"elType\":\"widget\",\"settings\":{\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"},\"align_tablet\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4e72cc67\",\"elType\":\"widget\",\"settings\":{\"text\":\"Sign Up Now\",\"align\":\"left\",\"_z_index\":9,\"__globals__\":{\"background_color\":\"globals\\/colors?id=5425a2a\",\"button_background_hover_color\":\"globals\\/colors?id=7f7112a\"},\"align_tablet\":\"center\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"36411464\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"26\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/edge3.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":18.638000000000002},\"_offset_x\":{\"size\":172,\"unit\":\"px\"},\"_offset_y\":{\"size\":331,\"unit\":\"px\"},\"_z_index\":7,\"_margin\":{\"unit\":\"%\",\"top\":\"-60\",\"right\":\"45\",\"bottom\":\"0\",\"left\":\"-45\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":39,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5b13bd82\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"-150\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"50\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-160\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"24cd3aab\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"46\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/cute-elementary-kids-with-books-at-school-2022-12-16-18-15-57-utc-copy.jpg\"},\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":\"51\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/liki.png\"},\"width_tablet\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":88,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"684c4494\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"57\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/cute-elementary-kids-with-books-at-school-2022-12-16-18-15-57-utc2.png\"},\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_position\":\"absolute\",\"width_tablet\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":88,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(327,85,'_elementor_page_assets','a:0:{}'),(328,85,'_wp_page_template','elementor_header_footer'),(329,85,'envato_tk_source_kit','6'),(330,85,'envato_tk_source_index','5'),(331,88,'_elementor_edit_mode','builder'),(332,88,'_elementor_template_type','page'),(333,88,'_elementor_version','3.15.3'),(334,88,'_elementor_data','[{\"id\":\"645239f6\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":\"7\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/2-copy.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"200\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"background_overlay_color\":\"globals\\/colors?id=ff9d88d\",\"shape_divider_bottom_color\":\"globals\\/colors?id=a00e83d\"},\"shape_divider_bottom\":\"tilt\",\"shape_divider_bottom_flip\":\"yes\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_color\":\"#DC434C\",\"shape_divider_bottom_color\":\"#F8F8F8\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"f553412\",\"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},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"327c95ac\",\"elType\":\"widget\",\"settings\":{\"title\":\"Class\",\"header_size\":\"h1\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e82529f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"14\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/c4.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":7.7080000000000002},\"_position\":\"absolute\",\"_offset_x\":{\"size\":359,\"unit\":\"px\"},\"_offset_x_tablet\":{\"size\":133,\"unit\":\"px\"},\"_offset_y\":{\"size\":-48,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-27,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":21,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-14,\"unit\":\"px\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6cc0d601\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"15\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/c3.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":2.7629999999999999},\"_position\":\"absolute\",\"_offset_x\":{\"size\":428,\"unit\":\"px\"},\"_offset_x_tablet\":{\"size\":177,\"unit\":\"px\"},\"_offset_y\":{\"size\":61,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":41,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":47,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-38,\"unit\":\"px\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6f01c9e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"17\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/edge.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":5.8129999999999997},\"_position\":\"absolute\",\"_offset_x\":{\"size\":765,\"unit\":\"px\"},\"_offset_x_tablet\":{\"size\":518,\"unit\":\"px\"},\"_offset_y\":{\"size\":-18,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-14,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":291,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-3,\"unit\":\"px\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6e86f898\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"280\",\"left\":\"0\",\"isLinked\":false},\"shape_divider_bottom\":\"tilt\",\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=a00e83d\"},\"overflow\":\"hidden\",\"shape_divider_bottom_height_tablet\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"170\",\"left\":\"20\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4e28f970\",\"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},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2e9b871a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"14\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/c4.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":3.875},\"_position\":\"absolute\",\"_offset_x\":{\"size\":956,\"unit\":\"px\"},\"_offset_y\":{\"size\":33,\"unit\":\"px\"},\"_z_index\":7,\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":36.732999999999997},\"_offset_x_tablet\":{\"size\":511,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":34,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-26,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":80,\"unit\":\"px\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"21d2ef17\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"29\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/edge2.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":6.6630000000000003},\"_position\":\"absolute\",\"_offset_x\":{\"size\":325,\"unit\":\"px\"},\"_offset_y\":{\"size\":-43,\"unit\":\"px\"},\"_z_index\":7,\"_offset_x_tablet\":{\"size\":116,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-19,\"unit\":\"px\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5d89f62b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our  Courses\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3d67521f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":130,\"sizes\":[]},\"__globals__\":{\"shape_divider_bottom_color\":\"globals\\/colors?id=a00e83d\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"58db40f7\",\"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},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"30896c48\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"%\",\"top\":\"-20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"-53\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"544b35d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6c3b0df5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"48\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/kids-taking-exam-in-school-2022-06-29-19-26-45-utc-copy.jpg\"},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"35\",\"left\":\"15\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":15,\"blur\":25,\"spread\":-5,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=secondary\"},\"jkit_transform_rotate\":{\"unit\":\"px\",\"size\":358,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7a57cd1b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Social Studies\",\"header_size\":\"h4\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"219b49ac\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"91acece\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"230d15ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"276de1fd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"38\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/portrait-of-happy-caucasian-boy-standing-at-chalkb-2021-09-03-06-28-24-utc-copy.jpg\"},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"35\",\"left\":\"15\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":15,\"blur\":25,\"spread\":-5,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=secondary\"},\"jkit_transform_rotate\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"23271197\",\"elType\":\"widget\",\"settings\":{\"title\":\"Mathematics \",\"header_size\":\"h4\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1f67b23f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"69e75faf\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"34c852c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"203e6185\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"55\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/woman-learning-english-online-2021-08-26-15-34-41-utc-copy.jpg\"},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"35\",\"left\":\"15\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":15,\"blur\":25,\"spread\":-5,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=secondary\"},\"jkit_transform_rotate\":{\"unit\":\"px\",\"size\":358,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3da71c6b\",\"elType\":\"widget\",\"settings\":{\"title\":\"English Course\",\"header_size\":\"h4\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"27a201e0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"67eddd15\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"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},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"47e66a4e\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"-53\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"31cef383\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"14dd1ae7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"61\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/elementary-student-learning-in-the-classroom-at-sc-2022-11-16-14-48-06-utc-copy.jpg\"},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"35\",\"left\":\"15\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":15,\"blur\":25,\"spread\":-5,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=secondary\"},\"jkit_transform_rotate\":{\"unit\":\"px\",\"size\":358,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"69e6c7a4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Advanced Mathematic\",\"header_size\":\"h4\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"45cba23e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"34a80a88\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"775d96d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"774446dd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"47\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/boy-at-lesson-2021-09-24-03-25-58-utc-copy.jpg\"},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"35\",\"left\":\"15\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":15,\"blur\":25,\"spread\":-5,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=secondary\"},\"jkit_transform_rotate\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8ad6909\",\"elType\":\"widget\",\"settings\":{\"title\":\"Geography\",\"header_size\":\"h4\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"16c700c6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"269cc4c9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"9737902\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4a469153\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"68\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/difficult-exam-in-elementary-school-2021-09-24-02-55-23-utc-copy.jpg\"},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"35\",\"left\":\"15\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":15,\"blur\":25,\"spread\":-5,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=secondary\"},\"jkit_transform_rotate\":{\"unit\":\"px\",\"size\":358,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2dd77e66\",\"elType\":\"widget\",\"settings\":{\"title\":\"Exam Drill\",\"header_size\":\"h4\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"34b05456\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"59209d0f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"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},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"66f49767\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"shape_divider_bottom_flip\":\"yes\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=a00e83d\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"71b424ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_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\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5a29450a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Programs for excellence\",\"align_tablet\":\"center\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"769d46ed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"19\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/c1.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":22.148},\"_position\":\"absolute\",\"_offset_x\":{\"size\":470,\"unit\":\"px\"},\"_offset_y\":{\"size\":-54,\"unit\":\"px\"},\"_z_index\":7,\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":73.183000000000007},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":39.183},\"_offset_x_tablet\":{\"size\":-65,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":252,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-166,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-203,\"unit\":\"px\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"655b3c54\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"29\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/edge2.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":15.734},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-44,\"unit\":\"px\"},\"_offset_y\":{\"size\":26,\"unit\":\"px\"},\"_z_index\":7,\"_element_width_tablet\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":63.75},\"_offset_x_tablet\":{\"size\":28,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":2,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-23,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-18,\"unit\":\"px\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"31392f3c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Mauris at lacus semper, fermentum mi sed, rutrum nibh. Sed gravida elit ligula, sit amet venenatis diam hendrerit iaculis.<\\/p>\",\"align_tablet\":\"center\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4674dfd8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"28\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/c2.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":10.724},\"_position\":\"absolute\",\"_offset_x\":{\"size\":179,\"unit\":\"px\"},\"_offset_y\":{\"size\":408,\"unit\":\"px\"},\"_z_index\":7,\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":42.116999999999997},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":30.117000000000001},\"_offset_x_tablet\":{\"size\":635,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":254,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-31,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":355,\"unit\":\"px\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"116765fa\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover More\",\"align_tablet\":\"center\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"245c258b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"130f8254\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6a62fbed\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"71195a9f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"40\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/grade.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_border\":\"none\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"5\",\"isLinked\":false},\"__globals__\":{\"_border_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=384fc29\"},\"jkit_transform_rotate\":{\"unit\":\"px\",\"size\":360,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"bca3517\",\"elType\":\"widget\",\"settings\":{\"title\":\"Grade Boost\",\"header_size\":\"h5\",\"align\":\"center\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2e0f0349\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet.<\\/p>\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=f8cdd91\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"2e48b9f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7ca43c4e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"45\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/chart.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_border\":\"none\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"5\",\"isLinked\":false},\"__globals__\":{\"_border_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=98e3e15\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a311795\",\"elType\":\"widget\",\"settings\":{\"title\":\"Skill Evaluation\",\"header_size\":\"h5\",\"align\":\"center\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"733738cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet.<\\/p>\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=f8cdd91\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"651e5959\",\"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\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2b54656d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5589bbbf\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"50\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/test-exam-sheet.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_border\":\"none\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"5\",\"isLinked\":false},\"__globals__\":{\"_border_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=7f7112a\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"47d43b9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Mock Exam\",\"header_size\":\"h5\",\"align\":\"center\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5ed3881f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet.<\\/p>\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=f8cdd91\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"2c6ce778\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"a771648\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"54\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/schedule-sheet.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_border\":\"none\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"5\",\"isLinked\":false},\"__globals__\":{\"_border_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=4b29dee\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3752409e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Weekend Class\",\"header_size\":\"h5\",\"align\":\"center\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"74054472\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet.<\\/p>\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=f8cdd91\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"474da951\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"25\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/13-copy.jpg\"},\"background_repeat\":\"repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002,\"sizes\":[]},\"shape_divider_top\":\"tilt\",\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":123,\"sizes\":[]},\"shape_divider_top_flip\":\"yes\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=0a21634\",\"shape_divider_top_color\":\"globals\\/colors?id=a00e83d\"},\"shape_divider_top_height_tablet\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1ab8f741\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"34c9b4bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Join Our Education center Now\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"},\"align_tablet\":\"center\",\"_margin_mobile\":{\"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},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2932bac9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"28\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/c2.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":37.046999999999997},\"_position\":\"absolute\",\"_offset_x\":{\"size\":508,\"unit\":\"px\"},\"_offset_y\":{\"size\":-53,\"unit\":\"px\"},\"_z_index\":7,\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":89.066999999999993},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":30.067},\"_offset_x_tablet\":{\"size\":94,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":252,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-60,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":28,\"unit\":\"px\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"22298788\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"14\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/c4.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":12.92},\"_position\":\"absolute\",\"_offset_x\":{\"size\":1290,\"unit\":\"px\"},\"_offset_y\":{\"size\":347,\"unit\":\"px\"},\"_z_index\":7,\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":42.299999999999997},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":118.3},\"_offset_x_tablet\":{\"size\":586,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":-72,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-396,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-43,\"unit\":\"px\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6000cee9\",\"elType\":\"widget\",\"settings\":{\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"},\"align_tablet\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"18a2aec1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Sign Up Now\",\"align\":\"left\",\"_z_index\":9,\"__globals__\":{\"background_color\":\"globals\\/colors?id=5425a2a\",\"button_background_hover_color\":\"globals\\/colors?id=7f7112a\"},\"align_tablet\":\"center\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"77b66901\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"26\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/edge3.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":18.638000000000002},\"_offset_x\":{\"size\":172,\"unit\":\"px\"},\"_offset_y\":{\"size\":331,\"unit\":\"px\"},\"_z_index\":7,\"_margin\":{\"unit\":\"%\",\"top\":\"-60\",\"right\":\"45\",\"bottom\":\"0\",\"left\":\"-45\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":39,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"24e953ca\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"-150\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"50\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-160\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"429c3cdc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"46\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/cute-elementary-kids-with-books-at-school-2022-12-16-18-15-57-utc-copy.jpg\"},\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":\"51\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/liki.png\"},\"width_tablet\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":88,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3956712\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"57\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/cute-elementary-kids-with-books-at-school-2022-12-16-18-15-57-utc2.png\"},\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_position\":\"absolute\",\"width_tablet\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":88,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(335,89,'_elementor_edit_mode','builder'),(336,89,'_elementor_template_type','page'),(337,89,'_elementor_version','3.15.3'),(338,89,'_elementor_data','[{\"id\":\"645239f6\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":\"7\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/2-copy.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"200\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"background_overlay_color\":\"globals\\/colors?id=ff9d88d\",\"shape_divider_bottom_color\":\"globals\\/colors?id=a00e83d\"},\"shape_divider_bottom\":\"tilt\",\"shape_divider_bottom_flip\":\"yes\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_color\":\"#DC434C\",\"shape_divider_bottom_color\":\"#F8F8F8\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"f553412\",\"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},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"327c95ac\",\"elType\":\"widget\",\"settings\":{\"title\":\"Class\",\"header_size\":\"h1\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e82529f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"14\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/c4.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":7.7080000000000002},\"_position\":\"absolute\",\"_offset_x\":{\"size\":359,\"unit\":\"px\"},\"_offset_x_tablet\":{\"size\":133,\"unit\":\"px\"},\"_offset_y\":{\"size\":-48,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-27,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":21,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-14,\"unit\":\"px\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6cc0d601\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"15\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/c3.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":2.7629999999999999},\"_position\":\"absolute\",\"_offset_x\":{\"size\":428,\"unit\":\"px\"},\"_offset_x_tablet\":{\"size\":177,\"unit\":\"px\"},\"_offset_y\":{\"size\":61,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":41,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":47,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-38,\"unit\":\"px\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6f01c9e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"17\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/edge.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":5.8129999999999997},\"_position\":\"absolute\",\"_offset_x\":{\"size\":765,\"unit\":\"px\"},\"_offset_x_tablet\":{\"size\":518,\"unit\":\"px\"},\"_offset_y\":{\"size\":-18,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-14,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":291,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-3,\"unit\":\"px\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6e86f898\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"280\",\"left\":\"0\",\"isLinked\":false},\"shape_divider_bottom\":\"tilt\",\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=a00e83d\"},\"overflow\":\"hidden\",\"shape_divider_bottom_height_tablet\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"170\",\"left\":\"20\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4e28f970\",\"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},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2e9b871a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"14\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/c4.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":3.875},\"_position\":\"absolute\",\"_offset_x\":{\"size\":956,\"unit\":\"px\"},\"_offset_y\":{\"size\":33,\"unit\":\"px\"},\"_z_index\":7,\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":36.732999999999997},\"_offset_x_tablet\":{\"size\":511,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":34,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-26,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":80,\"unit\":\"px\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"21d2ef17\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"29\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/edge2.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":6.6630000000000003},\"_position\":\"absolute\",\"_offset_x\":{\"size\":325,\"unit\":\"px\"},\"_offset_y\":{\"size\":-43,\"unit\":\"px\"},\"_z_index\":7,\"_offset_x_tablet\":{\"size\":116,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-19,\"unit\":\"px\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5d89f62b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our  Courses\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3d67521f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":130,\"sizes\":[]},\"__globals__\":{\"shape_divider_bottom_color\":\"globals\\/colors?id=a00e83d\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"58db40f7\",\"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},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"30896c48\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"%\",\"top\":\"-20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"-53\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"544b35d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6c3b0df5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"48\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/kids-taking-exam-in-school-2022-06-29-19-26-45-utc-copy.jpg\"},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"35\",\"left\":\"15\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":15,\"blur\":25,\"spread\":-5,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=secondary\"},\"jkit_transform_rotate\":{\"unit\":\"px\",\"size\":358,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7a57cd1b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Social Studies\",\"header_size\":\"h4\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"219b49ac\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"91acece\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"230d15ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"276de1fd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"38\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/portrait-of-happy-caucasian-boy-standing-at-chalkb-2021-09-03-06-28-24-utc-copy.jpg\"},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"35\",\"left\":\"15\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":15,\"blur\":25,\"spread\":-5,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=secondary\"},\"jkit_transform_rotate\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"23271197\",\"elType\":\"widget\",\"settings\":{\"title\":\"Mathematics \",\"header_size\":\"h4\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1f67b23f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"69e75faf\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"34c852c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"203e6185\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"55\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/woman-learning-english-online-2021-08-26-15-34-41-utc-copy.jpg\"},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"35\",\"left\":\"15\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":15,\"blur\":25,\"spread\":-5,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=secondary\"},\"jkit_transform_rotate\":{\"unit\":\"px\",\"size\":358,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3da71c6b\",\"elType\":\"widget\",\"settings\":{\"title\":\"English Course\",\"header_size\":\"h4\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"27a201e0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"67eddd15\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"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},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"47e66a4e\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"-53\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"31cef383\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"14dd1ae7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"61\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/elementary-student-learning-in-the-classroom-at-sc-2022-11-16-14-48-06-utc-copy.jpg\"},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"35\",\"left\":\"15\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":15,\"blur\":25,\"spread\":-5,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=secondary\"},\"jkit_transform_rotate\":{\"unit\":\"px\",\"size\":358,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"69e6c7a4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Advanced Mathematic\",\"header_size\":\"h4\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"45cba23e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"34a80a88\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"775d96d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"774446dd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"47\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/boy-at-lesson-2021-09-24-03-25-58-utc-copy.jpg\"},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"35\",\"left\":\"15\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":15,\"blur\":25,\"spread\":-5,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=secondary\"},\"jkit_transform_rotate\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8ad6909\",\"elType\":\"widget\",\"settings\":{\"title\":\"Geography\",\"header_size\":\"h4\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"16c700c6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"269cc4c9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"9737902\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4a469153\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"68\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/difficult-exam-in-elementary-school-2021-09-24-02-55-23-utc-copy.jpg\"},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"35\",\"left\":\"15\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":15,\"blur\":25,\"spread\":-5,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=secondary\"},\"jkit_transform_rotate\":{\"unit\":\"px\",\"size\":358,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2dd77e66\",\"elType\":\"widget\",\"settings\":{\"title\":\"Exam Drill\",\"header_size\":\"h4\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"34b05456\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"59209d0f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"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},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"66f49767\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"shape_divider_bottom_flip\":\"yes\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=a00e83d\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"71b424ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_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\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5a29450a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Programs for excellence\",\"align_tablet\":\"center\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"769d46ed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"19\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/c1.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":22.148},\"_position\":\"absolute\",\"_offset_x\":{\"size\":470,\"unit\":\"px\"},\"_offset_y\":{\"size\":-54,\"unit\":\"px\"},\"_z_index\":7,\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":73.183000000000007},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":39.183},\"_offset_x_tablet\":{\"size\":-65,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":252,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-166,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-203,\"unit\":\"px\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"655b3c54\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"29\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/edge2.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":15.734},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-44,\"unit\":\"px\"},\"_offset_y\":{\"size\":26,\"unit\":\"px\"},\"_z_index\":7,\"_element_width_tablet\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":63.75},\"_offset_x_tablet\":{\"size\":28,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":2,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-23,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-18,\"unit\":\"px\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"31392f3c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Mauris at lacus semper, fermentum mi sed, rutrum nibh. Sed gravida elit ligula, sit amet venenatis diam hendrerit iaculis.<\\/p>\",\"align_tablet\":\"center\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4674dfd8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"28\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/c2.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":10.724},\"_position\":\"absolute\",\"_offset_x\":{\"size\":179,\"unit\":\"px\"},\"_offset_y\":{\"size\":408,\"unit\":\"px\"},\"_z_index\":7,\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":42.116999999999997},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":30.117000000000001},\"_offset_x_tablet\":{\"size\":635,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":254,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-31,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":355,\"unit\":\"px\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"116765fa\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover More\",\"align_tablet\":\"center\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"245c258b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"130f8254\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6a62fbed\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"71195a9f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"40\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/grade.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_border\":\"none\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"5\",\"isLinked\":false},\"__globals__\":{\"_border_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=384fc29\"},\"jkit_transform_rotate\":{\"unit\":\"px\",\"size\":360,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"bca3517\",\"elType\":\"widget\",\"settings\":{\"title\":\"Grade Boost\",\"header_size\":\"h5\",\"align\":\"center\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2e0f0349\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet.<\\/p>\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=f8cdd91\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"2e48b9f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7ca43c4e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"45\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/chart.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_border\":\"none\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"5\",\"isLinked\":false},\"__globals__\":{\"_border_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=98e3e15\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a311795\",\"elType\":\"widget\",\"settings\":{\"title\":\"Skill Evaluation\",\"header_size\":\"h5\",\"align\":\"center\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"733738cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet.<\\/p>\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=f8cdd91\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"651e5959\",\"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\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2b54656d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5589bbbf\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"50\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/test-exam-sheet.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_border\":\"none\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"5\",\"isLinked\":false},\"__globals__\":{\"_border_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=7f7112a\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"47d43b9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Mock Exam\",\"header_size\":\"h5\",\"align\":\"center\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5ed3881f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet.<\\/p>\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=f8cdd91\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"2c6ce778\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"a771648\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"54\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/schedule-sheet.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_border\":\"none\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"5\",\"isLinked\":false},\"__globals__\":{\"_border_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=4b29dee\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3752409e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Weekend Class\",\"header_size\":\"h5\",\"align\":\"center\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"74054472\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet.<\\/p>\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=f8cdd91\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"474da951\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"25\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/13-copy.jpg\"},\"background_repeat\":\"repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002,\"sizes\":[]},\"shape_divider_top\":\"tilt\",\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":123,\"sizes\":[]},\"shape_divider_top_flip\":\"yes\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=0a21634\",\"shape_divider_top_color\":\"globals\\/colors?id=a00e83d\"},\"shape_divider_top_height_tablet\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1ab8f741\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"34c9b4bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Join Our Education center Now\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"},\"align_tablet\":\"center\",\"_margin_mobile\":{\"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},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2932bac9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"28\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/c2.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":37.046999999999997},\"_position\":\"absolute\",\"_offset_x\":{\"size\":508,\"unit\":\"px\"},\"_offset_y\":{\"size\":-53,\"unit\":\"px\"},\"_z_index\":7,\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":89.066999999999993},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":30.067},\"_offset_x_tablet\":{\"size\":94,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":252,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-60,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":28,\"unit\":\"px\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"22298788\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"14\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/c4.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":12.92},\"_position\":\"absolute\",\"_offset_x\":{\"size\":1290,\"unit\":\"px\"},\"_offset_y\":{\"size\":347,\"unit\":\"px\"},\"_z_index\":7,\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":42.299999999999997},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":118.3},\"_offset_x_tablet\":{\"size\":586,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":-72,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-396,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-43,\"unit\":\"px\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6000cee9\",\"elType\":\"widget\",\"settings\":{\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"},\"align_tablet\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"18a2aec1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Sign Up Now\",\"align\":\"left\",\"_z_index\":9,\"__globals__\":{\"background_color\":\"globals\\/colors?id=5425a2a\",\"button_background_hover_color\":\"globals\\/colors?id=7f7112a\"},\"align_tablet\":\"center\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"77b66901\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"26\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/edge3.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":18.638000000000002},\"_offset_x\":{\"size\":172,\"unit\":\"px\"},\"_offset_y\":{\"size\":331,\"unit\":\"px\"},\"_z_index\":7,\"_margin\":{\"unit\":\"%\",\"top\":\"-60\",\"right\":\"45\",\"bottom\":\"0\",\"left\":\"-45\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":39,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"24e953ca\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"-150\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"50\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-160\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"429c3cdc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"46\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/cute-elementary-kids-with-books-at-school-2022-12-16-18-15-57-utc-copy.jpg\"},\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":\"51\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/liki.png\"},\"width_tablet\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":88,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3956712\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"57\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/cute-elementary-kids-with-books-at-school-2022-12-16-18-15-57-utc2.png\"},\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_position\":\"absolute\",\"width_tablet\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":88,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(339,88,'_elementor_page_assets','a:0:{}'),(340,88,'_wp_page_template','elementor_header_footer'),(341,88,'envato_tk_source_kit','6'),(342,88,'envato_tk_source_index','6'),(343,90,'_elementor_edit_mode','builder'),(344,90,'_elementor_template_type','section'),(345,90,'_elementor_version','3.15.3'),(346,90,'_elementor_data','[{\"id\":\"570c8364\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"7\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/2-copy.jpg\"},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"shape_divider_bottom\":\"tilt\",\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":225,\"sizes\":[]},\"shape_divider_bottom_flip\":\"yes\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"00\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.55000000000000004,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=ff9d88d\",\"shape_divider_bottom_color\":\"globals\\/colors?id=a00e83d\"},\"overflow\":\"hidden\",\"shape_divider_bottom_height_tablet\":{\"unit\":\"px\",\"size\":105,\"sizes\":[]},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"130\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"20\",\"bottom\":\"130\",\"left\":\"20\",\"isLinked\":false},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2e6fd472\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"ea53512\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Smart  \",\"sg_title_focused\":\"Learning\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_typography_content_typography_typography\":\"custom\",\"st_title_typography_content_typography_font_family\":\"Mulish\",\"st_title_typography_content_typography_font_size\":{\"unit\":\"rem\",\"size\":8.5,\"sizes\":[]},\"st_title_typography_content_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":4.7999999999999998,\"sizes\":[]},\"st_title_typography_content_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":3.7000000000000002,\"sizes\":[]},\"st_title_typography_content_typography_font_weight\":\"800\",\"st_title_typography_content_typography_text_transform\":\"capitalize\",\"st_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"st_title_typography_content_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=4244abd\",\"st_focused_typography_content_typography_typography\":\"globals\\/typography?id=d65c9cc\",\"st_focused_color_responsive\":\"globals\\/colors?id=secondary\",\"st_title_color_responsive\":\"globals\\/colors?id=secondary\"},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_general_alignment_responsive_tablet\":\"center\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"sg_separator_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_title_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_title_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_title_background_background_slideshow_gallery\":[],\"st_title_border_color_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_title_border_color_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_title_border_color_background_slideshow_gallery\":[],\"st_focused_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_focused_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_focused_background_background_slideshow_gallery\":[],\"st_focused_gradient_color_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_focused_gradient_color_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_focused_gradient_color_background_slideshow_gallery\":[],\"st_subtitle_gradient_color_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_subtitle_gradient_color_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_subtitle_gradient_color_background_slideshow_gallery\":[],\"st_subtitle_border_left_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_subtitle_border_left_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_subtitle_border_left_background_background_slideshow_gallery\":[],\"st_subtitle_border_right_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_subtitle_border_right_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_subtitle_border_right_background_background_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"jkit_heading\"},{\"id\":\"7814c2f9\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Study \",\"sg_title_focused\":\"Easily\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_typography_content_typography_typography\":\"custom\",\"st_title_typography_content_typography_font_family\":\"Mulish\",\"st_title_typography_content_typography_font_size\":{\"unit\":\"rem\",\"size\":8.5,\"sizes\":[]},\"st_title_typography_content_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":4.7999999999999998,\"sizes\":[]},\"st_title_typography_content_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":3.7000000000000002,\"sizes\":[]},\"st_title_typography_content_typography_font_weight\":\"800\",\"st_title_typography_content_typography_text_transform\":\"capitalize\",\"st_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"st_title_typography_content_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=4244abd\",\"st_focused_typography_content_typography_typography\":\"globals\\/typography?id=d65c9cc\",\"st_focused_color_responsive\":\"globals\\/colors?id=secondary\",\"st_title_color_responsive\":\"globals\\/colors?id=secondary\"},\"_margin\":{\"unit\":\"%\",\"top\":\"-7\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"-6\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_general_alignment_responsive_tablet\":\"center\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"sg_separator_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_title_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_title_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_title_background_background_slideshow_gallery\":[],\"st_title_border_color_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_title_border_color_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_title_border_color_background_slideshow_gallery\":[],\"st_focused_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_focused_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_focused_background_background_slideshow_gallery\":[],\"st_focused_gradient_color_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_focused_gradient_color_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_focused_gradient_color_background_slideshow_gallery\":[],\"st_subtitle_gradient_color_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_subtitle_gradient_color_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_subtitle_gradient_color_background_slideshow_gallery\":[],\"st_subtitle_border_left_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_subtitle_border_left_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_subtitle_border_left_background_background_slideshow_gallery\":[],\"st_subtitle_border_right_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_subtitle_border_right_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_subtitle_border_right_background_background_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"jkit_heading\"},{\"id\":\"29a8be87\",\"elType\":\"widget\",\"settings\":{\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"},\"align_tablet\":\"center\",\"_animation\":\"fadeInUp\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"56f5a3d0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Check It Out\",\"align_tablet\":\"center\",\"_animation\":\"fadeInUp\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"3d34611c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"-115\",\"right\":\"-50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-75\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"94ba9c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"13\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/boy3.png\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"-85\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_position\":\"absolute\",\"_z_index\":2,\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-40\",\"bottom\":\"0\",\"left\":\"-40\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cbb7759\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"15\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/c3.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":14.5},\"_position\":\"absolute\",\"_offset_x\":{\"size\":88,\"unit\":\"px\"},\"_offset_y\":{\"size\":22,\"unit\":\"px\"},\"_z_index\":7,\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":33.216999999999999},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":21.216999999999999},\"_offset_x_tablet\":{\"size\":111,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":272,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":100,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":75,\"unit\":\"px\"},\"_animation\":\"fadeInUp\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7db7d88a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"17\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/edge.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":14.5},\"_position\":\"absolute\",\"_offset_x\":{\"size\":521,\"unit\":\"px\"},\"_offset_y\":{\"size\":116,\"unit\":\"px\"},\"_z_index\":7,\"_element_width_tablet\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":78.216999999999999},\"_offset_x_tablet\":{\"size\":534,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":203,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":103,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":382,\"unit\":\"px\"},\"_animation\":\"fadeInUp\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5ad9b1d8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"19\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/c1.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32.997},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-11,\"unit\":\"px\"},\"_offset_y\":{\"size\":426,\"unit\":\"px\"},\"_z_index\":7,\"_element_width_tablet\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":415.06700000000001},\"_offset_x_tablet\":{\"size\":-241,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":-256,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":410,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":327,\"unit\":\"px\"},\"_animation\":\"fadeInUp\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2b0d1f28\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"28\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/c2.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":6.9939999999999998},\"_position\":\"absolute\",\"_offset_x\":{\"size\":539,\"unit\":\"px\"},\"_offset_y\":{\"size\":140,\"unit\":\"px\"},\"_z_index\":7,\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":44.332999999999998},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":91.332999999999998},\"_offset_x_tablet\":{\"size\":545,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":196,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":124,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-13,\"unit\":\"px\"},\"_animation\":\"fadeInUp\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7a787f8a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"35\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/little-boy-is-having-online-lessons-by-using-lapto-2022-02-03-17-43-51-utc-copy.jpg\"},\"image_border_border\":\"none\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"image_box_shadow_box_shadow\":{\"horizontal\":100,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.09)\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"-85\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1,\"_background_background\":\"classic\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":\"41\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/liki3.png\"},\"_mask_position\":\"top right\",\"__globals__\":{\"_background_color\":\"\",\"image_border_color\":\"globals\\/colors?id=secondary\"},\"width_tablet\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-40\",\"bottom\":\"0\",\"left\":\"-40\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f786e03\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"280\",\"left\":\"0\",\"isLinked\":false},\"shape_divider_bottom\":\"tilt\",\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=a00e83d\"},\"overflow\":\"hidden\",\"shape_divider_bottom_height_tablet\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"170\",\"left\":\"20\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"24ad9d74\",\"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},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5c44b861\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"14\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/c4.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":3.875},\"_position\":\"absolute\",\"_offset_x\":{\"size\":951,\"unit\":\"px\"},\"_offset_y\":{\"size\":33,\"unit\":\"px\"},\"_z_index\":7,\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":36.732999999999997},\"_offset_x_tablet\":{\"size\":614,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":34,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":37,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":80,\"unit\":\"px\"},\"_animation\":\"fadeInUp\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7f786a11\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"29\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/edge2.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":6.6630000000000003},\"_position\":\"absolute\",\"_offset_x\":{\"size\":325,\"unit\":\"px\"},\"_offset_y\":{\"size\":-43,\"unit\":\"px\"},\"_z_index\":7,\"_offset_x_tablet\":{\"size\":116,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-19,\"unit\":\"px\"},\"_animation\":\"fadeInUp\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"25aa2d46\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Primary Courses\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\"},\"_animation\":\"fadeInUp\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"10b34608\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":175,\"sizes\":[]},\"shape_divider_bottom_flip\":\"yes\",\"__globals__\":{\"shape_divider_bottom_color\":\"globals\\/colors?id=bb22fe7\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"222444ff\",\"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},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"76a37d4e\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"%\",\"top\":\"-20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"-53\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"e41cd02\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"695a1172\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"48\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/kids-taking-exam-in-school-2022-06-29-19-26-45-utc-copy.jpg\"},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"35\",\"left\":\"15\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":15,\"blur\":25,\"spread\":-5,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=secondary\"},\"jkit_transform_rotate\":{\"unit\":\"px\",\"size\":358,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6fe6dfc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Social Studies\",\"header_size\":\"h4\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"41e02995\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"463b58\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"f0b8ccc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2a590474\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"38\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/portrait-of-happy-caucasian-boy-standing-at-chalkb-2021-09-03-06-28-24-utc-copy.jpg\"},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"35\",\"left\":\"15\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":15,\"blur\":25,\"spread\":-5,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=secondary\"},\"jkit_transform_rotate\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cf3be11\",\"elType\":\"widget\",\"settings\":{\"title\":\"Mathematics \",\"header_size\":\"h4\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"75f74337\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7c66df06\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"7138956e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5b6f357e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"55\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/woman-learning-english-online-2021-08-26-15-34-41-utc-copy.jpg\"},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"35\",\"left\":\"15\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":15,\"blur\":25,\"spread\":-5,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=secondary\"},\"jkit_transform_rotate\":{\"unit\":\"px\",\"size\":358,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6ef7d30\",\"elType\":\"widget\",\"settings\":{\"title\":\"English Course\",\"header_size\":\"h4\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"46aaebfb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"dbb40c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"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},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"11f84d8c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"65\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/3-copy.jpg\"},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.69999999999999996,\"sizes\":[]},\"shape_divider_top\":\"tilt\",\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":175,\"sizes\":[]},\"shape_divider_top_flip\":\"yes\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=bb22fe7\",\"background_overlay_color\":\"globals\\/colors?id=bb22fe7\"},\"overflow\":\"hidden\",\"shape_divider_top_height_tablet\":{\"unit\":\"px\",\"size\":69,\"sizes\":[]},\"shape_divider_top_height_mobile\":{\"unit\":\"px\",\"size\":51,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"140\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"77f97fbd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42.542999999999999,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"content_position_tablet\":\"center\",\"align_tablet\":\"center\",\"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\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3d8fef96\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"23\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/aged-teacher-2021-09-24-03-26-41-utc.jpg\"},\"opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-125\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=dafc007\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"150\",\"bottom\":\"0\",\"left\":\"150\",\"isLinked\":false},\"_margin_mobile\":{\"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},\"_element_width_tablet\":\"auto\",\"_z_index_mobile\":6,\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"647157f5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"32\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/aged-teacher-2021-09-24-03-26-41-utc-2.png\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-125\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-2,\"unit\":\"px\"},\"_offset_y\":{\"size\":1,\"unit\":\"px\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"150\",\"bottom\":\"0\",\"left\":\"150\",\"isLinked\":false},\"_margin_mobile\":{\"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},\"_z_index_mobile\":7,\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"1988cdfd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":57.457000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"75\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"58adc62a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Preparing Our Children\\u2019s Bright Future\",\"align_tablet\":\"center\",\"_animation\":\"fadeInUp\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79e7f8cb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"29\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/edge2.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":13.539999999999999},\"_position\":\"absolute\",\"_offset_x\":{\"size\":24,\"unit\":\"px\"},\"_offset_y\":{\"size\":-38,\"unit\":\"px\"},\"_z_index\":7,\"_element_width_tablet\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":70.582999999999998},\"_offset_x_tablet\":{\"size\":14,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":-4,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":8,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":12,\"unit\":\"px\"},\"_animation\":\"fadeInUp\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"757f4276\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec ultrices purus nec sollicitudin eleifend. In hac habitasse platea dictumst.<\\/p>\",\"align_tablet\":\"center\",\"_animation\":\"fadeInUp\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"38be282b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-line-chart-light\",\"library\":\"jkiticon\"},\"view\":\"stacked\",\"title_text\":\"Grade Improvement\",\"description_text\":\" Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"position\":\"left\",\"icon_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=d50cf18\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"primary_color\":\"globals\\/colors?id=7f7112a\",\"description_typography_typography\":\"globals\\/typography?id=f8cdd91\"},\"icon_space_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"text_align_tablet\":\"left\",\"text_align_mobile\":\"center\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_element_width_tablet\":\"auto\",\"_animation\":\"fadeInUp\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"96cacb9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-open-book-light\",\"library\":\"jkiticon\"},\"view\":\"stacked\",\"title_text\":\"Exam Preparation\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing.\",\"position\":\"left\",\"secondary_color\":\"#FFFFFF\",\"icon_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Exo 2\",\"title_typography_font_size\":{\"unit\":\"rem\",\"size\":1.6000000000000001,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.2,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2,\"sizes\":[]},\"title_typography_font_weight\":\"800\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=d50cf18\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"primary_color\":\"globals\\/colors?id=dafc007\",\"description_typography_typography\":\"globals\\/typography?id=f8cdd91\"},\"icon_space_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_element_width_tablet\":\"auto\",\"_animation\":\"fadeInUp\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"536e0f0b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-users\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Social Development\",\"description_text\":\"Donec et massa sit amet augue laoreet venenatis id et urna.\",\"position\":\"left\",\"icon_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=d50cf18\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"primary_color\":\"globals\\/colors?id=0a21634\",\"description_typography_typography\":\"globals\\/typography?id=f8cdd91\"},\"icon_space_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_tablet\":\"auto\",\"_animation\":\"fadeInUp\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"55b37337\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"19\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/c1.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.43},\"_position\":\"absolute\",\"_offset_x\":{\"size\":578,\"unit\":\"px\"},\"_offset_y\":{\"size\":-180,\"unit\":\"px\"},\"_z_index\":7,\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":116.93300000000001},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":150.93299999999999},\"_offset_x_tablet\":{\"size\":576,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":-61,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-606,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-475,\"unit\":\"px\"},\"_z_index_mobile\":1,\"_animation\":\"fadeInUp\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"32ef757\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":\"47\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/boy-at-lesson-2021-09-24-03-25-58-utc-copy.jpg\"},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.81000000000000005,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=5425a2a\"},\"background_position\":\"center center\",\"overflow\":\"hidden\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4476dd23\",\"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},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"28769bbc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our vision is every child is safe, inspired, challenged, empowered.\",\"align\":\"center\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInUp\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a64ecc6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"17\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/edge.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":9.5749999999999993},\"_position\":\"absolute\",\"_offset_x\":{\"size\":1129,\"unit\":\"px\"},\"_offset_y\":{\"size\":-59,\"unit\":\"px\"},\"_z_index\":7,\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":52.017000000000003},\"_offset_x_mobile\":{\"size\":249,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-19,\"unit\":\"px\"},\"_animation\":\"fadeInUp\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"289d854b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"15\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/c3.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":8.1790000000000003},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-12,\"unit\":\"px\"},\"_offset_y\":{\"size\":-28,\"unit\":\"px\"},\"_z_index\":7,\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":88.516999999999996},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":130.517},\"_offset_x_tablet\":{\"size\":-60,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":-106,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-60,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":70,\"unit\":\"px\"},\"_animation\":\"fadeInUp\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"50cadce\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Integer efficitur ligula ipsum, at vulputate mi fermentum sit amet. Sed pulvinar rutrum commodo. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean vitae tortor nec lectus mattis congue id sed tortor.<\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInUp\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"13d9bff7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"14\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/c4.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":3.73},\"_position\":\"absolute\",\"_offset_x\":{\"size\":81,\"unit\":\"px\"},\"_offset_y\":{\"size\":91,\"unit\":\"px\"},\"_z_index\":7,\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_offset_x_tablet\":{\"size\":616,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":10,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":101,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":30,\"unit\":\"px\"},\"_animation\":\"fadeInUp\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"56d13eec\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"_animation\":\"fadeInUp\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"38437890\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"shape_divider_bottom_flip\":\"yes\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=a00e83d\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"24bbeed8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_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\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4a938ad2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Programs for excellence\",\"align_tablet\":\"center\",\"_animation\":\"fadeInUp\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6768659\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"19\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/c1.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":22.148},\"_position\":\"absolute\",\"_offset_x\":{\"size\":470,\"unit\":\"px\"},\"_offset_y\":{\"size\":-54,\"unit\":\"px\"},\"_z_index\":7,\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":73.183000000000007},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":39.183},\"_offset_x_tablet\":{\"size\":154,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":249,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-218,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-288,\"unit\":\"px\"},\"_animation\":\"fadeInUp\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"46c9728d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"29\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/edge2.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":15.734},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-44,\"unit\":\"px\"},\"_offset_y\":{\"size\":26,\"unit\":\"px\"},\"_z_index\":7,\"_element_width_tablet\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":63.75},\"_offset_x_tablet\":{\"size\":28,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":2,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-23,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-18,\"unit\":\"px\"},\"_animation\":\"fadeInUp\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2c455d98\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Mauris at lacus semper, fermentum mi sed, rutrum nibh. Sed gravida elit ligula, sit amet venenatis diam hendrerit iaculis.<\\/p>\",\"align_tablet\":\"center\",\"_animation\":\"fadeInUp\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"73fc15a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"28\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/c2.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":10.724},\"_position\":\"absolute\",\"_offset_x\":{\"size\":179,\"unit\":\"px\"},\"_offset_y\":{\"size\":408,\"unit\":\"px\"},\"_z_index\":7,\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":42.116999999999997},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":30.117000000000001},\"_offset_x_tablet\":{\"size\":635,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":254,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-31,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":355,\"unit\":\"px\"},\"_animation\":\"fadeInUp\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"babffd7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover More\",\"align_tablet\":\"center\",\"_animation\":\"fadeInUp\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"5e2bfc61\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"62b578aa\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"440648d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4d4ebe07\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"40\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/grade.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_border\":\"none\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"5\",\"isLinked\":false},\"__globals__\":{\"_border_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=384fc29\"},\"jkit_transform_rotate\":{\"unit\":\"px\",\"size\":360,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6547d799\",\"elType\":\"widget\",\"settings\":{\"title\":\"Grade Boost\",\"header_size\":\"h5\",\"align\":\"center\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5d04248f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet.<\\/p>\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=f8cdd91\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"2fb85fe2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"121e69f9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"45\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/chart.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_border\":\"none\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"5\",\"isLinked\":false},\"__globals__\":{\"_border_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=98e3e15\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1969fb8e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Skill Evaluation\",\"header_size\":\"h5\",\"align\":\"center\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"69195821\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet.<\\/p>\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=f8cdd91\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1c04763\",\"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\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"63b6a249\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1c111389\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"50\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/test-exam-sheet.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_border\":\"none\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"5\",\"isLinked\":false},\"__globals__\":{\"_border_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=7f7112a\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f32d009\",\"elType\":\"widget\",\"settings\":{\"title\":\"Mock Exam\",\"header_size\":\"h5\",\"align\":\"center\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7730eddf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet.<\\/p>\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=f8cdd91\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"1086cd02\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5ad1e6c5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"54\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/schedule-sheet.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_border\":\"none\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"5\",\"isLinked\":false},\"__globals__\":{\"_border_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=4b29dee\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"13737757\",\"elType\":\"widget\",\"settings\":{\"title\":\"Weekend Class\",\"header_size\":\"h5\",\"align\":\"center\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3480d765\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet.<\\/p>\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=f8cdd91\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"491e9121\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":\"25\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/13-copy.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002,\"sizes\":[]},\"shape_divider_top\":\"tilt\",\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":130,\"sizes\":[]},\"shape_divider_top_flip\":\"yes\",\"shape_divider_bottom\":\"tilt\",\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":180,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"185\",\"right\":\"0\",\"bottom\":\"400\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"shape_divider_top_color\":\"globals\\/colors?id=a00e83d\",\"background_overlay_color\":\"globals\\/colors?id=98e3e15\",\"shape_divider_bottom_color\":\"globals\\/colors?id=50714e7\"},\"overflow\":\"hidden\",\"shape_divider_top_height_tablet\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"shape_divider_bottom_height_tablet\":{\"unit\":\"px\",\"size\":102,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"230\",\"left\":\"0\",\"isLinked\":false},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4e3515f3\",\"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},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4d89f651\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Popular Teacher\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\"},\"_animation\":\"fadeInUp\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"583d65aa\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"14\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/c4.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":3.73},\"_position\":\"absolute\",\"_offset_x\":{\"size\":1013,\"unit\":\"px\"},\"_offset_y\":{\"size\":57,\"unit\":\"px\"},\"_z_index\":7,\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":20.800000000000001},\"_offset_x_tablet\":{\"size\":624,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":257,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":49,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":134,\"unit\":\"px\"},\"_animation\":\"fadeInUp\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1285323c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"15\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/c3.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":13.103},\"_position\":\"absolute\",\"_offset_x\":{\"size\":1022,\"unit\":\"px\"},\"_offset_y\":{\"size\":-124,\"unit\":\"px\"},\"_z_index\":7,\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":56.966999999999999},\"_offset_x_tablet\":{\"size\":602,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":269,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-75,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":67,\"unit\":\"px\"},\"_animation\":\"fadeInUp\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3bec3e2d\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=50714e7\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3f59b8fb\",\"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},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4954c376\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"-285\",\"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\":\"75\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3fcf9523\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"34\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/Acanthus-black-white-02-copy.png\"},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.050000000000000003,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":25,\"blur\":30,\"spread\":-10,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"25\",\"bottom\":\"40\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=5425a2a\",\"border_color\":\"globals\\/colors?id=secondary\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"e32ba5a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"30\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/pp1.jpg\"},\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":20,\"blur\":20,\"spread\":-10,\"color\":\"rgba(0, 0, 0, 0.09)\"},\"_margin\":{\"unit\":\"%\",\"top\":\"-37\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"-63\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_mask_image\":{\"id\":\"52\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/hex2.png\"},\"width_tablet\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"18\",\"left\":\"9\",\"isLinked\":false},\"jkit_transform_rotate\":{\"unit\":\"px\",\"size\":356,\"sizes\":[]},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7d5f22b1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Harry Smith\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7d759de1\",\"elType\":\"widget\",\"settings\":{\"title\":\"English Teacher\",\"header_size\":\"h5\",\"align\":\"center\",\"_margin\":{\"unit\":\"%\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=24b2df3\",\"title_color\":\"globals\\/colors?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a75ee73\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"__globals__\":{\"stars_color\":\"globals\\/colors?id=3c09f21\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"star-rating\"},{\"id\":\"4e62d08e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0\\\" Lorem ipsum dolor sit amet, consectetur adipiscing elit. Suspendisse est neque, ultrices at enim vitae, mattis consequat dui.\\\"<\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=e64be90\",\"typography_typography\":\"globals\\/typography?id=35188cd\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7707007e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact\",\"align\":\"center\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=53ec359\",\"button_background_hover_color\":\"globals\\/colors?id=4b29dee\"},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"3a86a780\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"34\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/Acanthus-black-white-02-copy.png\"},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.050000000000000003,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":25,\"blur\":30,\"spread\":-10,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"25\",\"bottom\":\"40\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=0a21634\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"7\",\"bottom\":\"0\",\"left\":\"7\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":300,\"background_overlay_position\":\"center left\",\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"44b527d9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"39\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/pp2.jpg\"},\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":20,\"blur\":20,\"spread\":-10,\"color\":\"rgba(0, 0, 0, 0.09)\"},\"_margin\":{\"unit\":\"%\",\"top\":\"-37\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"-63\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_mask_image\":{\"id\":\"52\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/hex2.png\"},\"width_tablet\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"18\",\"left\":\"9\",\"isLinked\":false},\"jkit_transform_rotate\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"23ab7595\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gregory Warren\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"565a7dc1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Social Teacher\",\"header_size\":\"h5\",\"align\":\"center\",\"_margin\":{\"unit\":\"%\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=24b2df3\",\"title_color\":\"globals\\/colors?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1f8130f5\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"__globals__\":{\"stars_color\":\"globals\\/colors?id=3c09f21\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"star-rating\"},{\"id\":\"7b8d2cd1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0\\\" Lorem ipsum dolor sit amet, consectetur adipiscing elit. Suspendisse est neque, ultrices at enim vitae, mattis consequat dui.\\\"<\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=e64be90\",\"typography_typography\":\"globals\\/typography?id=35188cd\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2188eb64\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact\",\"align\":\"center\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=5425a2a\",\"button_background_hover_color\":\"globals\\/colors?id=7f7112a\"},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"52337e3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"34\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/Acanthus-black-white-02-copy.png\"},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.050000000000000003,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":25,\"blur\":30,\"spread\":-10,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"25\",\"bottom\":\"40\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=8eb8d4a\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"14\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":600,\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"56d68742\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"44\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/pp3.jpg\"},\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":20,\"blur\":20,\"spread\":-10,\"color\":\"rgba(0, 0, 0, 0.09)\"},\"_margin\":{\"unit\":\"%\",\"top\":\"-37\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"-63\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_mask_image\":{\"id\":\"52\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/hex2.png\"},\"width_tablet\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"18\",\"left\":\"9\",\"isLinked\":false},\"jkit_transform_rotate\":{\"unit\":\"px\",\"size\":356,\"sizes\":[]},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"12e65748\",\"elType\":\"widget\",\"settings\":{\"title\":\"Peter Wong\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5847f105\",\"elType\":\"widget\",\"settings\":{\"title\":\"Math Teacher\",\"header_size\":\"h5\",\"align\":\"center\",\"_margin\":{\"unit\":\"%\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=24b2df3\",\"title_color\":\"globals\\/colors?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"441f4d49\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"__globals__\":{\"stars_color\":\"globals\\/colors?id=3c09f21\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"star-rating\"},{\"id\":\"6622a575\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0\\\" Lorem ipsum dolor sit amet, consectetur adipiscing elit. Suspendisse est neque, ultrices at enim vitae, mattis consequat dui.\\\"<\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=e64be90\",\"typography_typography\":\"globals\\/typography?id=35188cd\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7ec481c4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact\",\"align\":\"center\",\"__globals__\":[],\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4084f7c6\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"75\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"20\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=50714e7\"},\"overflow\":\"hidden\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"125\",\"left\":\"20\",\"isLinked\":false},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"75977e29\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"_inline_size_tablet\":100,\"_inline_size_mobile\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"617d75e0\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"318668aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":12,\"blur\":12,\"spread\":-6,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=bb22fe7\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3eb389cb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"62\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/logoipsum-265.png\"},\"width_mobile\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"31ab8f28\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":12,\"blur\":12,\"spread\":-6,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=80e8ddb\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"78008a3d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"66\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/logoipsum-264.png\"},\"width_mobile\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c16383f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":12,\"blur\":12,\"spread\":-6,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=d38674d\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"23b7ecc7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"69\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/logoipsum-262.png\"},\"width_mobile\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3a293d39\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5d75541\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":12,\"blur\":12,\"spread\":-6,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=d38674d\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"20fc83cd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"74\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/logoipsum-261.png\"},\"width_mobile\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d80ae6b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":12,\"blur\":12,\"spread\":-6,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=a00e83d\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5179e864\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"76\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/logoipsum-259.png\"},\"width_mobile\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"274e751c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":12,\"blur\":12,\"spread\":-6,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=80e8ddb\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"39290682\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"80\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/logoipsum-254.png\"},\"width_mobile\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6ebbbc70\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"45dde1bb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Trusted Partners\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"align_tablet\":\"center\",\"_animation\":\"fadeInUp\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a945a7c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Donec hendrerit nibh in lectus molestie, id bibendum orci hendrerit. Curabitur euismod ante finibus nibh suscipit, vitae vehicula eros venenatis.<\\/p>\",\"align_tablet\":\"center\",\"_animation\":\"fadeInUp\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5225458f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"25\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/13-copy.jpg\"},\"background_repeat\":\"repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002,\"sizes\":[]},\"shape_divider_top\":\"tilt\",\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":123,\"sizes\":[]},\"shape_divider_top_flip\":\"yes\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=0a21634\",\"shape_divider_top_color\":\"globals\\/colors?id=50714e7\"},\"shape_divider_top_height_tablet\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3129fd43\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"147c2efa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Join Our Education center Now\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"},\"align_tablet\":\"center\",\"_margin_mobile\":{\"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},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6c053a55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"28\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/c2.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":37.046999999999997},\"_position\":\"absolute\",\"_offset_x\":{\"size\":508,\"unit\":\"px\"},\"_offset_y\":{\"size\":-54,\"unit\":\"px\"},\"_z_index\":7,\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":89.066999999999993},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":30.067},\"_offset_x_tablet\":{\"size\":94,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":252,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-60,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":28,\"unit\":\"px\"},\"_animation\":\"fadeInUp\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2f6907ab\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"14\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/c4.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":12.92},\"_position\":\"absolute\",\"_offset_x\":{\"size\":1290,\"unit\":\"px\"},\"_offset_y\":{\"size\":347,\"unit\":\"px\"},\"_z_index\":7,\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":42.299999999999997},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":118.3},\"_offset_x_tablet\":{\"size\":586,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":-72,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-396,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-43,\"unit\":\"px\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7d706984\",\"elType\":\"widget\",\"settings\":{\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"},\"align_tablet\":\"center\",\"_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},\"_animation\":\"fadeInUp\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a46ccf3\",\"elType\":\"widget\",\"settings\":{\"text\":\"Sign Up Now\",\"align\":\"left\",\"_z_index\":9,\"__globals__\":{\"background_color\":\"globals\\/colors?id=5425a2a\",\"button_background_hover_color\":\"globals\\/colors?id=7f7112a\"},\"align_tablet\":\"center\",\"_animation\":\"fadeInUp\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"50501c81\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"26\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/edge3.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":18.638000000000002},\"_offset_x\":{\"size\":172,\"unit\":\"px\"},\"_offset_y\":{\"size\":331,\"unit\":\"px\"},\"_z_index\":7,\"_margin\":{\"unit\":\"%\",\"top\":\"-60\",\"right\":\"45\",\"bottom\":\"0\",\"left\":\"-45\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":39,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5255bf05\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"-150\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"50\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-160\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2da18f2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"46\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/cute-elementary-kids-with-books-at-school-2022-12-16-18-15-57-utc-copy.jpg\"},\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":\"51\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/liki.png\"},\"width_tablet\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":88,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a6dc542\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"57\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/cute-elementary-kids-with-books-at-school-2022-12-16-18-15-57-utc2.png\"},\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_position\":\"absolute\",\"width_tablet\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":88,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(347,91,'_elementor_edit_mode','builder'),(348,91,'_elementor_template_type','section'),(349,91,'_elementor_version','3.15.3'),(350,91,'_elementor_data','[{\"id\":\"570c8364\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"7\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/2-copy.jpg\"},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"shape_divider_bottom\":\"tilt\",\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":225,\"sizes\":[]},\"shape_divider_bottom_flip\":\"yes\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"00\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.55000000000000004,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=ff9d88d\",\"shape_divider_bottom_color\":\"globals\\/colors?id=a00e83d\"},\"overflow\":\"hidden\",\"shape_divider_bottom_height_tablet\":{\"unit\":\"px\",\"size\":105,\"sizes\":[]},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"130\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"20\",\"bottom\":\"130\",\"left\":\"20\",\"isLinked\":false},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2e6fd472\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"ea53512\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Smart  \",\"sg_title_focused\":\"Learning\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_typography_content_typography_typography\":\"custom\",\"st_title_typography_content_typography_font_family\":\"Mulish\",\"st_title_typography_content_typography_font_size\":{\"unit\":\"rem\",\"size\":8.5,\"sizes\":[]},\"st_title_typography_content_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":4.7999999999999998,\"sizes\":[]},\"st_title_typography_content_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":3.7000000000000002,\"sizes\":[]},\"st_title_typography_content_typography_font_weight\":\"800\",\"st_title_typography_content_typography_text_transform\":\"capitalize\",\"st_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"st_title_typography_content_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=4244abd\",\"st_focused_typography_content_typography_typography\":\"globals\\/typography?id=d65c9cc\",\"st_focused_color_responsive\":\"globals\\/colors?id=secondary\",\"st_title_color_responsive\":\"globals\\/colors?id=secondary\"},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_general_alignment_responsive_tablet\":\"center\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"sg_separator_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_title_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_title_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_title_background_background_slideshow_gallery\":[],\"st_title_border_color_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_title_border_color_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_title_border_color_background_slideshow_gallery\":[],\"st_focused_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_focused_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_focused_background_background_slideshow_gallery\":[],\"st_focused_gradient_color_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_focused_gradient_color_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_focused_gradient_color_background_slideshow_gallery\":[],\"st_subtitle_gradient_color_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_subtitle_gradient_color_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_subtitle_gradient_color_background_slideshow_gallery\":[],\"st_subtitle_border_left_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_subtitle_border_left_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_subtitle_border_left_background_background_slideshow_gallery\":[],\"st_subtitle_border_right_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_subtitle_border_right_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_subtitle_border_right_background_background_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"jkit_heading\"},{\"id\":\"7814c2f9\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Study \",\"sg_title_focused\":\"Easily\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_typography_content_typography_typography\":\"custom\",\"st_title_typography_content_typography_font_family\":\"Mulish\",\"st_title_typography_content_typography_font_size\":{\"unit\":\"rem\",\"size\":8.5,\"sizes\":[]},\"st_title_typography_content_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":4.7999999999999998,\"sizes\":[]},\"st_title_typography_content_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":3.7000000000000002,\"sizes\":[]},\"st_title_typography_content_typography_font_weight\":\"800\",\"st_title_typography_content_typography_text_transform\":\"capitalize\",\"st_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"st_title_typography_content_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=4244abd\",\"st_focused_typography_content_typography_typography\":\"globals\\/typography?id=d65c9cc\",\"st_focused_color_responsive\":\"globals\\/colors?id=secondary\",\"st_title_color_responsive\":\"globals\\/colors?id=secondary\"},\"_margin\":{\"unit\":\"%\",\"top\":\"-7\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"-6\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_general_alignment_responsive_tablet\":\"center\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"sg_separator_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_title_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_title_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_title_background_background_slideshow_gallery\":[],\"st_title_border_color_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_title_border_color_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_title_border_color_background_slideshow_gallery\":[],\"st_focused_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_focused_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_focused_background_background_slideshow_gallery\":[],\"st_focused_gradient_color_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_focused_gradient_color_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_focused_gradient_color_background_slideshow_gallery\":[],\"st_subtitle_gradient_color_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_subtitle_gradient_color_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_subtitle_gradient_color_background_slideshow_gallery\":[],\"st_subtitle_border_left_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_subtitle_border_left_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_subtitle_border_left_background_background_slideshow_gallery\":[],\"st_subtitle_border_right_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_subtitle_border_right_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_subtitle_border_right_background_background_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"jkit_heading\"},{\"id\":\"29a8be87\",\"elType\":\"widget\",\"settings\":{\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"},\"align_tablet\":\"center\",\"_animation\":\"fadeInUp\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"56f5a3d0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Check It Out\",\"align_tablet\":\"center\",\"_animation\":\"fadeInUp\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"3d34611c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"-115\",\"right\":\"-50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-75\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"94ba9c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"13\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/boy3.png\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"-85\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_position\":\"absolute\",\"_z_index\":2,\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-40\",\"bottom\":\"0\",\"left\":\"-40\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cbb7759\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"15\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/c3.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":14.5},\"_position\":\"absolute\",\"_offset_x\":{\"size\":88,\"unit\":\"px\"},\"_offset_y\":{\"size\":22,\"unit\":\"px\"},\"_z_index\":7,\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":33.216999999999999},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":21.216999999999999},\"_offset_x_tablet\":{\"size\":111,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":272,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":100,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":75,\"unit\":\"px\"},\"_animation\":\"fadeInUp\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7db7d88a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"17\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/edge.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":14.5},\"_position\":\"absolute\",\"_offset_x\":{\"size\":521,\"unit\":\"px\"},\"_offset_y\":{\"size\":116,\"unit\":\"px\"},\"_z_index\":7,\"_element_width_tablet\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":78.216999999999999},\"_offset_x_tablet\":{\"size\":534,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":203,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":103,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":382,\"unit\":\"px\"},\"_animation\":\"fadeInUp\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5ad9b1d8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"19\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/c1.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32.997},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-11,\"unit\":\"px\"},\"_offset_y\":{\"size\":426,\"unit\":\"px\"},\"_z_index\":7,\"_element_width_tablet\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":415.06700000000001},\"_offset_x_tablet\":{\"size\":-241,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":-256,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":410,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":327,\"unit\":\"px\"},\"_animation\":\"fadeInUp\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2b0d1f28\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"28\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/c2.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":6.9939999999999998},\"_position\":\"absolute\",\"_offset_x\":{\"size\":539,\"unit\":\"px\"},\"_offset_y\":{\"size\":140,\"unit\":\"px\"},\"_z_index\":7,\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":44.332999999999998},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":91.332999999999998},\"_offset_x_tablet\":{\"size\":545,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":196,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":124,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-13,\"unit\":\"px\"},\"_animation\":\"fadeInUp\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7a787f8a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"35\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/little-boy-is-having-online-lessons-by-using-lapto-2022-02-03-17-43-51-utc-copy.jpg\"},\"image_border_border\":\"none\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"image_box_shadow_box_shadow\":{\"horizontal\":100,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.09)\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"-85\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1,\"_background_background\":\"classic\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":\"41\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/liki3.png\"},\"_mask_position\":\"top right\",\"__globals__\":{\"_background_color\":\"\",\"image_border_color\":\"globals\\/colors?id=secondary\"},\"width_tablet\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-40\",\"bottom\":\"0\",\"left\":\"-40\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f786e03\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"280\",\"left\":\"0\",\"isLinked\":false},\"shape_divider_bottom\":\"tilt\",\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=a00e83d\"},\"overflow\":\"hidden\",\"shape_divider_bottom_height_tablet\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"170\",\"left\":\"20\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"24ad9d74\",\"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},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5c44b861\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"14\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/c4.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":3.875},\"_position\":\"absolute\",\"_offset_x\":{\"size\":951,\"unit\":\"px\"},\"_offset_y\":{\"size\":33,\"unit\":\"px\"},\"_z_index\":7,\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":36.732999999999997},\"_offset_x_tablet\":{\"size\":614,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":34,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":37,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":80,\"unit\":\"px\"},\"_animation\":\"fadeInUp\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7f786a11\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"29\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/edge2.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":6.6630000000000003},\"_position\":\"absolute\",\"_offset_x\":{\"size\":325,\"unit\":\"px\"},\"_offset_y\":{\"size\":-43,\"unit\":\"px\"},\"_z_index\":7,\"_offset_x_tablet\":{\"size\":116,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-19,\"unit\":\"px\"},\"_animation\":\"fadeInUp\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"25aa2d46\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Primary Courses\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\"},\"_animation\":\"fadeInUp\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"10b34608\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":175,\"sizes\":[]},\"shape_divider_bottom_flip\":\"yes\",\"__globals__\":{\"shape_divider_bottom_color\":\"globals\\/colors?id=bb22fe7\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"222444ff\",\"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},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"76a37d4e\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"%\",\"top\":\"-20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"-53\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"e41cd02\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"695a1172\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"48\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/kids-taking-exam-in-school-2022-06-29-19-26-45-utc-copy.jpg\"},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"35\",\"left\":\"15\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":15,\"blur\":25,\"spread\":-5,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=secondary\"},\"jkit_transform_rotate\":{\"unit\":\"px\",\"size\":358,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6fe6dfc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Social Studies\",\"header_size\":\"h4\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"41e02995\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"463b58\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"f0b8ccc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2a590474\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"38\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/portrait-of-happy-caucasian-boy-standing-at-chalkb-2021-09-03-06-28-24-utc-copy.jpg\"},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"35\",\"left\":\"15\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":15,\"blur\":25,\"spread\":-5,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=secondary\"},\"jkit_transform_rotate\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cf3be11\",\"elType\":\"widget\",\"settings\":{\"title\":\"Mathematics \",\"header_size\":\"h4\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"75f74337\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7c66df06\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"7138956e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5b6f357e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"55\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/woman-learning-english-online-2021-08-26-15-34-41-utc-copy.jpg\"},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"35\",\"left\":\"15\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":15,\"blur\":25,\"spread\":-5,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=secondary\"},\"jkit_transform_rotate\":{\"unit\":\"px\",\"size\":358,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6ef7d30\",\"elType\":\"widget\",\"settings\":{\"title\":\"English Course\",\"header_size\":\"h4\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"46aaebfb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"dbb40c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"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},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"11f84d8c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"65\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/3-copy.jpg\"},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.69999999999999996,\"sizes\":[]},\"shape_divider_top\":\"tilt\",\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":175,\"sizes\":[]},\"shape_divider_top_flip\":\"yes\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=bb22fe7\",\"background_overlay_color\":\"globals\\/colors?id=bb22fe7\"},\"overflow\":\"hidden\",\"shape_divider_top_height_tablet\":{\"unit\":\"px\",\"size\":69,\"sizes\":[]},\"shape_divider_top_height_mobile\":{\"unit\":\"px\",\"size\":51,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"140\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"77f97fbd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42.542999999999999,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"content_position_tablet\":\"center\",\"align_tablet\":\"center\",\"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\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3d8fef96\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"23\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/aged-teacher-2021-09-24-03-26-41-utc.jpg\"},\"opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-125\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=dafc007\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"150\",\"bottom\":\"0\",\"left\":\"150\",\"isLinked\":false},\"_margin_mobile\":{\"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},\"_element_width_tablet\":\"auto\",\"_z_index_mobile\":6,\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"647157f5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"32\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/aged-teacher-2021-09-24-03-26-41-utc-2.png\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-125\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-2,\"unit\":\"px\"},\"_offset_y\":{\"size\":1,\"unit\":\"px\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"150\",\"bottom\":\"0\",\"left\":\"150\",\"isLinked\":false},\"_margin_mobile\":{\"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},\"_z_index_mobile\":7,\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"1988cdfd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":57.457000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"75\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"58adc62a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Preparing Our Children\\u2019s Bright Future\",\"align_tablet\":\"center\",\"_animation\":\"fadeInUp\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79e7f8cb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"29\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/edge2.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":13.539999999999999},\"_position\":\"absolute\",\"_offset_x\":{\"size\":24,\"unit\":\"px\"},\"_offset_y\":{\"size\":-38,\"unit\":\"px\"},\"_z_index\":7,\"_element_width_tablet\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":70.582999999999998},\"_offset_x_tablet\":{\"size\":14,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":-4,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":8,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":12,\"unit\":\"px\"},\"_animation\":\"fadeInUp\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"757f4276\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec ultrices purus nec sollicitudin eleifend. In hac habitasse platea dictumst.<\\/p>\",\"align_tablet\":\"center\",\"_animation\":\"fadeInUp\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"38be282b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-line-chart-light\",\"library\":\"jkiticon\"},\"view\":\"stacked\",\"title_text\":\"Grade Improvement\",\"description_text\":\" Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"position\":\"left\",\"icon_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=d50cf18\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"primary_color\":\"globals\\/colors?id=7f7112a\",\"description_typography_typography\":\"globals\\/typography?id=f8cdd91\"},\"icon_space_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"text_align_tablet\":\"left\",\"text_align_mobile\":\"center\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_element_width_tablet\":\"auto\",\"_animation\":\"fadeInUp\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"96cacb9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-open-book-light\",\"library\":\"jkiticon\"},\"view\":\"stacked\",\"title_text\":\"Exam Preparation\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing.\",\"position\":\"left\",\"secondary_color\":\"#FFFFFF\",\"icon_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Exo 2\",\"title_typography_font_size\":{\"unit\":\"rem\",\"size\":1.6000000000000001,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.2,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2,\"sizes\":[]},\"title_typography_font_weight\":\"800\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=d50cf18\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"primary_color\":\"globals\\/colors?id=dafc007\",\"description_typography_typography\":\"globals\\/typography?id=f8cdd91\"},\"icon_space_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_element_width_tablet\":\"auto\",\"_animation\":\"fadeInUp\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"536e0f0b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-users\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Social Development\",\"description_text\":\"Donec et massa sit amet augue laoreet venenatis id et urna.\",\"position\":\"left\",\"icon_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=d50cf18\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"primary_color\":\"globals\\/colors?id=0a21634\",\"description_typography_typography\":\"globals\\/typography?id=f8cdd91\"},\"icon_space_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_tablet\":\"auto\",\"_animation\":\"fadeInUp\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"55b37337\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"19\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/c1.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.43},\"_position\":\"absolute\",\"_offset_x\":{\"size\":578,\"unit\":\"px\"},\"_offset_y\":{\"size\":-180,\"unit\":\"px\"},\"_z_index\":7,\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":116.93300000000001},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":150.93299999999999},\"_offset_x_tablet\":{\"size\":576,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":-61,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-606,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-475,\"unit\":\"px\"},\"_z_index_mobile\":1,\"_animation\":\"fadeInUp\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"32ef757\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":\"47\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/boy-at-lesson-2021-09-24-03-25-58-utc-copy.jpg\"},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.81000000000000005,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=5425a2a\"},\"background_position\":\"center center\",\"overflow\":\"hidden\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4476dd23\",\"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},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"28769bbc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our vision is every child is safe, inspired, challenged, empowered.\",\"align\":\"center\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInUp\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a64ecc6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"17\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/edge.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":9.5749999999999993},\"_position\":\"absolute\",\"_offset_x\":{\"size\":1129,\"unit\":\"px\"},\"_offset_y\":{\"size\":-59,\"unit\":\"px\"},\"_z_index\":7,\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":52.017000000000003},\"_offset_x_mobile\":{\"size\":249,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-19,\"unit\":\"px\"},\"_animation\":\"fadeInUp\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"289d854b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"15\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/c3.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":8.1790000000000003},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-12,\"unit\":\"px\"},\"_offset_y\":{\"size\":-28,\"unit\":\"px\"},\"_z_index\":7,\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":88.516999999999996},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":130.517},\"_offset_x_tablet\":{\"size\":-60,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":-106,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-60,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":70,\"unit\":\"px\"},\"_animation\":\"fadeInUp\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"50cadce\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Integer efficitur ligula ipsum, at vulputate mi fermentum sit amet. Sed pulvinar rutrum commodo. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean vitae tortor nec lectus mattis congue id sed tortor.<\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInUp\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"13d9bff7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"14\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/c4.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":3.73},\"_position\":\"absolute\",\"_offset_x\":{\"size\":81,\"unit\":\"px\"},\"_offset_y\":{\"size\":91,\"unit\":\"px\"},\"_z_index\":7,\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_offset_x_tablet\":{\"size\":616,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":10,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":101,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":30,\"unit\":\"px\"},\"_animation\":\"fadeInUp\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"56d13eec\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"_animation\":\"fadeInUp\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"38437890\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"shape_divider_bottom_flip\":\"yes\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=a00e83d\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"24bbeed8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_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\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4a938ad2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Programs for excellence\",\"align_tablet\":\"center\",\"_animation\":\"fadeInUp\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6768659\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"19\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/c1.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":22.148},\"_position\":\"absolute\",\"_offset_x\":{\"size\":470,\"unit\":\"px\"},\"_offset_y\":{\"size\":-54,\"unit\":\"px\"},\"_z_index\":7,\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":73.183000000000007},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":39.183},\"_offset_x_tablet\":{\"size\":154,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":249,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-218,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-288,\"unit\":\"px\"},\"_animation\":\"fadeInUp\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"46c9728d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"29\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/edge2.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":15.734},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-44,\"unit\":\"px\"},\"_offset_y\":{\"size\":26,\"unit\":\"px\"},\"_z_index\":7,\"_element_width_tablet\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":63.75},\"_offset_x_tablet\":{\"size\":28,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":2,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-23,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-18,\"unit\":\"px\"},\"_animation\":\"fadeInUp\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2c455d98\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Mauris at lacus semper, fermentum mi sed, rutrum nibh. Sed gravida elit ligula, sit amet venenatis diam hendrerit iaculis.<\\/p>\",\"align_tablet\":\"center\",\"_animation\":\"fadeInUp\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"73fc15a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"28\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/c2.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":10.724},\"_position\":\"absolute\",\"_offset_x\":{\"size\":179,\"unit\":\"px\"},\"_offset_y\":{\"size\":408,\"unit\":\"px\"},\"_z_index\":7,\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":42.116999999999997},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":30.117000000000001},\"_offset_x_tablet\":{\"size\":635,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":254,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-31,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":355,\"unit\":\"px\"},\"_animation\":\"fadeInUp\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"babffd7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover More\",\"align_tablet\":\"center\",\"_animation\":\"fadeInUp\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"5e2bfc61\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"62b578aa\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"440648d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4d4ebe07\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"40\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/grade.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_border\":\"none\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"5\",\"isLinked\":false},\"__globals__\":{\"_border_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=384fc29\"},\"jkit_transform_rotate\":{\"unit\":\"px\",\"size\":360,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6547d799\",\"elType\":\"widget\",\"settings\":{\"title\":\"Grade Boost\",\"header_size\":\"h5\",\"align\":\"center\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5d04248f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet.<\\/p>\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=f8cdd91\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"2fb85fe2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"121e69f9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"45\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/chart.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_border\":\"none\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"5\",\"isLinked\":false},\"__globals__\":{\"_border_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=98e3e15\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1969fb8e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Skill Evaluation\",\"header_size\":\"h5\",\"align\":\"center\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"69195821\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet.<\\/p>\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=f8cdd91\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1c04763\",\"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\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"63b6a249\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1c111389\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"50\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/test-exam-sheet.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_border\":\"none\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"5\",\"isLinked\":false},\"__globals__\":{\"_border_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=7f7112a\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f32d009\",\"elType\":\"widget\",\"settings\":{\"title\":\"Mock Exam\",\"header_size\":\"h5\",\"align\":\"center\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7730eddf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet.<\\/p>\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=f8cdd91\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"1086cd02\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5ad1e6c5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"54\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/schedule-sheet.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_border\":\"none\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"5\",\"isLinked\":false},\"__globals__\":{\"_border_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=4b29dee\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"13737757\",\"elType\":\"widget\",\"settings\":{\"title\":\"Weekend Class\",\"header_size\":\"h5\",\"align\":\"center\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3480d765\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet.<\\/p>\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=f8cdd91\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"491e9121\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":\"25\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/13-copy.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002,\"sizes\":[]},\"shape_divider_top\":\"tilt\",\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":130,\"sizes\":[]},\"shape_divider_top_flip\":\"yes\",\"shape_divider_bottom\":\"tilt\",\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":180,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"185\",\"right\":\"0\",\"bottom\":\"400\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"shape_divider_top_color\":\"globals\\/colors?id=a00e83d\",\"background_overlay_color\":\"globals\\/colors?id=98e3e15\",\"shape_divider_bottom_color\":\"globals\\/colors?id=50714e7\"},\"overflow\":\"hidden\",\"shape_divider_top_height_tablet\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"shape_divider_bottom_height_tablet\":{\"unit\":\"px\",\"size\":102,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"230\",\"left\":\"0\",\"isLinked\":false},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4e3515f3\",\"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},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4d89f651\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Popular Teacher\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\"},\"_animation\":\"fadeInUp\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"583d65aa\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"14\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/c4.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":3.73},\"_position\":\"absolute\",\"_offset_x\":{\"size\":1013,\"unit\":\"px\"},\"_offset_y\":{\"size\":57,\"unit\":\"px\"},\"_z_index\":7,\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":20.800000000000001},\"_offset_x_tablet\":{\"size\":624,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":257,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":49,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":134,\"unit\":\"px\"},\"_animation\":\"fadeInUp\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1285323c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"15\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/c3.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":13.103},\"_position\":\"absolute\",\"_offset_x\":{\"size\":1022,\"unit\":\"px\"},\"_offset_y\":{\"size\":-124,\"unit\":\"px\"},\"_z_index\":7,\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":56.966999999999999},\"_offset_x_tablet\":{\"size\":602,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":269,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-75,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":67,\"unit\":\"px\"},\"_animation\":\"fadeInUp\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3bec3e2d\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=50714e7\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3f59b8fb\",\"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},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4954c376\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"-285\",\"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\":\"75\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3fcf9523\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"34\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/Acanthus-black-white-02-copy.png\"},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.050000000000000003,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":25,\"blur\":30,\"spread\":-10,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"25\",\"bottom\":\"40\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=5425a2a\",\"border_color\":\"globals\\/colors?id=secondary\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"e32ba5a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"30\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/pp1.jpg\"},\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":20,\"blur\":20,\"spread\":-10,\"color\":\"rgba(0, 0, 0, 0.09)\"},\"_margin\":{\"unit\":\"%\",\"top\":\"-37\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"-63\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_mask_image\":{\"id\":\"52\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/hex2.png\"},\"width_tablet\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"18\",\"left\":\"9\",\"isLinked\":false},\"jkit_transform_rotate\":{\"unit\":\"px\",\"size\":356,\"sizes\":[]},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7d5f22b1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Harry Smith\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7d759de1\",\"elType\":\"widget\",\"settings\":{\"title\":\"English Teacher\",\"header_size\":\"h5\",\"align\":\"center\",\"_margin\":{\"unit\":\"%\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=24b2df3\",\"title_color\":\"globals\\/colors?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a75ee73\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"__globals__\":{\"stars_color\":\"globals\\/colors?id=3c09f21\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"star-rating\"},{\"id\":\"4e62d08e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0\\\" Lorem ipsum dolor sit amet, consectetur adipiscing elit. Suspendisse est neque, ultrices at enim vitae, mattis consequat dui.\\\"<\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=e64be90\",\"typography_typography\":\"globals\\/typography?id=35188cd\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7707007e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact\",\"align\":\"center\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=53ec359\",\"button_background_hover_color\":\"globals\\/colors?id=4b29dee\"},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"3a86a780\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"34\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/Acanthus-black-white-02-copy.png\"},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.050000000000000003,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":25,\"blur\":30,\"spread\":-10,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"25\",\"bottom\":\"40\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=0a21634\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"7\",\"bottom\":\"0\",\"left\":\"7\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":300,\"background_overlay_position\":\"center left\",\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"44b527d9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"39\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/pp2.jpg\"},\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":20,\"blur\":20,\"spread\":-10,\"color\":\"rgba(0, 0, 0, 0.09)\"},\"_margin\":{\"unit\":\"%\",\"top\":\"-37\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"-63\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_mask_image\":{\"id\":\"52\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/hex2.png\"},\"width_tablet\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"18\",\"left\":\"9\",\"isLinked\":false},\"jkit_transform_rotate\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"23ab7595\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gregory Warren\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"565a7dc1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Social Teacher\",\"header_size\":\"h5\",\"align\":\"center\",\"_margin\":{\"unit\":\"%\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=24b2df3\",\"title_color\":\"globals\\/colors?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1f8130f5\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"__globals__\":{\"stars_color\":\"globals\\/colors?id=3c09f21\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"star-rating\"},{\"id\":\"7b8d2cd1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0\\\" Lorem ipsum dolor sit amet, consectetur adipiscing elit. Suspendisse est neque, ultrices at enim vitae, mattis consequat dui.\\\"<\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=e64be90\",\"typography_typography\":\"globals\\/typography?id=35188cd\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2188eb64\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact\",\"align\":\"center\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=5425a2a\",\"button_background_hover_color\":\"globals\\/colors?id=7f7112a\"},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"52337e3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"34\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/Acanthus-black-white-02-copy.png\"},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.050000000000000003,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":25,\"blur\":30,\"spread\":-10,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"25\",\"bottom\":\"40\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=8eb8d4a\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"14\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":600,\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"56d68742\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"44\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/pp3.jpg\"},\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":20,\"blur\":20,\"spread\":-10,\"color\":\"rgba(0, 0, 0, 0.09)\"},\"_margin\":{\"unit\":\"%\",\"top\":\"-37\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"-63\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_mask_image\":{\"id\":\"52\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/hex2.png\"},\"width_tablet\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"18\",\"left\":\"9\",\"isLinked\":false},\"jkit_transform_rotate\":{\"unit\":\"px\",\"size\":356,\"sizes\":[]},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"12e65748\",\"elType\":\"widget\",\"settings\":{\"title\":\"Peter Wong\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5847f105\",\"elType\":\"widget\",\"settings\":{\"title\":\"Math Teacher\",\"header_size\":\"h5\",\"align\":\"center\",\"_margin\":{\"unit\":\"%\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=24b2df3\",\"title_color\":\"globals\\/colors?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"441f4d49\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"__globals__\":{\"stars_color\":\"globals\\/colors?id=3c09f21\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"star-rating\"},{\"id\":\"6622a575\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0\\\" Lorem ipsum dolor sit amet, consectetur adipiscing elit. Suspendisse est neque, ultrices at enim vitae, mattis consequat dui.\\\"<\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=e64be90\",\"typography_typography\":\"globals\\/typography?id=35188cd\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7ec481c4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact\",\"align\":\"center\",\"__globals__\":[],\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4084f7c6\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"75\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"20\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=50714e7\"},\"overflow\":\"hidden\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"125\",\"left\":\"20\",\"isLinked\":false},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"75977e29\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"_inline_size_tablet\":100,\"_inline_size_mobile\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"617d75e0\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"318668aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":12,\"blur\":12,\"spread\":-6,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=bb22fe7\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3eb389cb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"62\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/logoipsum-265.png\"},\"width_mobile\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"31ab8f28\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":12,\"blur\":12,\"spread\":-6,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=80e8ddb\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"78008a3d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"66\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/logoipsum-264.png\"},\"width_mobile\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c16383f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":12,\"blur\":12,\"spread\":-6,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=d38674d\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"23b7ecc7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"69\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/logoipsum-262.png\"},\"width_mobile\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3a293d39\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5d75541\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":12,\"blur\":12,\"spread\":-6,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=d38674d\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"20fc83cd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"74\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/logoipsum-261.png\"},\"width_mobile\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d80ae6b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":12,\"blur\":12,\"spread\":-6,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=a00e83d\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5179e864\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"76\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/logoipsum-259.png\"},\"width_mobile\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"274e751c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":12,\"blur\":12,\"spread\":-6,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=80e8ddb\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"39290682\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"80\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/logoipsum-254.png\"},\"width_mobile\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6ebbbc70\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"45dde1bb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Trusted Partners\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"align_tablet\":\"center\",\"_animation\":\"fadeInUp\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a945a7c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Donec hendrerit nibh in lectus molestie, id bibendum orci hendrerit. Curabitur euismod ante finibus nibh suscipit, vitae vehicula eros venenatis.<\\/p>\",\"align_tablet\":\"center\",\"_animation\":\"fadeInUp\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5225458f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"25\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/13-copy.jpg\"},\"background_repeat\":\"repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002,\"sizes\":[]},\"shape_divider_top\":\"tilt\",\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":123,\"sizes\":[]},\"shape_divider_top_flip\":\"yes\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=0a21634\",\"shape_divider_top_color\":\"globals\\/colors?id=50714e7\"},\"shape_divider_top_height_tablet\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3129fd43\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"147c2efa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Join Our Education center Now\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"},\"align_tablet\":\"center\",\"_margin_mobile\":{\"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},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6c053a55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"28\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/c2.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":37.046999999999997},\"_position\":\"absolute\",\"_offset_x\":{\"size\":508,\"unit\":\"px\"},\"_offset_y\":{\"size\":-54,\"unit\":\"px\"},\"_z_index\":7,\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":89.066999999999993},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":30.067},\"_offset_x_tablet\":{\"size\":94,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":252,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-60,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":28,\"unit\":\"px\"},\"_animation\":\"fadeInUp\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2f6907ab\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"14\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/c4.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":12.92},\"_position\":\"absolute\",\"_offset_x\":{\"size\":1290,\"unit\":\"px\"},\"_offset_y\":{\"size\":347,\"unit\":\"px\"},\"_z_index\":7,\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":42.299999999999997},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":118.3},\"_offset_x_tablet\":{\"size\":586,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":-72,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-396,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-43,\"unit\":\"px\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7d706984\",\"elType\":\"widget\",\"settings\":{\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"},\"align_tablet\":\"center\",\"_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},\"_animation\":\"fadeInUp\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a46ccf3\",\"elType\":\"widget\",\"settings\":{\"text\":\"Sign Up Now\",\"align\":\"left\",\"_z_index\":9,\"__globals__\":{\"background_color\":\"globals\\/colors?id=5425a2a\",\"button_background_hover_color\":\"globals\\/colors?id=7f7112a\"},\"align_tablet\":\"center\",\"_animation\":\"fadeInUp\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"50501c81\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"26\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/edge3.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":18.638000000000002},\"_offset_x\":{\"size\":172,\"unit\":\"px\"},\"_offset_y\":{\"size\":331,\"unit\":\"px\"},\"_z_index\":7,\"_margin\":{\"unit\":\"%\",\"top\":\"-60\",\"right\":\"45\",\"bottom\":\"0\",\"left\":\"-45\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":39,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5255bf05\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"-150\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"50\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-160\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2da18f2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"46\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/cute-elementary-kids-with-books-at-school-2022-12-16-18-15-57-utc-copy.jpg\"},\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":\"51\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/liki.png\"},\"width_tablet\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":88,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a6dc542\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"57\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/cute-elementary-kids-with-books-at-school-2022-12-16-18-15-57-utc2.png\"},\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_position\":\"absolute\",\"width_tablet\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":88,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(351,90,'_elementor_page_assets','a:1:{s:6:\"styles\";a:54:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";i:34;s:12:\"e-animations\";i:35;s:12:\"e-animations\";i:36;s:12:\"e-animations\";i:37;s:12:\"e-animations\";i:38;s:12:\"e-animations\";i:39;s:12:\"e-animations\";i:40;s:12:\"e-animations\";i:41;s:12:\"e-animations\";i:42;s:12:\"e-animations\";i:43;s:12:\"e-animations\";i:44;s:12:\"e-animations\";i:45;s:12:\"e-animations\";i:46;s:12:\"e-animations\";i:47;s:12:\"e-animations\";i:48;s:12:\"e-animations\";i:49;s:12:\"e-animations\";i:50;s:12:\"e-animations\";i:51;s:12:\"e-animations\";i:52;s:12:\"e-animations\";i:53;s:12:\"e-animations\";}}'),(352,90,'_wp_page_template','elementor_header_footer'),(353,90,'envato_tk_source_kit','6'),(354,90,'envato_tk_source_index','1'),(355,92,'_edit_last','1'),(356,92,'_edit_lock','1694069436:1'),(357,92,'_wp_page_template','elementor_canvas'),(358,92,'ehf_target_include_locations','a:2:{s:4:\"rule\";a:1:{i:0;s:12:\"basic-global\";}s:8:\"specific\";a:0:{}}'),(359,92,'ehf_target_exclude_locations','a:0:{}'),(360,92,'ehf_target_user_roles','a:1:{i:0;s:3:\"all\";}'),(361,92,'ehf_template_type','type_header'),(362,92,'_elementor_edit_mode','builder'),(363,92,'_elementor_template_type','wp-post'),(364,92,'_elementor_version','3.15.3'),(367,92,'ekit_post_views_count','7'),(377,95,'_wp_page_template','elementor_header_footer'),(378,95,'_elementor_edit_mode','builder'),(379,95,'_elementor_template_type','wp-post'),(380,95,'_elementor_version','3.15.3'),(382,96,'_wp_page_template','elementor_header_footer'),(383,96,'_elementor_edit_mode','builder'),(384,96,'_elementor_template_type','wp-post'),(385,96,'_elementor_version','3.15.3'),(387,92,'_elementor_data','[{\"id\":\"7d9566\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":0,\"bottom\":\"-103\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\",\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"globals\\/colors?id=eb507f3\"},\"z_index\":90,\"background_overlay_background\":\"classic\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":37,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"background_overlay_color_b\":\"#FFFFFF00\",\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"-33\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"-11\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5d85d8f1\",\"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},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false}},\"elements\":[{\"id\":\"6cf40c10\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"30\"},\"elements\":[{\"id\":\"2bacd8a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":20,\"content_position_tablet\":\"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},\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"b207c53\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/\\u0938\\u093e\\u0939\\u093f\\u0924\\u094d\\u092f-1.webp\",\"id\":104,\"size\":\"\",\"alt\":\"\\u0938\\u093e\\u0939\\u093f\\u0924\\u094d\\u092f\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"967a5c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":10,\"_inline_size_tablet\":20,\"content_position_tablet\":\"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},\"_inline_size_mobile\":60,\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"isInner\":true},{\"id\":\"26b280e1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.664000000000001,\"_inline_size_tablet\":80,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":40,\"content_position\":\"center\"},\"elements\":[{\"id\":\"1c150646\",\"elType\":\"widget\",\"settings\":{\"menu\":\"menu1\",\"__globals__\":{\"menu_typography_typography\":\"globals\\/typography?id=779cdfc\",\"color_menu_item\":\"globals\\/colors?id=secondary\",\"color_menu_item_hover\":\"globals\\/colors?id=7f7112a\",\"all_text_color\":\"globals\\/colors?id=e64be90\",\"all_background_color_color\":\"globals\\/colors?id=f2feccc\",\"all_background_hover_color_color\":\"globals\\/colors?id=e64be90\",\"all_border_color\":\"\",\"all_border_hover_color\":\"\",\"all_background_color_color_b\":\"\",\"all_background_hover_color_color_b\":\"globals\\/colors?id=e64be90\",\"all_hover_color\":\"globals\\/colors?id=7f7112a\",\"toggle_color\":\"globals\\/colors?id=secondary\",\"background_color_dropdown_item\":\"globals\\/colors?id=e64be90\",\"color_menu_item_active\":\"globals\\/colors?id=7f7112a\",\"background_color_dropdown_item_hover\":\"\",\"color_dropdown_item_hover\":\"globals\\/colors?id=4b29dee\",\"color_dropdown_item\":\"globals\\/colors?id=primary\",\"dropdown_border_color\":\"globals\\/colors?id=76544c2\",\"color_dropdown_item_active\":\"globals\\/colors?id=7f7112a\"},\"resp_align\":\"right\",\"padding_horizontal_menu_item_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"menu_space_between\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"dropdown_divider_border\":\"none\",\"all_background_color_background\":\"classic\",\"all_background_hover_color_background\":\"classic\",\"all_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"all_background_color_gradient_angle\":{\"unit\":\"deg\",\"size\":130,\"sizes\":[]},\"dropdown_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"menu_space_between_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_horizontal_menu_item_mobile\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"menu_space_between_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"dropdown_border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_dropdown_item_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_horizontal_dropdown_item_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"padding_vertical_dropdown_item_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"menu_typography_font_family\":\"Roboto\",\"color_menu_item\":\"#F0F0F0\",\"background_color_dropdown_item\":\"#202020\",\"toggle_color\":\"#FFFFFF\",\"all_text_color\":\"#F4F9FC\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"23\",\"bottom\":\"14\",\"left\":\"23\",\"isLinked\":false},\"all_background_hover_color_color_stop\":{\"unit\":\"%\",\"size\":66,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"menu_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":0.90000000000000002,\"sizes\":[]},\"menu_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.90000000000000002,\"sizes\":[]},\"menu_typography_font_weight\":\"500\",\"menu_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"menu_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"all_background_color_color_b\":\"#FC3B00\",\"all_background_hover_color_color\":\"#FFFFFF\",\"all_background_hover_color_color_b\":\"#FFFFFF\",\"dropdown_border_width_tablet\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"dropdown_border_width_mobile\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"dropdown_border_radius_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"navmenu_align\":\"right\",\"dropdown\":\"mobile\",\"menu_last_item\":\"cta\",\"dropdown_box_shadow_box_shadow_type\":\"yes\",\"dropdown_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":30,\"blur\":30,\"spread\":-15,\"color\":\"rgba(0, 0, 0, 0.4)\"},\"all_button_box_shadow_box_shadow_type\":\"yes\",\"all_button_box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":10,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":107.182}},\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(388,97,'_wp_page_template','elementor_canvas'),(389,97,'_elementor_edit_mode','builder'),(390,97,'_elementor_template_type','wp-post'),(391,97,'_elementor_version','3.15.3'),(393,97,'_elementor_data','[{\"id\":\"7d9566\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-103\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\",\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"globals\\/colors?id=eb507f3\"},\"z_index\":90,\"background_overlay_background\":\"classic\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":37,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"background_overlay_color_b\":\"#FFFFFF00\",\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"-33\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"-11\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5d85d8f1\",\"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},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false}},\"elements\":[{\"id\":\"6cf40c10\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"20\"},\"elements\":[{\"id\":\"2bacd8a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":20,\"content_position_tablet\":\"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},\"_inline_size_mobile\":60},\"elements\":[{\"id\":\"18c1fca4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"24\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/logo-1.png\"},\"width\":{\"unit\":\"%\",\"size\":33,\"sizes\":[]},\"align\":\"left\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"align_mobile\":\"left\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":82,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"26b280e1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":80,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":40,\"content_position\":\"center\"},\"elements\":[{\"id\":\"1c150646\",\"elType\":\"widget\",\"settings\":{\"menu\":\"menu1\",\"__globals__\":{\"menu_typography_typography\":\"globals\\/typography?id=779cdfc\",\"color_menu_item\":\"globals\\/colors?id=secondary\",\"color_menu_item_hover\":\"globals\\/colors?id=7f7112a\",\"all_text_color\":\"globals\\/colors?id=e64be90\",\"all_background_color_color\":\"globals\\/colors?id=f2feccc\",\"all_background_hover_color_color\":\"globals\\/colors?id=e64be90\",\"all_border_color\":\"\",\"all_border_hover_color\":\"\",\"all_background_color_color_b\":\"\",\"all_background_hover_color_color_b\":\"globals\\/colors?id=e64be90\",\"all_hover_color\":\"globals\\/colors?id=7f7112a\",\"toggle_color\":\"globals\\/colors?id=secondary\",\"background_color_dropdown_item\":\"globals\\/colors?id=e64be90\",\"color_menu_item_active\":\"globals\\/colors?id=7f7112a\",\"background_color_dropdown_item_hover\":\"\",\"color_dropdown_item_hover\":\"globals\\/colors?id=4b29dee\",\"color_dropdown_item\":\"globals\\/colors?id=primary\",\"dropdown_border_color\":\"globals\\/colors?id=76544c2\",\"color_dropdown_item_active\":\"globals\\/colors?id=7f7112a\"},\"resp_align\":\"right\",\"padding_horizontal_menu_item_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"menu_space_between\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"dropdown_divider_border\":\"none\",\"all_background_color_background\":\"classic\",\"all_background_hover_color_background\":\"classic\",\"all_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"all_background_color_gradient_angle\":{\"unit\":\"deg\",\"size\":130,\"sizes\":[]},\"dropdown_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"menu_space_between_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_horizontal_menu_item_mobile\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"menu_space_between_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"dropdown_border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_dropdown_item_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_horizontal_dropdown_item_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"padding_vertical_dropdown_item_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"menu_typography_font_family\":\"Roboto\",\"color_menu_item\":\"#F0F0F0\",\"background_color_dropdown_item\":\"#202020\",\"toggle_color\":\"#FFFFFF\",\"all_text_color\":\"#F4F9FC\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"23\",\"bottom\":\"14\",\"left\":\"23\",\"isLinked\":false},\"all_background_hover_color_color_stop\":{\"unit\":\"%\",\"size\":66,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"menu_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":0.90000000000000002,\"sizes\":[]},\"menu_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.90000000000000002,\"sizes\":[]},\"menu_typography_font_weight\":\"500\",\"menu_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"menu_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"all_background_color_color_b\":\"#FC3B00\",\"all_background_hover_color_color\":\"#FFFFFF\",\"all_background_hover_color_color_b\":\"#FFFFFF\",\"dropdown_border_width_tablet\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"dropdown_border_width_mobile\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"dropdown_border_radius_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"navmenu_align\":\"right\",\"dropdown\":\"mobile\",\"menu_last_item\":\"cta\",\"dropdown_box_shadow_box_shadow_type\":\"yes\",\"dropdown_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":30,\"blur\":30,\"spread\":-15,\"color\":\"rgba(0, 0, 0, 0.4)\"},\"all_button_box_shadow_box_shadow_type\":\"yes\",\"all_button_box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":10,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.15)\"}},\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(394,92,'_elementor_page_assets','a:0:{}'),(395,98,'_edit_last','1'),(396,98,'_edit_lock','1693982551:1'),(397,98,'_wp_page_template','elementor_canvas'),(398,98,'ehf_target_include_locations','a:2:{s:4:\"rule\";a:1:{i:0;s:12:\"basic-global\";}s:8:\"specific\";a:0:{}}'),(399,98,'ehf_target_exclude_locations','a:0:{}'),(400,98,'ehf_target_user_roles','a:1:{i:0;s:3:\"all\";}'),(401,98,'ehf_template_type','type_footer'),(402,98,'_elementor_edit_mode','builder'),(403,98,'_elementor_template_type','wp-post'),(404,98,'_elementor_version','3.15.3'),(407,98,'ekit_post_views_count','4'),(416,101,'_wp_page_template','elementor_header_footer'),(417,101,'_elementor_edit_mode','builder'),(418,101,'_elementor_template_type','wp-post'),(419,101,'_elementor_version','3.15.3'),(421,102,'_wp_page_template','elementor_header_footer'),(422,102,'_elementor_edit_mode','builder'),(423,102,'_elementor_template_type','wp-post'),(424,102,'_elementor_version','3.15.3'),(426,98,'_elementor_data','[{\"id\":\"4e89c8bb\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=45bcc5b\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"788c9f2c\",\"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\":\"35d098b2\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=e64be90\"}},\"elements\":[{\"id\":\"260c8e6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":35.206000000000003,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"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\":\"68635dc1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":108,\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/\\u0938\\u093e\\u0939\\u093f\\u0924\\u094d\\u092f-2.webp\",\"alt\":\"\\u0938\\u093e\\u0939\\u093f\\u0924\\u094d\\u092f \",\"source\":\"library\",\"size\":\"\"},\"align\":\"left\",\"align_mobile\":\"center\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_tablet\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-22\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3a10c740\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis.<\\/p>\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=76544c2\",\"typography_typography\":\"globals\\/typography?id=f8cdd91\"},\"align_mobile\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"22\",\"bottom\":\"4\",\"left\":\"22\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"6c8c96ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":17.555,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_inline_size_tablet\":25,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"53030814\",\"elType\":\"widget\",\"settings\":{\"title\":\"Explore\",\"header_size\":\"h4\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=e64be90\"},\"align_mobile\":\"center\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"56a0f0cf\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=f8cdd91\",\"title_color\":\"globals\\/colors?id=76544c2\"},\"align_mobile\":\"center\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"28003150\",\"elType\":\"widget\",\"settings\":{\"title\":\"Curriculum \",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=f8cdd91\",\"title_color\":\"globals\\/colors?id=76544c2\"},\"align_mobile\":\"center\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5d14e37c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Event\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=f8cdd91\",\"title_color\":\"globals\\/colors?id=76544c2\"},\"align_mobile\":\"center\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"3390c988\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":25.192,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_inline_size_tablet\":30,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4834171\",\"elType\":\"widget\",\"settings\":{\"title\":\"Further Links\",\"header_size\":\"h4\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=e64be90\"},\"align_mobile\":\"center\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7342e732\",\"elType\":\"widget\",\"settings\":{\"title\":\"Term & Condition\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=f8cdd91\",\"title_color\":\"globals\\/colors?id=76544c2\"},\"align_mobile\":\"center\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4bae6ccc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=f8cdd91\",\"title_color\":\"globals\\/colors?id=76544c2\"},\"align_mobile\":\"center\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6c298ebd\",\"elType\":\"widget\",\"settings\":{\"title\":\"News\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=f8cdd91\",\"title_color\":\"globals\\/colors?id=76544c2\"},\"align_mobile\":\"center\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"403ff56d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":22,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":45,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"17ef72e2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get In Touch\",\"header_size\":\"h4\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=e64be90\"},\"align_mobile\":\"center\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2129af6a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2443 Oak Ridge Omaha, QA 45065\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"183285d\"},{\"text\":\"207-8767-452\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"f460c80\"},{\"text\":\"support@site.com\",\"selected_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"_id\":\"0a24203\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"icon_color\":\"globals\\/colors?id=7f7112a\",\"text_color\":\"globals\\/colors?id=76544c2\",\"icon_typography_typography\":\"globals\\/typography?id=f8cdd91\"},\"icon_align_mobile\":\"center\",\"icon_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"78b3e25b\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"Copyright \\u00a9 Sahitya Powered by Ideas Cloud\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=e64be90\",\"caption_typography_typography\":\"globals\\/typography?id=f8cdd91\"},\"align_mobile\":\"center\",\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"copyright\"}],\"isInner\":false}],\"isInner\":false}]'),(427,103,'_wp_page_template','elementor_canvas'),(428,103,'_elementor_edit_mode','builder'),(429,103,'_elementor_template_type','wp-post'),(430,103,'_elementor_version','3.15.3'),(432,103,'_elementor_data','[{\"id\":\"4e89c8bb\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=45bcc5b\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"788c9f2c\",\"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\":\"35d098b2\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=e64be90\"}},\"elements\":[{\"id\":\"260c8e6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":35.206000000000003,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"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\":\"68635dc1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"24\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/logo-1.png\"},\"align\":\"left\",\"align_mobile\":\"center\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_tablet\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-22\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3a10c740\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis.<\\/p>\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=76544c2\",\"typography_typography\":\"globals\\/typography?id=f8cdd91\"},\"align_mobile\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"22\",\"bottom\":\"4\",\"left\":\"22\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"6c8c96ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":17.555,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_inline_size_tablet\":25,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"53030814\",\"elType\":\"widget\",\"settings\":{\"title\":\"Explore\",\"header_size\":\"h4\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=e64be90\"},\"align_mobile\":\"center\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"56a0f0cf\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=f8cdd91\",\"title_color\":\"globals\\/colors?id=76544c2\"},\"align_mobile\":\"center\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"28003150\",\"elType\":\"widget\",\"settings\":{\"title\":\"Curriculum \",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=f8cdd91\",\"title_color\":\"globals\\/colors?id=76544c2\"},\"align_mobile\":\"center\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5d14e37c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Event\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=f8cdd91\",\"title_color\":\"globals\\/colors?id=76544c2\"},\"align_mobile\":\"center\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"3390c988\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":25.192,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_inline_size_tablet\":30,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4834171\",\"elType\":\"widget\",\"settings\":{\"title\":\"Further Links\",\"header_size\":\"h4\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=e64be90\"},\"align_mobile\":\"center\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7342e732\",\"elType\":\"widget\",\"settings\":{\"title\":\"Term & Condition\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=f8cdd91\",\"title_color\":\"globals\\/colors?id=76544c2\"},\"align_mobile\":\"center\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4bae6ccc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=f8cdd91\",\"title_color\":\"globals\\/colors?id=76544c2\"},\"align_mobile\":\"center\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6c298ebd\",\"elType\":\"widget\",\"settings\":{\"title\":\"News\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=f8cdd91\",\"title_color\":\"globals\\/colors?id=76544c2\"},\"align_mobile\":\"center\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"403ff56d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":22,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":45,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"17ef72e2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get In Touch\",\"header_size\":\"h4\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=e64be90\"},\"align_mobile\":\"center\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2129af6a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2443 Oak Ridge Omaha, QA 45065\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"183285d\"},{\"text\":\"207-8767-452\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"f460c80\"},{\"text\":\"support@site.com\",\"selected_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"_id\":\"0a24203\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"icon_color\":\"globals\\/colors?id=7f7112a\",\"text_color\":\"globals\\/colors?id=76544c2\",\"icon_typography_typography\":\"globals\\/typography?id=f8cdd91\"},\"icon_align_mobile\":\"center\",\"icon_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"78b3e25b\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"Copyright \\u00a9 [hfe_current_year] [hfe_site_title] | Powered by [hfe_site_title]\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=e64be90\",\"caption_typography_typography\":\"globals\\/typography?id=f8cdd91\"},\"align_mobile\":\"center\",\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"copyright\"}],\"isInner\":false}],\"isInner\":false}]'),(433,98,'_elementor_page_assets','a:0:{}'),(435,104,'_wp_attached_file','2023/09/साहित्य-1.webp'),(436,104,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:500;s:6:\"height\";i:190;s:4:\"file\";s:36:\"2023/09/साहित्य-1.webp\";s:8:\"filesize\";i:12012;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:36:\"साहित्य-1-300x114.webp\";s:5:\"width\";i:300;s:6:\"height\";i:114;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:7384;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:36:\"साहित्य-1-150x150.webp\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:4738;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(437,104,'_wp_attachment_image_alt','साहित्य'),(438,105,'_wp_page_template','elementor_canvas'),(439,105,'_elementor_edit_mode','builder'),(440,105,'_elementor_template_type','wp-post'),(441,105,'_elementor_version','3.15.3'),(442,105,'_elementor_data','[{\"id\":\"7d9566\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-103\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\",\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"globals\\/colors?id=eb507f3\"},\"z_index\":90,\"background_overlay_background\":\"classic\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":37,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"background_overlay_color_b\":\"#FFFFFF00\",\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"-33\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"-11\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5d85d8f1\",\"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},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false}},\"elements\":[{\"id\":\"6cf40c10\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"20\"},\"elements\":[{\"id\":\"2bacd8a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":20,\"content_position_tablet\":\"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},\"_inline_size_mobile\":60},\"elements\":[{\"id\":\"18c1fca4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"24\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/logo-1.png\"},\"width\":{\"unit\":\"%\",\"size\":33,\"sizes\":[]},\"align\":\"left\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"align_mobile\":\"left\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":82,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"26b280e1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":80,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":40,\"content_position\":\"center\"},\"elements\":[{\"id\":\"1c150646\",\"elType\":\"widget\",\"settings\":{\"menu\":\"menu1\",\"__globals__\":{\"menu_typography_typography\":\"globals\\/typography?id=779cdfc\",\"color_menu_item\":\"globals\\/colors?id=secondary\",\"color_menu_item_hover\":\"globals\\/colors?id=7f7112a\",\"all_text_color\":\"globals\\/colors?id=e64be90\",\"all_background_color_color\":\"globals\\/colors?id=f2feccc\",\"all_background_hover_color_color\":\"globals\\/colors?id=e64be90\",\"all_border_color\":\"\",\"all_border_hover_color\":\"\",\"all_background_color_color_b\":\"\",\"all_background_hover_color_color_b\":\"globals\\/colors?id=e64be90\",\"all_hover_color\":\"globals\\/colors?id=7f7112a\",\"toggle_color\":\"globals\\/colors?id=secondary\",\"background_color_dropdown_item\":\"globals\\/colors?id=e64be90\",\"color_menu_item_active\":\"globals\\/colors?id=7f7112a\",\"background_color_dropdown_item_hover\":\"\",\"color_dropdown_item_hover\":\"globals\\/colors?id=4b29dee\",\"color_dropdown_item\":\"globals\\/colors?id=primary\",\"dropdown_border_color\":\"globals\\/colors?id=76544c2\",\"color_dropdown_item_active\":\"globals\\/colors?id=7f7112a\"},\"resp_align\":\"right\",\"padding_horizontal_menu_item_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"menu_space_between\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"dropdown_divider_border\":\"none\",\"all_background_color_background\":\"classic\",\"all_background_hover_color_background\":\"classic\",\"all_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"all_background_color_gradient_angle\":{\"unit\":\"deg\",\"size\":130,\"sizes\":[]},\"dropdown_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"menu_space_between_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_horizontal_menu_item_mobile\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"menu_space_between_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"dropdown_border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_dropdown_item_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_horizontal_dropdown_item_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"padding_vertical_dropdown_item_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"menu_typography_font_family\":\"Roboto\",\"color_menu_item\":\"#F0F0F0\",\"background_color_dropdown_item\":\"#202020\",\"toggle_color\":\"#FFFFFF\",\"all_text_color\":\"#F4F9FC\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"23\",\"bottom\":\"14\",\"left\":\"23\",\"isLinked\":false},\"all_background_hover_color_color_stop\":{\"unit\":\"%\",\"size\":66,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"menu_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":0.90000000000000002,\"sizes\":[]},\"menu_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.90000000000000002,\"sizes\":[]},\"menu_typography_font_weight\":\"500\",\"menu_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"menu_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"all_background_color_color_b\":\"#FC3B00\",\"all_background_hover_color_color\":\"#FFFFFF\",\"all_background_hover_color_color_b\":\"#FFFFFF\",\"dropdown_border_width_tablet\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"dropdown_border_width_mobile\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"dropdown_border_radius_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"navmenu_align\":\"right\",\"dropdown\":\"mobile\",\"menu_last_item\":\"cta\",\"dropdown_box_shadow_box_shadow_type\":\"yes\",\"dropdown_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":30,\"blur\":30,\"spread\":-15,\"color\":\"rgba(0, 0, 0, 0.4)\"},\"all_button_box_shadow_box_shadow_type\":\"yes\",\"all_button_box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":10,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.15)\"}},\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(443,105,'_elementor_page_assets','a:0:{}'),(445,106,'_wp_page_template','elementor_canvas'),(446,106,'_elementor_edit_mode','builder'),(447,106,'_elementor_template_type','wp-post'),(448,106,'_elementor_version','3.15.3'),(449,106,'_elementor_data','[{\"id\":\"7d9566\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-103\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\",\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"globals\\/colors?id=eb507f3\"},\"z_index\":90,\"background_overlay_background\":\"classic\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":37,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"background_overlay_color_b\":\"#FFFFFF00\",\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"-33\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"-11\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5d85d8f1\",\"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},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false}},\"elements\":[{\"id\":\"6cf40c10\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"20\"},\"elements\":[{\"id\":\"2bacd8a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":20,\"content_position_tablet\":\"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},\"_inline_size_mobile\":60},\"elements\":[{\"id\":\"18c1fca4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"24\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/logo-1.png\"},\"width\":{\"unit\":\"%\",\"size\":33,\"sizes\":[]},\"align\":\"left\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"align_mobile\":\"left\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":82,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"26b280e1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":80,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":40,\"content_position\":\"center\"},\"elements\":[{\"id\":\"1c150646\",\"elType\":\"widget\",\"settings\":{\"menu\":\"menu1\",\"__globals__\":{\"menu_typography_typography\":\"globals\\/typography?id=779cdfc\",\"color_menu_item\":\"globals\\/colors?id=secondary\",\"color_menu_item_hover\":\"globals\\/colors?id=7f7112a\",\"all_text_color\":\"globals\\/colors?id=e64be90\",\"all_background_color_color\":\"globals\\/colors?id=f2feccc\",\"all_background_hover_color_color\":\"globals\\/colors?id=e64be90\",\"all_border_color\":\"\",\"all_border_hover_color\":\"\",\"all_background_color_color_b\":\"\",\"all_background_hover_color_color_b\":\"globals\\/colors?id=e64be90\",\"all_hover_color\":\"globals\\/colors?id=7f7112a\",\"toggle_color\":\"globals\\/colors?id=secondary\",\"background_color_dropdown_item\":\"globals\\/colors?id=e64be90\",\"color_menu_item_active\":\"globals\\/colors?id=7f7112a\",\"background_color_dropdown_item_hover\":\"\",\"color_dropdown_item_hover\":\"globals\\/colors?id=4b29dee\",\"color_dropdown_item\":\"globals\\/colors?id=primary\",\"dropdown_border_color\":\"globals\\/colors?id=76544c2\",\"color_dropdown_item_active\":\"globals\\/colors?id=7f7112a\"},\"resp_align\":\"right\",\"padding_horizontal_menu_item_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"menu_space_between\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"dropdown_divider_border\":\"none\",\"all_background_color_background\":\"classic\",\"all_background_hover_color_background\":\"classic\",\"all_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"all_background_color_gradient_angle\":{\"unit\":\"deg\",\"size\":130,\"sizes\":[]},\"dropdown_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"menu_space_between_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_horizontal_menu_item_mobile\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"menu_space_between_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"dropdown_border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_dropdown_item_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_horizontal_dropdown_item_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"padding_vertical_dropdown_item_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"menu_typography_font_family\":\"Roboto\",\"color_menu_item\":\"#F0F0F0\",\"background_color_dropdown_item\":\"#202020\",\"toggle_color\":\"#FFFFFF\",\"all_text_color\":\"#F4F9FC\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"23\",\"bottom\":\"14\",\"left\":\"23\",\"isLinked\":false},\"all_background_hover_color_color_stop\":{\"unit\":\"%\",\"size\":66,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"menu_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":0.90000000000000002,\"sizes\":[]},\"menu_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.90000000000000002,\"sizes\":[]},\"menu_typography_font_weight\":\"500\",\"menu_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"menu_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"all_background_color_color_b\":\"#FC3B00\",\"all_background_hover_color_color\":\"#FFFFFF\",\"all_background_hover_color_color_b\":\"#FFFFFF\",\"dropdown_border_width_tablet\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"dropdown_border_width_mobile\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"dropdown_border_radius_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"navmenu_align\":\"right\",\"dropdown\":\"mobile\",\"menu_last_item\":\"cta\",\"dropdown_box_shadow_box_shadow_type\":\"yes\",\"dropdown_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":30,\"blur\":30,\"spread\":-15,\"color\":\"rgba(0, 0, 0, 0.4)\"},\"all_button_box_shadow_box_shadow_type\":\"yes\",\"all_button_box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":10,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.15)\"}},\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(450,106,'_elementor_page_assets','a:0:{}'),(452,107,'_wp_page_template','elementor_canvas'),(453,107,'_elementor_edit_mode','builder'),(454,107,'_elementor_template_type','wp-post'),(455,107,'_elementor_version','3.15.3'),(456,107,'_elementor_data','[{\"id\":\"7d9566\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-103\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\",\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"globals\\/colors?id=eb507f3\"},\"z_index\":90,\"background_overlay_background\":\"classic\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":37,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"background_overlay_color_b\":\"#FFFFFF00\",\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"-33\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"-11\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5d85d8f1\",\"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},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false}},\"elements\":[{\"id\":\"6cf40c10\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"20\"},\"elements\":[{\"id\":\"2bacd8a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":20,\"content_position_tablet\":\"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},\"_inline_size_mobile\":60},\"elements\":[{\"id\":\"18c1fca4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":104,\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/\\u0938\\u093e\\u0939\\u093f\\u0924\\u094d\\u092f-1.webp\",\"alt\":\"\\u0938\\u093e\\u0939\\u093f\\u0924\\u094d\\u092f\",\"source\":\"library\",\"size\":\"\"},\"width\":{\"unit\":\"%\",\"size\":33,\"sizes\":[]},\"align\":\"left\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"align_mobile\":\"left\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":82,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"26b280e1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":80,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":40,\"content_position\":\"center\"},\"elements\":[{\"id\":\"1c150646\",\"elType\":\"widget\",\"settings\":{\"menu\":\"menu1\",\"__globals__\":{\"menu_typography_typography\":\"globals\\/typography?id=779cdfc\",\"color_menu_item\":\"globals\\/colors?id=secondary\",\"color_menu_item_hover\":\"globals\\/colors?id=7f7112a\",\"all_text_color\":\"globals\\/colors?id=e64be90\",\"all_background_color_color\":\"globals\\/colors?id=f2feccc\",\"all_background_hover_color_color\":\"globals\\/colors?id=e64be90\",\"all_border_color\":\"\",\"all_border_hover_color\":\"\",\"all_background_color_color_b\":\"\",\"all_background_hover_color_color_b\":\"globals\\/colors?id=e64be90\",\"all_hover_color\":\"globals\\/colors?id=7f7112a\",\"toggle_color\":\"globals\\/colors?id=secondary\",\"background_color_dropdown_item\":\"globals\\/colors?id=e64be90\",\"color_menu_item_active\":\"globals\\/colors?id=7f7112a\",\"background_color_dropdown_item_hover\":\"\",\"color_dropdown_item_hover\":\"globals\\/colors?id=4b29dee\",\"color_dropdown_item\":\"globals\\/colors?id=primary\",\"dropdown_border_color\":\"globals\\/colors?id=76544c2\",\"color_dropdown_item_active\":\"globals\\/colors?id=7f7112a\"},\"resp_align\":\"right\",\"padding_horizontal_menu_item_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"menu_space_between\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"dropdown_divider_border\":\"none\",\"all_background_color_background\":\"classic\",\"all_background_hover_color_background\":\"classic\",\"all_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"all_background_color_gradient_angle\":{\"unit\":\"deg\",\"size\":130,\"sizes\":[]},\"dropdown_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"menu_space_between_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_horizontal_menu_item_mobile\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"menu_space_between_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"dropdown_border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_dropdown_item_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_horizontal_dropdown_item_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"padding_vertical_dropdown_item_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"menu_typography_font_family\":\"Roboto\",\"color_menu_item\":\"#F0F0F0\",\"background_color_dropdown_item\":\"#202020\",\"toggle_color\":\"#FFFFFF\",\"all_text_color\":\"#F4F9FC\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"23\",\"bottom\":\"14\",\"left\":\"23\",\"isLinked\":false},\"all_background_hover_color_color_stop\":{\"unit\":\"%\",\"size\":66,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"menu_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":0.90000000000000002,\"sizes\":[]},\"menu_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.90000000000000002,\"sizes\":[]},\"menu_typography_font_weight\":\"500\",\"menu_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"menu_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"all_background_color_color_b\":\"#FC3B00\",\"all_background_hover_color_color\":\"#FFFFFF\",\"all_background_hover_color_color_b\":\"#FFFFFF\",\"dropdown_border_width_tablet\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"dropdown_border_width_mobile\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"dropdown_border_radius_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"navmenu_align\":\"right\",\"dropdown\":\"mobile\",\"menu_last_item\":\"cta\",\"dropdown_box_shadow_box_shadow_type\":\"yes\",\"dropdown_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":30,\"blur\":30,\"spread\":-15,\"color\":\"rgba(0, 0, 0, 0.4)\"},\"all_button_box_shadow_box_shadow_type\":\"yes\",\"all_button_box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":10,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.15)\"}},\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(457,107,'_elementor_page_assets','a:0:{}'),(459,108,'_wp_attached_file','2023/09/साहित्य-2.webp'),(460,108,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:500;s:6:\"height\";i:190;s:4:\"file\";s:36:\"2023/09/साहित्य-2.webp\";s:8:\"filesize\";i:18378;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:36:\"साहित्य-2-300x114.webp\";s:5:\"width\";i:300;s:6:\"height\";i:114;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:10972;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:36:\"साहित्य-2-150x150.webp\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:6806;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(461,108,'_wp_attachment_image_alt','साहित्य'),(462,109,'_wp_page_template','elementor_canvas'),(463,109,'_elementor_edit_mode','builder'),(464,109,'_elementor_template_type','wp-post'),(465,109,'_elementor_version','3.15.3'),(466,109,'_elementor_data','[{\"id\":\"4e89c8bb\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=45bcc5b\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"788c9f2c\",\"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\":\"35d098b2\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=e64be90\"}},\"elements\":[{\"id\":\"260c8e6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":35.206000000000003,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"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\":\"68635dc1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"24\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/logo-1.png\"},\"align\":\"left\",\"align_mobile\":\"center\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_tablet\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-22\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3a10c740\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis.<\\/p>\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=76544c2\",\"typography_typography\":\"globals\\/typography?id=f8cdd91\"},\"align_mobile\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"22\",\"bottom\":\"4\",\"left\":\"22\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"6c8c96ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":17.555,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_inline_size_tablet\":25,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"53030814\",\"elType\":\"widget\",\"settings\":{\"title\":\"Explore\",\"header_size\":\"h4\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=e64be90\"},\"align_mobile\":\"center\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"56a0f0cf\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=f8cdd91\",\"title_color\":\"globals\\/colors?id=76544c2\"},\"align_mobile\":\"center\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"28003150\",\"elType\":\"widget\",\"settings\":{\"title\":\"Curriculum \",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=f8cdd91\",\"title_color\":\"globals\\/colors?id=76544c2\"},\"align_mobile\":\"center\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5d14e37c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Event\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=f8cdd91\",\"title_color\":\"globals\\/colors?id=76544c2\"},\"align_mobile\":\"center\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"3390c988\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":25.192,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_inline_size_tablet\":30,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4834171\",\"elType\":\"widget\",\"settings\":{\"title\":\"Further Links\",\"header_size\":\"h4\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=e64be90\"},\"align_mobile\":\"center\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7342e732\",\"elType\":\"widget\",\"settings\":{\"title\":\"Term & Condition\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=f8cdd91\",\"title_color\":\"globals\\/colors?id=76544c2\"},\"align_mobile\":\"center\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4bae6ccc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=f8cdd91\",\"title_color\":\"globals\\/colors?id=76544c2\"},\"align_mobile\":\"center\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6c298ebd\",\"elType\":\"widget\",\"settings\":{\"title\":\"News\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=f8cdd91\",\"title_color\":\"globals\\/colors?id=76544c2\"},\"align_mobile\":\"center\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"403ff56d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":22,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":45,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"17ef72e2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get In Touch\",\"header_size\":\"h4\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=e64be90\"},\"align_mobile\":\"center\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2129af6a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2443 Oak Ridge Omaha, QA 45065\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"183285d\"},{\"text\":\"207-8767-452\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"f460c80\"},{\"text\":\"support@site.com\",\"selected_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"_id\":\"0a24203\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"icon_color\":\"globals\\/colors?id=7f7112a\",\"text_color\":\"globals\\/colors?id=76544c2\",\"icon_typography_typography\":\"globals\\/typography?id=f8cdd91\"},\"icon_align_mobile\":\"center\",\"icon_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"78b3e25b\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"Copyright \\u00a9 [hfe_current_year] [hfe_site_title] | Powered by [hfe_site_title]\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=e64be90\",\"caption_typography_typography\":\"globals\\/typography?id=f8cdd91\"},\"align_mobile\":\"center\",\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"copyright\"}],\"isInner\":false}],\"isInner\":false}]'),(467,109,'_elementor_page_assets','a:0:{}'),(469,110,'_wp_page_template','elementor_canvas'),(470,110,'_elementor_edit_mode','builder'),(471,110,'_elementor_template_type','wp-post'),(472,110,'_elementor_version','3.15.3'),(473,110,'_elementor_data','[{\"id\":\"4e89c8bb\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=45bcc5b\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"788c9f2c\",\"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\":\"35d098b2\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=e64be90\"}},\"elements\":[{\"id\":\"260c8e6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":35.206000000000003,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"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\":\"68635dc1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"24\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/logo-1.png\"},\"align\":\"left\",\"align_mobile\":\"center\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_tablet\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-22\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3a10c740\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis.<\\/p>\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=76544c2\",\"typography_typography\":\"globals\\/typography?id=f8cdd91\"},\"align_mobile\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"22\",\"bottom\":\"4\",\"left\":\"22\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"6c8c96ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":17.555,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_inline_size_tablet\":25,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"53030814\",\"elType\":\"widget\",\"settings\":{\"title\":\"Explore\",\"header_size\":\"h4\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=e64be90\"},\"align_mobile\":\"center\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"56a0f0cf\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=f8cdd91\",\"title_color\":\"globals\\/colors?id=76544c2\"},\"align_mobile\":\"center\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"28003150\",\"elType\":\"widget\",\"settings\":{\"title\":\"Curriculum \",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=f8cdd91\",\"title_color\":\"globals\\/colors?id=76544c2\"},\"align_mobile\":\"center\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5d14e37c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Event\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=f8cdd91\",\"title_color\":\"globals\\/colors?id=76544c2\"},\"align_mobile\":\"center\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"3390c988\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":25.192,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_inline_size_tablet\":30,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4834171\",\"elType\":\"widget\",\"settings\":{\"title\":\"Further Links\",\"header_size\":\"h4\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=e64be90\"},\"align_mobile\":\"center\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7342e732\",\"elType\":\"widget\",\"settings\":{\"title\":\"Term & Condition\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=f8cdd91\",\"title_color\":\"globals\\/colors?id=76544c2\"},\"align_mobile\":\"center\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4bae6ccc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=f8cdd91\",\"title_color\":\"globals\\/colors?id=76544c2\"},\"align_mobile\":\"center\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6c298ebd\",\"elType\":\"widget\",\"settings\":{\"title\":\"News\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=f8cdd91\",\"title_color\":\"globals\\/colors?id=76544c2\"},\"align_mobile\":\"center\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"403ff56d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":22,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":45,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"17ef72e2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get In Touch\",\"header_size\":\"h4\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=e64be90\"},\"align_mobile\":\"center\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2129af6a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2443 Oak Ridge Omaha, QA 45065\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"183285d\"},{\"text\":\"207-8767-452\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"f460c80\"},{\"text\":\"support@site.com\",\"selected_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"_id\":\"0a24203\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"icon_color\":\"globals\\/colors?id=7f7112a\",\"text_color\":\"globals\\/colors?id=76544c2\",\"icon_typography_typography\":\"globals\\/typography?id=f8cdd91\"},\"icon_align_mobile\":\"center\",\"icon_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"78b3e25b\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"Copyright \\u00a9 [hfe_current_year] [hfe_site_title] | Powered by [hfe_site_title]\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=e64be90\",\"caption_typography_typography\":\"globals\\/typography?id=f8cdd91\"},\"align_mobile\":\"center\",\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"copyright\"}],\"isInner\":false}],\"isInner\":false}]'),(474,110,'_elementor_page_assets','a:0:{}'),(476,111,'_wp_page_template','elementor_canvas'),(477,111,'_elementor_edit_mode','builder'),(478,111,'_elementor_template_type','wp-post'),(479,111,'_elementor_version','3.15.3'),(480,111,'_elementor_data','[{\"id\":\"4e89c8bb\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=45bcc5b\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"788c9f2c\",\"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\":\"35d098b2\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=e64be90\"}},\"elements\":[{\"id\":\"260c8e6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":35.206000000000003,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"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\":\"68635dc1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":108,\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/\\u0938\\u093e\\u0939\\u093f\\u0924\\u094d\\u092f-2.webp\",\"alt\":\"\\u0938\\u093e\\u0939\\u093f\\u0924\\u094d\\u092f \",\"source\":\"library\",\"size\":\"\"},\"align\":\"left\",\"align_mobile\":\"center\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_tablet\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-22\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3a10c740\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis.<\\/p>\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=76544c2\",\"typography_typography\":\"globals\\/typography?id=f8cdd91\"},\"align_mobile\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"22\",\"bottom\":\"4\",\"left\":\"22\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"6c8c96ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":17.555,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_inline_size_tablet\":25,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"53030814\",\"elType\":\"widget\",\"settings\":{\"title\":\"Explore\",\"header_size\":\"h4\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=e64be90\"},\"align_mobile\":\"center\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"56a0f0cf\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=f8cdd91\",\"title_color\":\"globals\\/colors?id=76544c2\"},\"align_mobile\":\"center\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"28003150\",\"elType\":\"widget\",\"settings\":{\"title\":\"Curriculum \",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=f8cdd91\",\"title_color\":\"globals\\/colors?id=76544c2\"},\"align_mobile\":\"center\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5d14e37c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Event\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=f8cdd91\",\"title_color\":\"globals\\/colors?id=76544c2\"},\"align_mobile\":\"center\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"3390c988\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":25.192,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_inline_size_tablet\":30,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4834171\",\"elType\":\"widget\",\"settings\":{\"title\":\"Further Links\",\"header_size\":\"h4\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=e64be90\"},\"align_mobile\":\"center\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7342e732\",\"elType\":\"widget\",\"settings\":{\"title\":\"Term & Condition\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=f8cdd91\",\"title_color\":\"globals\\/colors?id=76544c2\"},\"align_mobile\":\"center\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4bae6ccc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=f8cdd91\",\"title_color\":\"globals\\/colors?id=76544c2\"},\"align_mobile\":\"center\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6c298ebd\",\"elType\":\"widget\",\"settings\":{\"title\":\"News\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=f8cdd91\",\"title_color\":\"globals\\/colors?id=76544c2\"},\"align_mobile\":\"center\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"403ff56d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":22,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":45,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"17ef72e2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get In Touch\",\"header_size\":\"h4\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=e64be90\"},\"align_mobile\":\"center\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2129af6a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2443 Oak Ridge Omaha, QA 45065\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"183285d\"},{\"text\":\"207-8767-452\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"f460c80\"},{\"text\":\"support@site.com\",\"selected_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"_id\":\"0a24203\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"icon_color\":\"globals\\/colors?id=7f7112a\",\"text_color\":\"globals\\/colors?id=76544c2\",\"icon_typography_typography\":\"globals\\/typography?id=f8cdd91\"},\"icon_align_mobile\":\"center\",\"icon_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"78b3e25b\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"Copyright \\u00a9 [hfe_current_year] [hfe_site_title] | Powered by [hfe_site_title]\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=e64be90\",\"caption_typography_typography\":\"globals\\/typography?id=f8cdd91\"},\"align_mobile\":\"center\",\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"copyright\"}],\"isInner\":false}],\"isInner\":false}]'),(481,111,'_elementor_page_assets','a:0:{}'),(483,112,'_wp_attached_file','2023/09/साहित्य.webp'),(484,112,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:500;s:6:\"height\";i:500;s:4:\"file\";s:34:\"2023/09/साहित्य.webp\";s:8:\"filesize\";i:15016;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:34:\"साहित्य-300x300.webp\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:13348;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:34:\"साहित्य-150x150.webp\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:4338;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(485,112,'_wp_attachment_image_alt','साहित्य'),(486,113,'_wp_trash_meta_status','publish'),(487,113,'_wp_trash_meta_time','1693912735'),(488,114,'_edit_lock','1694077461:1'),(489,114,'_wp_page_template','elementor_header_footer'),(490,114,'_elementor_edit_mode','builder'),(491,114,'_elementor_template_type','wp-page'),(492,114,'_elementor_version','3.15.3'),(501,117,'_wp_page_template','elementor_canvas'),(502,117,'_elementor_edit_mode','builder'),(503,117,'_elementor_template_type','wp-post'),(504,117,'_elementor_version','3.15.3'),(505,117,'_elementor_data','[{\"id\":\"7d9566\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-103\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\",\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"globals\\/colors?id=eb507f3\"},\"z_index\":90,\"background_overlay_background\":\"classic\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":37,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"background_overlay_color_b\":\"#FFFFFF00\",\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"-33\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"-11\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5d85d8f1\",\"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},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false}},\"elements\":[{\"id\":\"6cf40c10\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"20\"},\"elements\":[{\"id\":\"2bacd8a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":20,\"content_position_tablet\":\"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},\"_inline_size_mobile\":60},\"elements\":[{\"id\":\"18c1fca4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":104,\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/\\u0938\\u093e\\u0939\\u093f\\u0924\\u094d\\u092f-1.webp\",\"alt\":\"\\u0938\\u093e\\u0939\\u093f\\u0924\\u094d\\u092f\",\"source\":\"library\",\"size\":\"\"},\"width\":{\"unit\":\"%\",\"size\":33,\"sizes\":[]},\"align\":\"left\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"align_mobile\":\"left\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":82,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"26b280e1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":80,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":40,\"content_position\":\"center\"},\"elements\":[{\"id\":\"1c150646\",\"elType\":\"widget\",\"settings\":{\"menu\":\"menu1\",\"__globals__\":{\"menu_typography_typography\":\"globals\\/typography?id=779cdfc\",\"color_menu_item\":\"globals\\/colors?id=secondary\",\"color_menu_item_hover\":\"globals\\/colors?id=7f7112a\",\"all_text_color\":\"globals\\/colors?id=e64be90\",\"all_background_color_color\":\"globals\\/colors?id=f2feccc\",\"all_background_hover_color_color\":\"globals\\/colors?id=e64be90\",\"all_border_color\":\"\",\"all_border_hover_color\":\"\",\"all_background_color_color_b\":\"\",\"all_background_hover_color_color_b\":\"globals\\/colors?id=e64be90\",\"all_hover_color\":\"globals\\/colors?id=7f7112a\",\"toggle_color\":\"globals\\/colors?id=secondary\",\"background_color_dropdown_item\":\"globals\\/colors?id=e64be90\",\"color_menu_item_active\":\"globals\\/colors?id=7f7112a\",\"background_color_dropdown_item_hover\":\"\",\"color_dropdown_item_hover\":\"globals\\/colors?id=4b29dee\",\"color_dropdown_item\":\"globals\\/colors?id=primary\",\"dropdown_border_color\":\"globals\\/colors?id=76544c2\",\"color_dropdown_item_active\":\"globals\\/colors?id=7f7112a\"},\"resp_align\":\"right\",\"padding_horizontal_menu_item_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"menu_space_between\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"dropdown_divider_border\":\"none\",\"all_background_color_background\":\"classic\",\"all_background_hover_color_background\":\"classic\",\"all_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"all_background_color_gradient_angle\":{\"unit\":\"deg\",\"size\":130,\"sizes\":[]},\"dropdown_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"menu_space_between_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_horizontal_menu_item_mobile\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"menu_space_between_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"dropdown_border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_dropdown_item_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_horizontal_dropdown_item_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"padding_vertical_dropdown_item_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"menu_typography_font_family\":\"Roboto\",\"color_menu_item\":\"#F0F0F0\",\"background_color_dropdown_item\":\"#202020\",\"toggle_color\":\"#FFFFFF\",\"all_text_color\":\"#F4F9FC\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"23\",\"bottom\":\"14\",\"left\":\"23\",\"isLinked\":false},\"all_background_hover_color_color_stop\":{\"unit\":\"%\",\"size\":66,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"menu_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":0.90000000000000002,\"sizes\":[]},\"menu_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.90000000000000002,\"sizes\":[]},\"menu_typography_font_weight\":\"500\",\"menu_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"menu_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"all_background_color_color_b\":\"#FC3B00\",\"all_background_hover_color_color\":\"#FFFFFF\",\"all_background_hover_color_color_b\":\"#FFFFFF\",\"dropdown_border_width_tablet\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"dropdown_border_width_mobile\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"dropdown_border_radius_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"navmenu_align\":\"right\",\"dropdown\":\"mobile\",\"menu_last_item\":\"cta\",\"dropdown_box_shadow_box_shadow_type\":\"yes\",\"dropdown_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":30,\"blur\":30,\"spread\":-15,\"color\":\"rgba(0, 0, 0, 0.4)\"},\"all_button_box_shadow_box_shadow_type\":\"yes\",\"all_button_box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":10,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.15)\"}},\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(506,117,'_elementor_page_assets','a:0:{}'),(508,118,'_wp_page_template','elementor_canvas'),(509,118,'_elementor_edit_mode','builder'),(510,118,'_elementor_template_type','wp-post'),(511,118,'_elementor_version','3.15.3');
INSERT INTO `wp_postmeta` VALUES (512,118,'_elementor_data','[{\"id\":\"7d9566\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-103\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\",\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"globals\\/colors?id=eb507f3\"},\"z_index\":90,\"background_overlay_background\":\"classic\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":37,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"background_overlay_color_b\":\"#FFFFFF00\",\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"-33\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"-11\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5d85d8f1\",\"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},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false}},\"elements\":[{\"id\":\"6cf40c10\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"20\"},\"elements\":[{\"id\":\"2bacd8a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":20,\"content_position_tablet\":\"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},\"_inline_size_mobile\":60},\"elements\":[{\"id\":\"18c1fca4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":104,\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/\\u0938\\u093e\\u0939\\u093f\\u0924\\u094d\\u092f-1.webp\",\"alt\":\"\\u0938\\u093e\\u0939\\u093f\\u0924\\u094d\\u092f\",\"source\":\"library\",\"size\":\"\"},\"width\":{\"unit\":\"%\",\"size\":33,\"sizes\":[]},\"align\":\"left\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"align_mobile\":\"left\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":82,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"26b280e1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":80,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":40,\"content_position\":\"center\"},\"elements\":[{\"id\":\"1c150646\",\"elType\":\"widget\",\"settings\":{\"menu\":\"menu1\",\"__globals__\":{\"menu_typography_typography\":\"globals\\/typography?id=779cdfc\",\"color_menu_item\":\"globals\\/colors?id=secondary\",\"color_menu_item_hover\":\"globals\\/colors?id=7f7112a\",\"all_text_color\":\"globals\\/colors?id=e64be90\",\"all_background_color_color\":\"globals\\/colors?id=f2feccc\",\"all_background_hover_color_color\":\"globals\\/colors?id=e64be90\",\"all_border_color\":\"\",\"all_border_hover_color\":\"\",\"all_background_color_color_b\":\"\",\"all_background_hover_color_color_b\":\"globals\\/colors?id=e64be90\",\"all_hover_color\":\"globals\\/colors?id=7f7112a\",\"toggle_color\":\"globals\\/colors?id=secondary\",\"background_color_dropdown_item\":\"globals\\/colors?id=e64be90\",\"color_menu_item_active\":\"globals\\/colors?id=7f7112a\",\"background_color_dropdown_item_hover\":\"\",\"color_dropdown_item_hover\":\"globals\\/colors?id=4b29dee\",\"color_dropdown_item\":\"globals\\/colors?id=primary\",\"dropdown_border_color\":\"globals\\/colors?id=76544c2\",\"color_dropdown_item_active\":\"globals\\/colors?id=7f7112a\"},\"resp_align\":\"right\",\"padding_horizontal_menu_item_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"menu_space_between\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"dropdown_divider_border\":\"none\",\"all_background_color_background\":\"classic\",\"all_background_hover_color_background\":\"classic\",\"all_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"all_background_color_gradient_angle\":{\"unit\":\"deg\",\"size\":130,\"sizes\":[]},\"dropdown_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"menu_space_between_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_horizontal_menu_item_mobile\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"menu_space_between_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"dropdown_border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_dropdown_item_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_horizontal_dropdown_item_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"padding_vertical_dropdown_item_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"menu_typography_font_family\":\"Roboto\",\"color_menu_item\":\"#F0F0F0\",\"background_color_dropdown_item\":\"#202020\",\"toggle_color\":\"#FFFFFF\",\"all_text_color\":\"#F4F9FC\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"23\",\"bottom\":\"14\",\"left\":\"23\",\"isLinked\":false},\"all_background_hover_color_color_stop\":{\"unit\":\"%\",\"size\":66,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"menu_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":0.90000000000000002,\"sizes\":[]},\"menu_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.90000000000000002,\"sizes\":[]},\"menu_typography_font_weight\":\"500\",\"menu_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"menu_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"all_background_color_color_b\":\"#FC3B00\",\"all_background_hover_color_color\":\"#FFFFFF\",\"all_background_hover_color_color_b\":\"#FFFFFF\",\"dropdown_border_width_tablet\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"dropdown_border_width_mobile\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"dropdown_border_radius_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"navmenu_align\":\"right\",\"dropdown\":\"mobile\",\"menu_last_item\":\"cta\",\"dropdown_box_shadow_box_shadow_type\":\"yes\",\"dropdown_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":30,\"blur\":30,\"spread\":-15,\"color\":\"rgba(0, 0, 0, 0.4)\"},\"all_button_box_shadow_box_shadow_type\":\"yes\",\"all_button_box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":10,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.15)\"}},\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(513,118,'_elementor_page_assets','a:0:{}'),(515,119,'_wp_page_template','elementor_canvas'),(516,119,'_elementor_edit_mode','builder'),(517,119,'_elementor_template_type','wp-post'),(518,119,'_elementor_version','3.15.3'),(519,119,'_elementor_data','[{\"id\":\"7d9566\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-103\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\",\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"globals\\/colors?id=eb507f3\"},\"z_index\":90,\"background_overlay_background\":\"classic\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":37,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"background_overlay_color_b\":\"#FFFFFF00\",\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"-33\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"-11\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5d85d8f1\",\"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},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false}},\"elements\":[{\"id\":\"6cf40c10\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"20\"},\"elements\":[{\"id\":\"2bacd8a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":20,\"content_position_tablet\":\"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},\"_inline_size_mobile\":60},\"elements\":[{\"id\":\"18c1fca4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":104,\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/\\u0938\\u093e\\u0939\\u093f\\u0924\\u094d\\u092f-1.webp\",\"alt\":\"\\u0938\\u093e\\u0939\\u093f\\u0924\\u094d\\u092f\",\"source\":\"library\",\"size\":\"\"},\"width\":{\"unit\":\"%\",\"size\":33,\"sizes\":[]},\"align\":\"left\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"align_mobile\":\"left\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":82,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"26b280e1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":80,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":40,\"content_position\":\"center\"},\"elements\":[{\"id\":\"1c150646\",\"elType\":\"widget\",\"settings\":{\"menu\":\"menu1\",\"__globals__\":{\"menu_typography_typography\":\"globals\\/typography?id=779cdfc\",\"color_menu_item\":\"globals\\/colors?id=secondary\",\"color_menu_item_hover\":\"globals\\/colors?id=7f7112a\",\"all_text_color\":\"globals\\/colors?id=e64be90\",\"all_background_color_color\":\"globals\\/colors?id=f2feccc\",\"all_background_hover_color_color\":\"globals\\/colors?id=e64be90\",\"all_border_color\":\"\",\"all_border_hover_color\":\"\",\"all_background_color_color_b\":\"\",\"all_background_hover_color_color_b\":\"globals\\/colors?id=e64be90\",\"all_hover_color\":\"globals\\/colors?id=7f7112a\",\"toggle_color\":\"globals\\/colors?id=secondary\",\"background_color_dropdown_item\":\"globals\\/colors?id=e64be90\",\"color_menu_item_active\":\"globals\\/colors?id=7f7112a\",\"background_color_dropdown_item_hover\":\"\",\"color_dropdown_item_hover\":\"globals\\/colors?id=4b29dee\",\"color_dropdown_item\":\"globals\\/colors?id=primary\",\"dropdown_border_color\":\"globals\\/colors?id=76544c2\",\"color_dropdown_item_active\":\"globals\\/colors?id=7f7112a\"},\"resp_align\":\"right\",\"padding_horizontal_menu_item_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"menu_space_between\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"dropdown_divider_border\":\"none\",\"all_background_color_background\":\"classic\",\"all_background_hover_color_background\":\"classic\",\"all_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"all_background_color_gradient_angle\":{\"unit\":\"deg\",\"size\":130,\"sizes\":[]},\"dropdown_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"menu_space_between_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_horizontal_menu_item_mobile\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"menu_space_between_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"dropdown_border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_dropdown_item_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_horizontal_dropdown_item_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"padding_vertical_dropdown_item_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"menu_typography_font_family\":\"Roboto\",\"color_menu_item\":\"#F0F0F0\",\"background_color_dropdown_item\":\"#202020\",\"toggle_color\":\"#FFFFFF\",\"all_text_color\":\"#F4F9FC\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"23\",\"bottom\":\"14\",\"left\":\"23\",\"isLinked\":false},\"all_background_hover_color_color_stop\":{\"unit\":\"%\",\"size\":66,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"menu_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":0.90000000000000002,\"sizes\":[]},\"menu_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.90000000000000002,\"sizes\":[]},\"menu_typography_font_weight\":\"500\",\"menu_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"menu_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"all_background_color_color_b\":\"#FC3B00\",\"all_background_hover_color_color\":\"#FFFFFF\",\"all_background_hover_color_color_b\":\"#FFFFFF\",\"dropdown_border_width_tablet\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"dropdown_border_width_mobile\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"dropdown_border_radius_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"navmenu_align\":\"right\",\"dropdown\":\"mobile\",\"menu_last_item\":\"cta\",\"dropdown_box_shadow_box_shadow_type\":\"yes\",\"dropdown_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":30,\"blur\":30,\"spread\":-15,\"color\":\"rgba(0, 0, 0, 0.4)\"},\"all_button_box_shadow_box_shadow_type\":\"yes\",\"all_button_box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":10,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.15)\"}},\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(520,119,'_elementor_page_assets','a:0:{}'),(522,120,'_wp_page_template','elementor_header_footer'),(523,120,'_elementor_edit_mode','builder'),(524,120,'_elementor_template_type','wp-page'),(525,120,'_elementor_version','3.15.3'),(526,121,'_wp_page_template','elementor_header_footer'),(527,121,'_elementor_edit_mode','builder'),(528,121,'_elementor_template_type','wp-page'),(529,121,'_elementor_version','3.15.3'),(530,114,'_elementor_data','[{\"id\":\"1b43d4a4\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"7\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/2-copy.jpg\"},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"shape_divider_bottom\":\"tilt\",\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":225,\"sizes\":[]},\"shape_divider_bottom_flip\":\"yes\",\"margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"00\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.55000000000000004,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=ff9d88d\",\"shape_divider_bottom_color\":\"globals\\/colors?id=a00e83d\"},\"overflow\":\"hidden\",\"shape_divider_bottom_height_tablet\":{\"unit\":\"px\",\"size\":105,\"sizes\":[]},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"130\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"20\",\"bottom\":\"130\",\"left\":\"20\",\"isLinked\":false},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"5a2e5ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"73c21425\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Smart  \",\"sg_title_focused\":\"Learning\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_typography_content_typography_typography\":\"custom\",\"st_title_typography_content_typography_font_family\":\"Mulish\",\"st_title_typography_content_typography_font_size\":{\"unit\":\"rem\",\"size\":8.5,\"sizes\":[]},\"st_title_typography_content_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":4.7999999999999998,\"sizes\":[]},\"st_title_typography_content_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":3.7000000000000002,\"sizes\":[]},\"st_title_typography_content_typography_font_weight\":\"800\",\"st_title_typography_content_typography_text_transform\":\"capitalize\",\"st_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"st_title_typography_content_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=4244abd\",\"st_focused_typography_content_typography_typography\":\"globals\\/typography?id=d65c9cc\",\"st_focused_color_responsive\":\"globals\\/colors?id=secondary\",\"st_title_color_responsive\":\"globals\\/colors?id=secondary\"},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_general_alignment_responsive_tablet\":\"center\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"},{\"id\":\"6a57c977\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Study \",\"sg_title_focused\":\"Easily\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_typography_content_typography_typography\":\"custom\",\"st_title_typography_content_typography_font_family\":\"Mulish\",\"st_title_typography_content_typography_font_size\":{\"unit\":\"rem\",\"size\":8.5,\"sizes\":[]},\"st_title_typography_content_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":4.7999999999999998,\"sizes\":[]},\"st_title_typography_content_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":3.7000000000000002,\"sizes\":[]},\"st_title_typography_content_typography_font_weight\":\"800\",\"st_title_typography_content_typography_text_transform\":\"capitalize\",\"st_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"st_title_typography_content_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=4244abd\",\"st_focused_typography_content_typography_typography\":\"globals\\/typography?id=d65c9cc\",\"st_focused_color_responsive\":\"globals\\/colors?id=secondary\",\"st_title_color_responsive\":\"globals\\/colors?id=secondary\"},\"_margin\":{\"unit\":\"%\",\"top\":\"-7\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"-6\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_general_alignment_responsive_tablet\":\"center\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"},{\"id\":\"3087a342\",\"elType\":\"widget\",\"settings\":{\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"},\"align_tablet\":\"center\",\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3a0c81f4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Check It Out\",\"align_tablet\":\"center\",\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"3b3b1623\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"-115\",\"right\":\"-50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-75\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7f89b368\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"13\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/boy3.png\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"-85\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_position\":\"absolute\",\"_z_index\":2,\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-40\",\"bottom\":\"0\",\"left\":\"-40\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b0d8b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"15\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/c3.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":14.5},\"_position\":\"absolute\",\"_offset_x\":{\"size\":88,\"unit\":\"px\"},\"_offset_y\":{\"size\":22,\"unit\":\"px\"},\"_z_index\":7,\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":33.216999999999999},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":21.216999999999999},\"_offset_x_tablet\":{\"size\":111,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":272,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":100,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":75,\"unit\":\"px\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"478271ab\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"17\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/edge.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":14.5},\"_position\":\"absolute\",\"_offset_x\":{\"size\":521,\"unit\":\"px\"},\"_offset_y\":{\"size\":116,\"unit\":\"px\"},\"_z_index\":7,\"_element_width_tablet\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":78.216999999999999},\"_offset_x_tablet\":{\"size\":534,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":203,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":103,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":382,\"unit\":\"px\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e73906\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"19\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/c1.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32.997},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-11,\"unit\":\"px\"},\"_offset_y\":{\"size\":426,\"unit\":\"px\"},\"_z_index\":7,\"_element_width_tablet\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":415.06700000000001},\"_offset_x_tablet\":{\"size\":-241,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":-256,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":410,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":327,\"unit\":\"px\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4a051f2a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"28\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/c2.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":6.9939999999999998},\"_position\":\"absolute\",\"_offset_x\":{\"size\":539,\"unit\":\"px\"},\"_offset_y\":{\"size\":140,\"unit\":\"px\"},\"_z_index\":7,\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":44.332999999999998},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":91.332999999999998},\"_offset_x_tablet\":{\"size\":545,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":196,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":124,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-13,\"unit\":\"px\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1673b95c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"35\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/little-boy-is-having-online-lessons-by-using-lapto-2022-02-03-17-43-51-utc-copy.jpg\"},\"image_border_border\":\"none\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"image_box_shadow_box_shadow\":{\"horizontal\":100,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.09)\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"-85\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1,\"_background_background\":\"classic\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":\"41\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/liki3.png\"},\"_mask_position\":\"top right\",\"__globals__\":{\"_background_color\":\"\",\"image_border_color\":\"globals\\/colors?id=secondary\"},\"width_tablet\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-40\",\"bottom\":\"0\",\"left\":\"-40\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f1771ce\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"280\",\"left\":\"0\",\"isLinked\":false},\"shape_divider_bottom\":\"tilt\",\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=a00e83d\"},\"overflow\":\"hidden\",\"shape_divider_bottom_height_tablet\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"170\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b6d584b\",\"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\":\"6032aede\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"14\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/c4.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":3.875},\"_position\":\"absolute\",\"_offset_x\":{\"size\":951,\"unit\":\"px\"},\"_offset_y\":{\"size\":33,\"unit\":\"px\"},\"_z_index\":7,\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":36.732999999999997},\"_offset_x_tablet\":{\"size\":614,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":34,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":37,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":80,\"unit\":\"px\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7ba2bee1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"29\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/edge2.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":6.6630000000000003},\"_position\":\"absolute\",\"_offset_x\":{\"size\":325,\"unit\":\"px\"},\"_offset_y\":{\"size\":-43,\"unit\":\"px\"},\"_z_index\":7,\"_offset_x_tablet\":{\"size\":116,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-19,\"unit\":\"px\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"639ecddb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Primary Courses\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6cbb0273\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":175,\"sizes\":[]},\"shape_divider_bottom_flip\":\"yes\",\"__globals__\":{\"shape_divider_bottom_color\":\"globals\\/colors?id=bb22fe7\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7003617b\",\"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\":\"33d7d2f0\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"%\",\"top\":\"-20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"-53\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6768445a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"785c9c90\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"48\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/kids-taking-exam-in-school-2022-06-29-19-26-45-utc-copy.jpg\"},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"35\",\"left\":\"15\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":15,\"blur\":25,\"spread\":-5,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=secondary\"},\"jkit_transform_rotate\":{\"unit\":\"px\",\"size\":358,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"133d57a9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Social Studies\",\"header_size\":\"h4\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2905a3bd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1780998b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"1bb97169\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"f1fc8ed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"38\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/portrait-of-happy-caucasian-boy-standing-at-chalkb-2021-09-03-06-28-24-utc-copy.jpg\"},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"35\",\"left\":\"15\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":15,\"blur\":25,\"spread\":-5,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=secondary\"},\"jkit_transform_rotate\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1be70e33\",\"elType\":\"widget\",\"settings\":{\"title\":\"Mathematics \",\"header_size\":\"h4\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"84221db\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"389f3412\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"3147fc34\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"27a107c5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"55\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/woman-learning-english-online-2021-08-26-15-34-41-utc-copy.jpg\"},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"35\",\"left\":\"15\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":15,\"blur\":25,\"spread\":-5,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=secondary\"},\"jkit_transform_rotate\":{\"unit\":\"px\",\"size\":358,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6f699cb3\",\"elType\":\"widget\",\"settings\":{\"title\":\"English Course\",\"header_size\":\"h4\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6e14a87b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"12d35f7c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"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\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"52e2d9dc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"65\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/3-copy.jpg\"},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.69999999999999996,\"sizes\":[]},\"shape_divider_top\":\"tilt\",\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":175,\"sizes\":[]},\"shape_divider_top_flip\":\"yes\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=bb22fe7\",\"background_overlay_color\":\"globals\\/colors?id=bb22fe7\"},\"overflow\":\"hidden\",\"shape_divider_top_height_tablet\":{\"unit\":\"px\",\"size\":69,\"sizes\":[]},\"shape_divider_top_height_mobile\":{\"unit\":\"px\",\"size\":51,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"140\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"f426e2a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42.542999999999999,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"content_position_tablet\":\"center\",\"align_tablet\":\"center\",\"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\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"5a616044\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"23\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/aged-teacher-2021-09-24-03-26-41-utc.jpg\"},\"opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-125\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=dafc007\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"150\",\"bottom\":\"0\",\"left\":\"150\",\"isLinked\":false},\"_margin_mobile\":{\"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},\"_element_width_tablet\":\"auto\",\"_z_index_mobile\":6},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"76aca3b6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"32\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/aged-teacher-2021-09-24-03-26-41-utc-2.png\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-125\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-2,\"unit\":\"px\"},\"_offset_y\":{\"size\":1,\"unit\":\"px\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"150\",\"bottom\":\"0\",\"left\":\"150\",\"isLinked\":false},\"_margin_mobile\":{\"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},\"_z_index_mobile\":7},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6ba18f0a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":57.457000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"75\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1da3bcbb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Preparing Our Children\\u2019s Bright Future\",\"align_tablet\":\"center\",\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1f66d3c5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"29\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/edge2.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":13.539999999999999},\"_position\":\"absolute\",\"_offset_x\":{\"size\":24,\"unit\":\"px\"},\"_offset_y\":{\"size\":-38,\"unit\":\"px\"},\"_z_index\":7,\"_element_width_tablet\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":70.582999999999998},\"_offset_x_tablet\":{\"size\":14,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":-4,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":8,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":12,\"unit\":\"px\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4a9c2692\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec ultrices purus nec sollicitudin eleifend. In hac habitasse platea dictumst.<\\/p>\",\"align_tablet\":\"center\",\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2a5e6eb3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-line-chart-light\",\"library\":\"jkiticon\"},\"view\":\"stacked\",\"title_text\":\"Grade Improvement\",\"description_text\":\" Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"position\":\"left\",\"icon_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=d50cf18\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"primary_color\":\"globals\\/colors?id=7f7112a\",\"description_typography_typography\":\"globals\\/typography?id=f8cdd91\"},\"icon_space_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"text_align_tablet\":\"left\",\"text_align_mobile\":\"center\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_element_width_tablet\":\"auto\",\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"131750b8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-open-book-light\",\"library\":\"jkiticon\"},\"view\":\"stacked\",\"title_text\":\"Exam Preparation\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing.\",\"position\":\"left\",\"secondary_color\":\"#FFFFFF\",\"icon_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Exo 2\",\"title_typography_font_size\":{\"unit\":\"rem\",\"size\":1.6000000000000001,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.2,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2,\"sizes\":[]},\"title_typography_font_weight\":\"800\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=d50cf18\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"primary_color\":\"globals\\/colors?id=dafc007\",\"description_typography_typography\":\"globals\\/typography?id=f8cdd91\"},\"icon_space_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_element_width_tablet\":\"auto\",\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"62288012\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-users\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Social Development\",\"description_text\":\"Donec et massa sit amet augue laoreet venenatis id et urna.\",\"position\":\"left\",\"icon_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=d50cf18\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"primary_color\":\"globals\\/colors?id=0a21634\",\"description_typography_typography\":\"globals\\/typography?id=f8cdd91\"},\"icon_space_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_tablet\":\"auto\",\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"6b0269ef\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"19\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/c1.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.43},\"_position\":\"absolute\",\"_offset_x\":{\"size\":578,\"unit\":\"px\"},\"_offset_y\":{\"size\":-180,\"unit\":\"px\"},\"_z_index\":7,\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":116.93300000000001},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":150.93299999999999},\"_offset_x_tablet\":{\"size\":576,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":-61,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-606,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-475,\"unit\":\"px\"},\"_z_index_mobile\":1,\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"11e683e1\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":\"47\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/boy-at-lesson-2021-09-24-03-25-58-utc-copy.jpg\"},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.81000000000000005,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=5425a2a\"},\"background_position\":\"center center\",\"overflow\":\"hidden\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"62726094\",\"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\":\"7696e562\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our vision is every child is safe, inspired, challenged, empowered.\",\"align\":\"center\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"291cdd84\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"17\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/edge.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":9.5749999999999993},\"_position\":\"absolute\",\"_offset_x\":{\"size\":1129,\"unit\":\"px\"},\"_offset_y\":{\"size\":-59,\"unit\":\"px\"},\"_z_index\":7,\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":52.017000000000003},\"_offset_x_mobile\":{\"size\":249,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-19,\"unit\":\"px\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5405eae3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"15\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/c3.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":8.1790000000000003},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-12,\"unit\":\"px\"},\"_offset_y\":{\"size\":-28,\"unit\":\"px\"},\"_z_index\":7,\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":88.516999999999996},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":130.517},\"_offset_x_tablet\":{\"size\":-60,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":-106,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-60,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":70,\"unit\":\"px\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"35062fd0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Integer efficitur ligula ipsum, at vulputate mi fermentum sit amet. Sed pulvinar rutrum commodo. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean vitae tortor nec lectus mattis congue id sed tortor.<\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"36f886f7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"14\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/c4.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":3.73},\"_position\":\"absolute\",\"_offset_x\":{\"size\":81,\"unit\":\"px\"},\"_offset_y\":{\"size\":91,\"unit\":\"px\"},\"_z_index\":7,\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_offset_x_tablet\":{\"size\":616,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":10,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":101,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":30,\"unit\":\"px\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3cc6830a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"75553c20\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"shape_divider_bottom_flip\":\"yes\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=a00e83d\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"97c1c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_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\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"247f69f0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Programs for excellence\",\"align_tablet\":\"center\",\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"777b3a8c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"19\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/c1.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":22.148},\"_position\":\"absolute\",\"_offset_x\":{\"size\":470,\"unit\":\"px\"},\"_offset_y\":{\"size\":-54,\"unit\":\"px\"},\"_z_index\":7,\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":73.183000000000007},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":39.183},\"_offset_x_tablet\":{\"size\":154,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":249,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-218,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-288,\"unit\":\"px\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1d77a3a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"29\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/edge2.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":15.734},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-44,\"unit\":\"px\"},\"_offset_y\":{\"size\":26,\"unit\":\"px\"},\"_z_index\":7,\"_element_width_tablet\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":63.75},\"_offset_x_tablet\":{\"size\":28,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":2,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-23,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-18,\"unit\":\"px\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"69fbb26b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Mauris at lacus semper, fermentum mi sed, rutrum nibh. Sed gravida elit ligula, sit amet venenatis diam hendrerit iaculis.<\\/p>\",\"align_tablet\":\"center\",\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"80ecc3f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"28\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/c2.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":10.724},\"_position\":\"absolute\",\"_offset_x\":{\"size\":179,\"unit\":\"px\"},\"_offset_y\":{\"size\":408,\"unit\":\"px\"},\"_z_index\":7,\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":42.116999999999997},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":30.117000000000001},\"_offset_x_tablet\":{\"size\":635,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":254,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-31,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":355,\"unit\":\"px\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"36ed7571\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover More\",\"align_tablet\":\"center\",\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"1e716000\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"74e0a882\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"617b3cb8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2156a27f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"40\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/grade.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_border\":\"none\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"5\",\"isLinked\":false},\"__globals__\":{\"_border_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=384fc29\"},\"jkit_transform_rotate\":{\"unit\":\"px\",\"size\":360,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1664fafd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Grade Boost\",\"header_size\":\"h5\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3cbe788b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet.<\\/p>\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=f8cdd91\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"2bb04b8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"41a65060\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"45\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/chart.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_border\":\"none\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"5\",\"isLinked\":false},\"__globals__\":{\"_border_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=98e3e15\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20d3131e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Skill Evaluation\",\"header_size\":\"h5\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"621208f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet.<\\/p>\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=f8cdd91\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7db08f0d\",\"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\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"7f824463\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3657acce\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"50\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/test-exam-sheet.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_border\":\"none\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"5\",\"isLinked\":false},\"__globals__\":{\"_border_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=7f7112a\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"54b44e19\",\"elType\":\"widget\",\"settings\":{\"title\":\"Mock Exam\",\"header_size\":\"h5\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7da043cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet.<\\/p>\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=f8cdd91\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"11b6e1fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"401111e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"54\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/schedule-sheet.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_border\":\"none\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"5\",\"isLinked\":false},\"__globals__\":{\"_border_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=4b29dee\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2b04a0cf\",\"elType\":\"widget\",\"settings\":{\"title\":\"Weekend Class\",\"header_size\":\"h5\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7398c131\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet.<\\/p>\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=f8cdd91\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"67d987bc\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":\"25\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/13-copy.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002,\"sizes\":[]},\"shape_divider_top\":\"tilt\",\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":130,\"sizes\":[]},\"shape_divider_top_flip\":\"yes\",\"shape_divider_bottom\":\"tilt\",\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":180,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"185\",\"right\":\"0\",\"bottom\":\"400\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"shape_divider_top_color\":\"globals\\/colors?id=a00e83d\",\"background_overlay_color\":\"globals\\/colors?id=98e3e15\",\"shape_divider_bottom_color\":\"globals\\/colors?id=50714e7\"},\"overflow\":\"hidden\",\"shape_divider_top_height_tablet\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"shape_divider_bottom_height_tablet\":{\"unit\":\"px\",\"size\":102,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"230\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7e44fc62\",\"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\":\"6fe80e94\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Popular Teacher\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"35cd5615\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"14\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/c4.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":3.73},\"_position\":\"absolute\",\"_offset_x\":{\"size\":1013,\"unit\":\"px\"},\"_offset_y\":{\"size\":57,\"unit\":\"px\"},\"_z_index\":7,\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":20.800000000000001},\"_offset_x_tablet\":{\"size\":624,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":257,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":49,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":134,\"unit\":\"px\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2d8a0fb0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"15\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/c3.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":13.103},\"_position\":\"absolute\",\"_offset_x\":{\"size\":1022,\"unit\":\"px\"},\"_offset_y\":{\"size\":-124,\"unit\":\"px\"},\"_z_index\":7,\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":56.966999999999999},\"_offset_x_tablet\":{\"size\":602,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":269,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-75,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":67,\"unit\":\"px\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6bf8d6c4\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=50714e7\"}},\"elements\":[{\"id\":\"172efaaa\",\"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\":\"2628b693\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"-285\",\"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\":\"75\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f9c10ed\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"34\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/Acanthus-black-white-02-copy.png\"},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.050000000000000003,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":25,\"blur\":30,\"spread\":-10,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"25\",\"bottom\":\"40\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=5425a2a\",\"border_color\":\"globals\\/colors?id=secondary\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true}},\"elements\":[{\"id\":\"5bfef58d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"30\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/pp1.jpg\"},\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":20,\"blur\":20,\"spread\":-10,\"color\":\"rgba(0, 0, 0, 0.09)\"},\"_margin\":{\"unit\":\"%\",\"top\":\"-37\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"-63\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_mask_image\":{\"id\":\"52\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/hex2.png\"},\"width_tablet\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"18\",\"left\":\"9\",\"isLinked\":false},\"jkit_transform_rotate\":{\"unit\":\"px\",\"size\":356,\"sizes\":[]},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"536734fe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Harry Smith\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7d2eebfe\",\"elType\":\"widget\",\"settings\":{\"title\":\"English Teacher\",\"header_size\":\"h5\",\"align\":\"center\",\"_margin\":{\"unit\":\"%\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=24b2df3\",\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ed8dd0d\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"__globals__\":{\"stars_color\":\"globals\\/colors?id=3c09f21\"}},\"elements\":[],\"widgetType\":\"star-rating\"},{\"id\":\"f044e69\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0\\\" Lorem ipsum dolor sit amet, consectetur adipiscing elit. Suspendisse est neque, ultrices at enim vitae, mattis consequat dui.\\\"<\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=e64be90\",\"typography_typography\":\"globals\\/typography?id=35188cd\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"20688c95\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact\",\"align\":\"center\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=53ec359\",\"button_background_hover_color\":\"globals\\/colors?id=4b29dee\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"4f7656f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"34\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/Acanthus-black-white-02-copy.png\"},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.050000000000000003,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":25,\"blur\":30,\"spread\":-10,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"25\",\"bottom\":\"40\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=0a21634\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"7\",\"bottom\":\"0\",\"left\":\"7\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":300,\"background_overlay_position\":\"center left\"},\"elements\":[{\"id\":\"3249624e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"39\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/pp2.jpg\"},\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":20,\"blur\":20,\"spread\":-10,\"color\":\"rgba(0, 0, 0, 0.09)\"},\"_margin\":{\"unit\":\"%\",\"top\":\"-37\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"-63\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_mask_image\":{\"id\":\"52\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/hex2.png\"},\"width_tablet\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"18\",\"left\":\"9\",\"isLinked\":false},\"jkit_transform_rotate\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b736f11\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gregory Warren\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15dc9be4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Social Teacher\",\"header_size\":\"h5\",\"align\":\"center\",\"_margin\":{\"unit\":\"%\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=24b2df3\",\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2960b3d4\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"__globals__\":{\"stars_color\":\"globals\\/colors?id=3c09f21\"}},\"elements\":[],\"widgetType\":\"star-rating\"},{\"id\":\"25715d57\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0\\\" Lorem ipsum dolor sit amet, consectetur adipiscing elit. Suspendisse est neque, ultrices at enim vitae, mattis consequat dui.\\\"<\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=e64be90\",\"typography_typography\":\"globals\\/typography?id=35188cd\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6ca6010a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact\",\"align\":\"center\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=5425a2a\",\"button_background_hover_color\":\"globals\\/colors?id=7f7112a\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"2302c129\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"34\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/Acanthus-black-white-02-copy.png\"},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.050000000000000003,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":25,\"blur\":30,\"spread\":-10,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"25\",\"bottom\":\"40\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=8eb8d4a\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"14\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":600},\"elements\":[{\"id\":\"40edaa36\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"44\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/pp3.jpg\"},\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":20,\"blur\":20,\"spread\":-10,\"color\":\"rgba(0, 0, 0, 0.09)\"},\"_margin\":{\"unit\":\"%\",\"top\":\"-37\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"-63\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_mask_image\":{\"id\":\"52\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/hex2.png\"},\"width_tablet\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"18\",\"left\":\"9\",\"isLinked\":false},\"jkit_transform_rotate\":{\"unit\":\"px\",\"size\":356,\"sizes\":[]},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"62850e01\",\"elType\":\"widget\",\"settings\":{\"title\":\"Peter Wong\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4e5605ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"Math Teacher\",\"header_size\":\"h5\",\"align\":\"center\",\"_margin\":{\"unit\":\"%\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=24b2df3\",\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5934810d\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"__globals__\":{\"stars_color\":\"globals\\/colors?id=3c09f21\"}},\"elements\":[],\"widgetType\":\"star-rating\"},{\"id\":\"727b7370\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0\\\" Lorem ipsum dolor sit amet, consectetur adipiscing elit. Suspendisse est neque, ultrices at enim vitae, mattis consequat dui.\\\"<\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=e64be90\",\"typography_typography\":\"globals\\/typography?id=35188cd\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4f267b20\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact\",\"align\":\"center\",\"__globals__\":[]},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2f080c83\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"75\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"20\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=50714e7\"},\"overflow\":\"hidden\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"125\",\"left\":\"20\",\"isLinked\":false},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"24d69b05\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"_inline_size_tablet\":100,\"_inline_size_mobile\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"6c54f0ff\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"11a2b2dc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":12,\"blur\":12,\"spread\":-6,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=bb22fe7\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3a4926e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"62\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/logoipsum-265.png\"},\"width_mobile\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"5c24e6af\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":12,\"blur\":12,\"spread\":-6,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=80e8ddb\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3d7a7b11\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"66\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/logoipsum-264.png\"},\"width_mobile\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2c33e824\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":12,\"blur\":12,\"spread\":-6,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=d38674d\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1b8ef368\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"69\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/logoipsum-262.png\"},\"width_mobile\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2c7d601d\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"32658876\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":12,\"blur\":12,\"spread\":-6,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=d38674d\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"133f4fcb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"74\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/logoipsum-261.png\"},\"width_mobile\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"23bf024c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":12,\"blur\":12,\"spread\":-6,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=a00e83d\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"4d4c89b1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"76\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/logoipsum-259.png\"},\"width_mobile\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"304b5aa6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":12,\"blur\":12,\"spread\":-6,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=80e8ddb\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"69f80618\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"80\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/logoipsum-254.png\"},\"width_mobile\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"502a525a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"867aa3c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Trusted Partners\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"align_tablet\":\"center\",\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6fcba7bd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Donec hendrerit nibh in lectus molestie, id bibendum orci hendrerit. Curabitur euismod ante finibus nibh suscipit, vitae vehicula eros venenatis.<\\/p>\",\"align_tablet\":\"center\",\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"28f55b55\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"25\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/13-copy.jpg\"},\"background_repeat\":\"repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002,\"sizes\":[]},\"shape_divider_top\":\"tilt\",\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":123,\"sizes\":[]},\"shape_divider_top_flip\":\"yes\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=0a21634\",\"shape_divider_top_color\":\"globals\\/colors?id=50714e7\"},\"shape_divider_top_height_tablet\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"16713d98\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"28ce1d88\",\"elType\":\"widget\",\"settings\":{\"title\":\"Join Our Education center Now\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"},\"align_tablet\":\"center\",\"_margin_mobile\":{\"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},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2cb72972\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"28\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/c2.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":37.046999999999997},\"_position\":\"absolute\",\"_offset_x\":{\"size\":508,\"unit\":\"px\"},\"_offset_y\":{\"size\":-54,\"unit\":\"px\"},\"_z_index\":7,\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":89.066999999999993},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":30.067},\"_offset_x_tablet\":{\"size\":94,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":252,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-60,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":28,\"unit\":\"px\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"26068e28\",\"elType\":\"widget\",\"settings\":{\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"},\"align_tablet\":\"center\",\"_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},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"324ca56a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Sign Up Now\",\"align\":\"left\",\"_z_index\":9,\"__globals__\":{\"background_color\":\"globals\\/colors?id=5425a2a\",\"button_background_hover_color\":\"globals\\/colors?id=7f7112a\"},\"align_tablet\":\"center\",\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"74253f20\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"26\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/edge3.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":18.638000000000002},\"_offset_x\":{\"size\":172,\"unit\":\"px\"},\"_offset_y\":{\"size\":331,\"unit\":\"px\"},\"_z_index\":7,\"_margin\":{\"unit\":\"%\",\"top\":\"-60\",\"right\":\"45\",\"bottom\":\"0\",\"left\":\"-45\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":39,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3f4d1f73\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"-150\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"50\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-160\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"42320bd1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"46\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/cute-elementary-kids-with-books-at-school-2022-12-16-18-15-57-utc-copy.jpg\"},\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":\"51\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/liki.png\"},\"width_tablet\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":88,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3e131936\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"57\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/cute-elementary-kids-with-books-at-school-2022-12-16-18-15-57-utc2.png\"},\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_position\":\"absolute\",\"width_tablet\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":88,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(531,122,'_wp_page_template','elementor_header_footer'),(532,122,'_elementor_edit_mode','builder'),(533,122,'_elementor_template_type','wp-page'),(534,122,'_elementor_version','3.15.3'),(535,122,'_elementor_data','[{\"id\":\"1b43d4a4\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"7\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/2-copy.jpg\"},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"shape_divider_bottom\":\"tilt\",\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":225,\"sizes\":[]},\"shape_divider_bottom_flip\":\"yes\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"00\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.55000000000000004,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=ff9d88d\",\"shape_divider_bottom_color\":\"globals\\/colors?id=a00e83d\"},\"overflow\":\"hidden\",\"shape_divider_bottom_height_tablet\":{\"unit\":\"px\",\"size\":105,\"sizes\":[]},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"130\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"20\",\"bottom\":\"130\",\"left\":\"20\",\"isLinked\":false},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"5a2e5ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"73c21425\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Smart  \",\"sg_title_focused\":\"Learning\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_typography_content_typography_typography\":\"custom\",\"st_title_typography_content_typography_font_family\":\"Mulish\",\"st_title_typography_content_typography_font_size\":{\"unit\":\"rem\",\"size\":8.5,\"sizes\":[]},\"st_title_typography_content_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":4.7999999999999998,\"sizes\":[]},\"st_title_typography_content_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":3.7000000000000002,\"sizes\":[]},\"st_title_typography_content_typography_font_weight\":\"800\",\"st_title_typography_content_typography_text_transform\":\"capitalize\",\"st_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"st_title_typography_content_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=4244abd\",\"st_focused_typography_content_typography_typography\":\"globals\\/typography?id=d65c9cc\",\"st_focused_color_responsive\":\"globals\\/colors?id=secondary\",\"st_title_color_responsive\":\"globals\\/colors?id=secondary\"},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_general_alignment_responsive_tablet\":\"center\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"},{\"id\":\"6a57c977\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Study \",\"sg_title_focused\":\"Easily\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_typography_content_typography_typography\":\"custom\",\"st_title_typography_content_typography_font_family\":\"Mulish\",\"st_title_typography_content_typography_font_size\":{\"unit\":\"rem\",\"size\":8.5,\"sizes\":[]},\"st_title_typography_content_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":4.7999999999999998,\"sizes\":[]},\"st_title_typography_content_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":3.7000000000000002,\"sizes\":[]},\"st_title_typography_content_typography_font_weight\":\"800\",\"st_title_typography_content_typography_text_transform\":\"capitalize\",\"st_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"st_title_typography_content_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=4244abd\",\"st_focused_typography_content_typography_typography\":\"globals\\/typography?id=d65c9cc\",\"st_focused_color_responsive\":\"globals\\/colors?id=secondary\",\"st_title_color_responsive\":\"globals\\/colors?id=secondary\"},\"_margin\":{\"unit\":\"%\",\"top\":\"-7\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"-6\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_general_alignment_responsive_tablet\":\"center\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"},{\"id\":\"3087a342\",\"elType\":\"widget\",\"settings\":{\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"},\"align_tablet\":\"center\",\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3a0c81f4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Check It Out\",\"align_tablet\":\"center\",\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"3b3b1623\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"-115\",\"right\":\"-50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-75\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7f89b368\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"13\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/boy3.png\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"-85\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_position\":\"absolute\",\"_z_index\":2,\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-40\",\"bottom\":\"0\",\"left\":\"-40\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b0d8b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"15\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/c3.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":14.5},\"_position\":\"absolute\",\"_offset_x\":{\"size\":88,\"unit\":\"px\"},\"_offset_y\":{\"size\":22,\"unit\":\"px\"},\"_z_index\":7,\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":33.216999999999999},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":21.216999999999999},\"_offset_x_tablet\":{\"size\":111,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":272,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":100,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":75,\"unit\":\"px\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"478271ab\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"17\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/edge.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":14.5},\"_position\":\"absolute\",\"_offset_x\":{\"size\":521,\"unit\":\"px\"},\"_offset_y\":{\"size\":116,\"unit\":\"px\"},\"_z_index\":7,\"_element_width_tablet\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":78.216999999999999},\"_offset_x_tablet\":{\"size\":534,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":203,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":103,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":382,\"unit\":\"px\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e73906\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"19\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/c1.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32.997},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-11,\"unit\":\"px\"},\"_offset_y\":{\"size\":426,\"unit\":\"px\"},\"_z_index\":7,\"_element_width_tablet\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":415.06700000000001},\"_offset_x_tablet\":{\"size\":-241,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":-256,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":410,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":327,\"unit\":\"px\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4a051f2a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"28\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/c2.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":6.9939999999999998},\"_position\":\"absolute\",\"_offset_x\":{\"size\":539,\"unit\":\"px\"},\"_offset_y\":{\"size\":140,\"unit\":\"px\"},\"_z_index\":7,\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":44.332999999999998},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":91.332999999999998},\"_offset_x_tablet\":{\"size\":545,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":196,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":124,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-13,\"unit\":\"px\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1673b95c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"35\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/little-boy-is-having-online-lessons-by-using-lapto-2022-02-03-17-43-51-utc-copy.jpg\"},\"image_border_border\":\"none\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"image_box_shadow_box_shadow\":{\"horizontal\":100,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.09)\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"-85\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1,\"_background_background\":\"classic\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":\"41\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/liki3.png\"},\"_mask_position\":\"top right\",\"__globals__\":{\"_background_color\":\"\",\"image_border_color\":\"globals\\/colors?id=secondary\"},\"width_tablet\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-40\",\"bottom\":\"0\",\"left\":\"-40\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f1771ce\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"280\",\"left\":\"0\",\"isLinked\":false},\"shape_divider_bottom\":\"tilt\",\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=a00e83d\"},\"overflow\":\"hidden\",\"shape_divider_bottom_height_tablet\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"170\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b6d584b\",\"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\":\"6032aede\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"14\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/c4.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":3.875},\"_position\":\"absolute\",\"_offset_x\":{\"size\":951,\"unit\":\"px\"},\"_offset_y\":{\"size\":33,\"unit\":\"px\"},\"_z_index\":7,\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":36.732999999999997},\"_offset_x_tablet\":{\"size\":614,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":34,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":37,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":80,\"unit\":\"px\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7ba2bee1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"29\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/edge2.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":6.6630000000000003},\"_position\":\"absolute\",\"_offset_x\":{\"size\":325,\"unit\":\"px\"},\"_offset_y\":{\"size\":-43,\"unit\":\"px\"},\"_z_index\":7,\"_offset_x_tablet\":{\"size\":116,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-19,\"unit\":\"px\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"639ecddb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Primary Courses\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6cbb0273\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":175,\"sizes\":[]},\"shape_divider_bottom_flip\":\"yes\",\"__globals__\":{\"shape_divider_bottom_color\":\"globals\\/colors?id=bb22fe7\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7003617b\",\"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\":\"33d7d2f0\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"%\",\"top\":\"-20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"-53\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6768445a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"785c9c90\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"48\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/kids-taking-exam-in-school-2022-06-29-19-26-45-utc-copy.jpg\"},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"35\",\"left\":\"15\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":15,\"blur\":25,\"spread\":-5,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=secondary\"},\"jkit_transform_rotate\":{\"unit\":\"px\",\"size\":358,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"133d57a9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Social Studies\",\"header_size\":\"h4\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2905a3bd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1780998b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"1bb97169\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"f1fc8ed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"38\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/portrait-of-happy-caucasian-boy-standing-at-chalkb-2021-09-03-06-28-24-utc-copy.jpg\"},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"35\",\"left\":\"15\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":15,\"blur\":25,\"spread\":-5,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=secondary\"},\"jkit_transform_rotate\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1be70e33\",\"elType\":\"widget\",\"settings\":{\"title\":\"Mathematics \",\"header_size\":\"h4\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"84221db\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"389f3412\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"3147fc34\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"27a107c5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"55\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/woman-learning-english-online-2021-08-26-15-34-41-utc-copy.jpg\"},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"35\",\"left\":\"15\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":15,\"blur\":25,\"spread\":-5,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=secondary\"},\"jkit_transform_rotate\":{\"unit\":\"px\",\"size\":358,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6f699cb3\",\"elType\":\"widget\",\"settings\":{\"title\":\"English Course\",\"header_size\":\"h4\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6e14a87b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"12d35f7c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"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\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"52e2d9dc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"65\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/3-copy.jpg\"},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.69999999999999996,\"sizes\":[]},\"shape_divider_top\":\"tilt\",\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":175,\"sizes\":[]},\"shape_divider_top_flip\":\"yes\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=bb22fe7\",\"background_overlay_color\":\"globals\\/colors?id=bb22fe7\"},\"overflow\":\"hidden\",\"shape_divider_top_height_tablet\":{\"unit\":\"px\",\"size\":69,\"sizes\":[]},\"shape_divider_top_height_mobile\":{\"unit\":\"px\",\"size\":51,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"140\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"f426e2a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42.542999999999999,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"content_position_tablet\":\"center\",\"align_tablet\":\"center\",\"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\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"5a616044\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"23\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/aged-teacher-2021-09-24-03-26-41-utc.jpg\"},\"opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-125\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=dafc007\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"150\",\"bottom\":\"0\",\"left\":\"150\",\"isLinked\":false},\"_margin_mobile\":{\"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},\"_element_width_tablet\":\"auto\",\"_z_index_mobile\":6},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"76aca3b6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"32\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/aged-teacher-2021-09-24-03-26-41-utc-2.png\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-125\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-2,\"unit\":\"px\"},\"_offset_y\":{\"size\":1,\"unit\":\"px\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"150\",\"bottom\":\"0\",\"left\":\"150\",\"isLinked\":false},\"_margin_mobile\":{\"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},\"_z_index_mobile\":7},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6ba18f0a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":57.457000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"75\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1da3bcbb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Preparing Our Children\\u2019s Bright Future\",\"align_tablet\":\"center\",\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1f66d3c5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"29\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/edge2.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":13.539999999999999},\"_position\":\"absolute\",\"_offset_x\":{\"size\":24,\"unit\":\"px\"},\"_offset_y\":{\"size\":-38,\"unit\":\"px\"},\"_z_index\":7,\"_element_width_tablet\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":70.582999999999998},\"_offset_x_tablet\":{\"size\":14,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":-4,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":8,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":12,\"unit\":\"px\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4a9c2692\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec ultrices purus nec sollicitudin eleifend. In hac habitasse platea dictumst.<\\/p>\",\"align_tablet\":\"center\",\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2a5e6eb3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-line-chart-light\",\"library\":\"jkiticon\"},\"view\":\"stacked\",\"title_text\":\"Grade Improvement\",\"description_text\":\" Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"position\":\"left\",\"icon_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=d50cf18\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"primary_color\":\"globals\\/colors?id=7f7112a\",\"description_typography_typography\":\"globals\\/typography?id=f8cdd91\"},\"icon_space_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"text_align_tablet\":\"left\",\"text_align_mobile\":\"center\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_element_width_tablet\":\"auto\",\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"131750b8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-open-book-light\",\"library\":\"jkiticon\"},\"view\":\"stacked\",\"title_text\":\"Exam Preparation\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing.\",\"position\":\"left\",\"secondary_color\":\"#FFFFFF\",\"icon_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Exo 2\",\"title_typography_font_size\":{\"unit\":\"rem\",\"size\":1.6000000000000001,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.2,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2,\"sizes\":[]},\"title_typography_font_weight\":\"800\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=d50cf18\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"primary_color\":\"globals\\/colors?id=dafc007\",\"description_typography_typography\":\"globals\\/typography?id=f8cdd91\"},\"icon_space_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_element_width_tablet\":\"auto\",\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"62288012\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-users\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Social Development\",\"description_text\":\"Donec et massa sit amet augue laoreet venenatis id et urna.\",\"position\":\"left\",\"icon_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=d50cf18\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"primary_color\":\"globals\\/colors?id=0a21634\",\"description_typography_typography\":\"globals\\/typography?id=f8cdd91\"},\"icon_space_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_tablet\":\"auto\",\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"6b0269ef\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"19\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/c1.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.43},\"_position\":\"absolute\",\"_offset_x\":{\"size\":578,\"unit\":\"px\"},\"_offset_y\":{\"size\":-180,\"unit\":\"px\"},\"_z_index\":7,\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":116.93300000000001},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":150.93299999999999},\"_offset_x_tablet\":{\"size\":576,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":-61,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-606,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-475,\"unit\":\"px\"},\"_z_index_mobile\":1,\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"11e683e1\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":\"47\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/boy-at-lesson-2021-09-24-03-25-58-utc-copy.jpg\"},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.81000000000000005,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=5425a2a\"},\"background_position\":\"center center\",\"overflow\":\"hidden\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"62726094\",\"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\":\"7696e562\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our vision is every child is safe, inspired, challenged, empowered.\",\"align\":\"center\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"291cdd84\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"17\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/edge.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":9.5749999999999993},\"_position\":\"absolute\",\"_offset_x\":{\"size\":1129,\"unit\":\"px\"},\"_offset_y\":{\"size\":-59,\"unit\":\"px\"},\"_z_index\":7,\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":52.017000000000003},\"_offset_x_mobile\":{\"size\":249,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-19,\"unit\":\"px\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5405eae3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"15\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/c3.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":8.1790000000000003},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-12,\"unit\":\"px\"},\"_offset_y\":{\"size\":-28,\"unit\":\"px\"},\"_z_index\":7,\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":88.516999999999996},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":130.517},\"_offset_x_tablet\":{\"size\":-60,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":-106,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-60,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":70,\"unit\":\"px\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"35062fd0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Integer efficitur ligula ipsum, at vulputate mi fermentum sit amet. Sed pulvinar rutrum commodo. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean vitae tortor nec lectus mattis congue id sed tortor.<\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"36f886f7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"14\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/c4.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":3.73},\"_position\":\"absolute\",\"_offset_x\":{\"size\":81,\"unit\":\"px\"},\"_offset_y\":{\"size\":91,\"unit\":\"px\"},\"_z_index\":7,\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_offset_x_tablet\":{\"size\":616,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":10,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":101,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":30,\"unit\":\"px\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3cc6830a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"75553c20\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"shape_divider_bottom_flip\":\"yes\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=a00e83d\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"97c1c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_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\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"247f69f0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Programs for excellence\",\"align_tablet\":\"center\",\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"777b3a8c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"19\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/c1.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":22.148},\"_position\":\"absolute\",\"_offset_x\":{\"size\":470,\"unit\":\"px\"},\"_offset_y\":{\"size\":-54,\"unit\":\"px\"},\"_z_index\":7,\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":73.183000000000007},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":39.183},\"_offset_x_tablet\":{\"size\":154,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":249,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-218,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-288,\"unit\":\"px\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1d77a3a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"29\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/edge2.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":15.734},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-44,\"unit\":\"px\"},\"_offset_y\":{\"size\":26,\"unit\":\"px\"},\"_z_index\":7,\"_element_width_tablet\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":63.75},\"_offset_x_tablet\":{\"size\":28,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":2,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-23,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-18,\"unit\":\"px\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"69fbb26b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Mauris at lacus semper, fermentum mi sed, rutrum nibh. Sed gravida elit ligula, sit amet venenatis diam hendrerit iaculis.<\\/p>\",\"align_tablet\":\"center\",\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"80ecc3f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"28\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/c2.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":10.724},\"_position\":\"absolute\",\"_offset_x\":{\"size\":179,\"unit\":\"px\"},\"_offset_y\":{\"size\":408,\"unit\":\"px\"},\"_z_index\":7,\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":42.116999999999997},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":30.117000000000001},\"_offset_x_tablet\":{\"size\":635,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":254,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-31,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":355,\"unit\":\"px\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"36ed7571\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover More\",\"align_tablet\":\"center\",\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"1e716000\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"74e0a882\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"617b3cb8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2156a27f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"40\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/grade.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_border\":\"none\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"5\",\"isLinked\":false},\"__globals__\":{\"_border_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=384fc29\"},\"jkit_transform_rotate\":{\"unit\":\"px\",\"size\":360,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1664fafd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Grade Boost\",\"header_size\":\"h5\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3cbe788b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet.<\\/p>\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=f8cdd91\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"2bb04b8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"41a65060\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"45\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/chart.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_border\":\"none\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"5\",\"isLinked\":false},\"__globals__\":{\"_border_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=98e3e15\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20d3131e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Skill Evaluation\",\"header_size\":\"h5\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"621208f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet.<\\/p>\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=f8cdd91\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7db08f0d\",\"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\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"7f824463\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3657acce\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"50\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/test-exam-sheet.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_border\":\"none\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"5\",\"isLinked\":false},\"__globals__\":{\"_border_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=7f7112a\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"54b44e19\",\"elType\":\"widget\",\"settings\":{\"title\":\"Mock Exam\",\"header_size\":\"h5\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7da043cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet.<\\/p>\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=f8cdd91\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"11b6e1fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"401111e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"54\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/schedule-sheet.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_border\":\"none\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"5\",\"isLinked\":false},\"__globals__\":{\"_border_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=4b29dee\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2b04a0cf\",\"elType\":\"widget\",\"settings\":{\"title\":\"Weekend Class\",\"header_size\":\"h5\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7398c131\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet.<\\/p>\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=f8cdd91\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"67d987bc\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":\"25\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/13-copy.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002,\"sizes\":[]},\"shape_divider_top\":\"tilt\",\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":130,\"sizes\":[]},\"shape_divider_top_flip\":\"yes\",\"shape_divider_bottom\":\"tilt\",\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":180,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"185\",\"right\":\"0\",\"bottom\":\"400\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"shape_divider_top_color\":\"globals\\/colors?id=a00e83d\",\"background_overlay_color\":\"globals\\/colors?id=98e3e15\",\"shape_divider_bottom_color\":\"globals\\/colors?id=50714e7\"},\"overflow\":\"hidden\",\"shape_divider_top_height_tablet\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"shape_divider_bottom_height_tablet\":{\"unit\":\"px\",\"size\":102,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"230\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7e44fc62\",\"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\":\"6fe80e94\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Popular Teacher\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"35cd5615\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"14\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/c4.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":3.73},\"_position\":\"absolute\",\"_offset_x\":{\"size\":1013,\"unit\":\"px\"},\"_offset_y\":{\"size\":57,\"unit\":\"px\"},\"_z_index\":7,\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":20.800000000000001},\"_offset_x_tablet\":{\"size\":624,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":257,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":49,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":134,\"unit\":\"px\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2d8a0fb0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"15\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/c3.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":13.103},\"_position\":\"absolute\",\"_offset_x\":{\"size\":1022,\"unit\":\"px\"},\"_offset_y\":{\"size\":-124,\"unit\":\"px\"},\"_z_index\":7,\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":56.966999999999999},\"_offset_x_tablet\":{\"size\":602,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":269,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-75,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":67,\"unit\":\"px\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6bf8d6c4\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=50714e7\"}},\"elements\":[{\"id\":\"172efaaa\",\"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\":\"2628b693\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"-285\",\"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\":\"75\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f9c10ed\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"34\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/Acanthus-black-white-02-copy.png\"},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.050000000000000003,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":25,\"blur\":30,\"spread\":-10,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"25\",\"bottom\":\"40\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=5425a2a\",\"border_color\":\"globals\\/colors?id=secondary\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true}},\"elements\":[{\"id\":\"5bfef58d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"30\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/pp1.jpg\"},\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":20,\"blur\":20,\"spread\":-10,\"color\":\"rgba(0, 0, 0, 0.09)\"},\"_margin\":{\"unit\":\"%\",\"top\":\"-37\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"-63\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_mask_image\":{\"id\":\"52\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/hex2.png\"},\"width_tablet\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"18\",\"left\":\"9\",\"isLinked\":false},\"jkit_transform_rotate\":{\"unit\":\"px\",\"size\":356,\"sizes\":[]},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"536734fe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Harry Smith\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7d2eebfe\",\"elType\":\"widget\",\"settings\":{\"title\":\"English Teacher\",\"header_size\":\"h5\",\"align\":\"center\",\"_margin\":{\"unit\":\"%\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=24b2df3\",\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ed8dd0d\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"__globals__\":{\"stars_color\":\"globals\\/colors?id=3c09f21\"}},\"elements\":[],\"widgetType\":\"star-rating\"},{\"id\":\"f044e69\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0\\\" Lorem ipsum dolor sit amet, consectetur adipiscing elit. Suspendisse est neque, ultrices at enim vitae, mattis consequat dui.\\\"<\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=e64be90\",\"typography_typography\":\"globals\\/typography?id=35188cd\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"20688c95\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact\",\"align\":\"center\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=53ec359\",\"button_background_hover_color\":\"globals\\/colors?id=4b29dee\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"4f7656f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"34\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/Acanthus-black-white-02-copy.png\"},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.050000000000000003,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":25,\"blur\":30,\"spread\":-10,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"25\",\"bottom\":\"40\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=0a21634\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"7\",\"bottom\":\"0\",\"left\":\"7\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":300,\"background_overlay_position\":\"center left\"},\"elements\":[{\"id\":\"3249624e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"39\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/pp2.jpg\"},\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":20,\"blur\":20,\"spread\":-10,\"color\":\"rgba(0, 0, 0, 0.09)\"},\"_margin\":{\"unit\":\"%\",\"top\":\"-37\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"-63\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_mask_image\":{\"id\":\"52\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/hex2.png\"},\"width_tablet\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"18\",\"left\":\"9\",\"isLinked\":false},\"jkit_transform_rotate\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b736f11\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gregory Warren\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15dc9be4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Social Teacher\",\"header_size\":\"h5\",\"align\":\"center\",\"_margin\":{\"unit\":\"%\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=24b2df3\",\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2960b3d4\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"__globals__\":{\"stars_color\":\"globals\\/colors?id=3c09f21\"}},\"elements\":[],\"widgetType\":\"star-rating\"},{\"id\":\"25715d57\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0\\\" Lorem ipsum dolor sit amet, consectetur adipiscing elit. Suspendisse est neque, ultrices at enim vitae, mattis consequat dui.\\\"<\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=e64be90\",\"typography_typography\":\"globals\\/typography?id=35188cd\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6ca6010a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact\",\"align\":\"center\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=5425a2a\",\"button_background_hover_color\":\"globals\\/colors?id=7f7112a\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"2302c129\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"34\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/Acanthus-black-white-02-copy.png\"},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.050000000000000003,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":25,\"blur\":30,\"spread\":-10,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"25\",\"bottom\":\"40\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=8eb8d4a\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"14\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":600},\"elements\":[{\"id\":\"40edaa36\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"44\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/pp3.jpg\"},\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":20,\"blur\":20,\"spread\":-10,\"color\":\"rgba(0, 0, 0, 0.09)\"},\"_margin\":{\"unit\":\"%\",\"top\":\"-37\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"-63\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_mask_image\":{\"id\":\"52\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/hex2.png\"},\"width_tablet\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"18\",\"left\":\"9\",\"isLinked\":false},\"jkit_transform_rotate\":{\"unit\":\"px\",\"size\":356,\"sizes\":[]},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"62850e01\",\"elType\":\"widget\",\"settings\":{\"title\":\"Peter Wong\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4e5605ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"Math Teacher\",\"header_size\":\"h5\",\"align\":\"center\",\"_margin\":{\"unit\":\"%\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=24b2df3\",\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5934810d\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"__globals__\":{\"stars_color\":\"globals\\/colors?id=3c09f21\"}},\"elements\":[],\"widgetType\":\"star-rating\"},{\"id\":\"727b7370\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0\\\" Lorem ipsum dolor sit amet, consectetur adipiscing elit. Suspendisse est neque, ultrices at enim vitae, mattis consequat dui.\\\"<\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=e64be90\",\"typography_typography\":\"globals\\/typography?id=35188cd\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4f267b20\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact\",\"align\":\"center\",\"__globals__\":[]},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2f080c83\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"75\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"20\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=50714e7\"},\"overflow\":\"hidden\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"125\",\"left\":\"20\",\"isLinked\":false},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"24d69b05\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"_inline_size_tablet\":100,\"_inline_size_mobile\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"6c54f0ff\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"11a2b2dc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":12,\"blur\":12,\"spread\":-6,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=bb22fe7\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3a4926e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"62\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/logoipsum-265.png\"},\"width_mobile\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"5c24e6af\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":12,\"blur\":12,\"spread\":-6,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=80e8ddb\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3d7a7b11\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"66\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/logoipsum-264.png\"},\"width_mobile\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2c33e824\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":12,\"blur\":12,\"spread\":-6,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=d38674d\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1b8ef368\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"69\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/logoipsum-262.png\"},\"width_mobile\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2c7d601d\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"32658876\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":12,\"blur\":12,\"spread\":-6,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=d38674d\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"133f4fcb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"74\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/logoipsum-261.png\"},\"width_mobile\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"23bf024c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":12,\"blur\":12,\"spread\":-6,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=a00e83d\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"4d4c89b1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"76\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/logoipsum-259.png\"},\"width_mobile\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"304b5aa6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":12,\"blur\":12,\"spread\":-6,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=80e8ddb\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"69f80618\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"80\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/logoipsum-254.png\"},\"width_mobile\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"502a525a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"867aa3c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Trusted Partners\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"align_tablet\":\"center\",\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6fcba7bd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Donec hendrerit nibh in lectus molestie, id bibendum orci hendrerit. Curabitur euismod ante finibus nibh suscipit, vitae vehicula eros venenatis.<\\/p>\",\"align_tablet\":\"center\",\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"28f55b55\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"25\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/13-copy.jpg\"},\"background_repeat\":\"repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002,\"sizes\":[]},\"shape_divider_top\":\"tilt\",\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":123,\"sizes\":[]},\"shape_divider_top_flip\":\"yes\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=0a21634\",\"shape_divider_top_color\":\"globals\\/colors?id=50714e7\"},\"shape_divider_top_height_tablet\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"16713d98\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"28ce1d88\",\"elType\":\"widget\",\"settings\":{\"title\":\"Join Our Education center Now\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"},\"align_tablet\":\"center\",\"_margin_mobile\":{\"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},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2cb72972\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"28\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/c2.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":37.046999999999997},\"_position\":\"absolute\",\"_offset_x\":{\"size\":508,\"unit\":\"px\"},\"_offset_y\":{\"size\":-54,\"unit\":\"px\"},\"_z_index\":7,\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":89.066999999999993},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":30.067},\"_offset_x_tablet\":{\"size\":94,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":252,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-60,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":28,\"unit\":\"px\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"26068e28\",\"elType\":\"widget\",\"settings\":{\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"},\"align_tablet\":\"center\",\"_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},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"324ca56a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Sign Up Now\",\"align\":\"left\",\"_z_index\":9,\"__globals__\":{\"background_color\":\"globals\\/colors?id=5425a2a\",\"button_background_hover_color\":\"globals\\/colors?id=7f7112a\"},\"align_tablet\":\"center\",\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"74253f20\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"26\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/edge3.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":18.638000000000002},\"_offset_x\":{\"size\":172,\"unit\":\"px\"},\"_offset_y\":{\"size\":331,\"unit\":\"px\"},\"_z_index\":7,\"_margin\":{\"unit\":\"%\",\"top\":\"-60\",\"right\":\"45\",\"bottom\":\"0\",\"left\":\"-45\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":39,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3f4d1f73\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"-150\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"50\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-160\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"42320bd1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"46\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/cute-elementary-kids-with-books-at-school-2022-12-16-18-15-57-utc-copy.jpg\"},\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":\"51\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/liki.png\"},\"width_tablet\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":88,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3e131936\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"57\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/cute-elementary-kids-with-books-at-school-2022-12-16-18-15-57-utc2.png\"},\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_position\":\"absolute\",\"width_tablet\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":88,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(536,114,'_elementor_page_assets','a:1:{s:6:\"styles\";a:54:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";i:34;s:12:\"e-animations\";i:35;s:12:\"e-animations\";i:36;s:12:\"e-animations\";i:37;s:12:\"e-animations\";i:38;s:12:\"e-animations\";i:39;s:12:\"e-animations\";i:40;s:12:\"e-animations\";i:41;s:12:\"e-animations\";i:42;s:12:\"e-animations\";i:43;s:12:\"e-animations\";i:44;s:12:\"e-animations\";i:45;s:12:\"e-animations\";i:46;s:12:\"e-animations\";i:47;s:12:\"e-animations\";i:48;s:12:\"e-animations\";i:49;s:12:\"e-animations\";i:50;s:12:\"e-animations\";i:51;s:12:\"e-animations\";i:52;s:12:\"e-animations\";i:53;s:12:\"e-animations\";}}'),(538,123,'_edit_lock','1693977258:1'),(539,123,'_wp_page_template','elementor_header_footer'),(540,123,'_elementor_edit_mode','builder'),(541,123,'_elementor_template_type','wp-page'),(542,123,'_elementor_version','3.15.3'),(549,126,'_wp_page_template','elementor_header_footer'),(550,126,'_elementor_edit_mode','builder'),(551,126,'_elementor_template_type','wp-page'),(552,126,'_elementor_version','3.15.3'),(553,127,'_wp_page_template','elementor_header_footer'),(554,127,'_elementor_edit_mode','builder'),(555,127,'_elementor_template_type','wp-page'),(556,127,'_elementor_version','3.15.3'),(557,123,'_elementor_data','[{\"id\":\"6775b8e4\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":\"7\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/2-copy.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"200\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=50714e7\",\"background_overlay_color\":\"globals\\/colors?id=ff9d88d\",\"shape_divider_bottom_color\":\"globals\\/colors?id=50714e7\"},\"shape_divider_bottom\":\"tilt\",\"shape_divider_bottom_flip\":\"yes\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4d080411\",\"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\":\"1d311c56\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h1\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"72ca0d82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"14\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/c4.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":7.7080000000000002},\"_position\":\"absolute\",\"_offset_x\":{\"size\":285,\"unit\":\"px\"},\"_offset_x_tablet\":{\"size\":133,\"unit\":\"px\"},\"_offset_y\":{\"size\":-32,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-27,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":21,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-14,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"113312dd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"15\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/c3.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":2.7629999999999999},\"_position\":\"absolute\",\"_offset_x\":{\"size\":357,\"unit\":\"px\"},\"_offset_x_tablet\":{\"size\":177,\"unit\":\"px\"},\"_offset_y\":{\"size\":71,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":41,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":47,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-38,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5d17611\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"17\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/edge.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":5.8129999999999997},\"_position\":\"absolute\",\"_offset_x\":{\"size\":858,\"unit\":\"px\"},\"_offset_x_tablet\":{\"size\":518,\"unit\":\"px\"},\"_offset_y\":{\"size\":-41,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-14,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":291,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-3,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a4c6b16\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.69999999999999996,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":175,\"sizes\":[]},\"shape_divider_top_flip\":\"yes\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=50714e7\",\"background_overlay_color\":\"\"},\"shape_divider_top_height_tablet\":{\"unit\":\"px\",\"size\":69,\"sizes\":[]},\"shape_divider_top_height_mobile\":{\"unit\":\"px\",\"size\":51,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"140\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"background_color\":\"#F8F8F8\"},\"elements\":[{\"id\":\"4ee35af8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42.542999999999999,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"content_position_tablet\":\"center\",\"align_tablet\":\"center\",\"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\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6ed0a09e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"23\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/aged-teacher-2021-09-24-03-26-41-utc.jpg\"},\"opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-125\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=dafc007\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"150\",\"bottom\":\"0\",\"left\":\"150\",\"isLinked\":false},\"_margin_mobile\":{\"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},\"_element_width_tablet\":\"auto\",\"_z_index_mobile\":6},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6771627f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"32\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/aged-teacher-2021-09-24-03-26-41-utc-2.png\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-125\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-2,\"unit\":\"px\"},\"_offset_y\":{\"size\":1,\"unit\":\"px\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"150\",\"bottom\":\"0\",\"left\":\"150\",\"isLinked\":false},\"_margin_mobile\":{\"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},\"_z_index_mobile\":7},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"970767b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":57.457000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"75\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"45f11788\",\"elType\":\"widget\",\"settings\":{\"title\":\"Preparing Our Children\\u2019s Bright Future\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"461362ae\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"29\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/edge2.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":13.539999999999999},\"_position\":\"absolute\",\"_offset_x\":{\"size\":24,\"unit\":\"px\"},\"_offset_y\":{\"size\":-38,\"unit\":\"px\"},\"_z_index\":7,\"_element_width_tablet\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":70.582999999999998},\"_offset_x_tablet\":{\"size\":14,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":-4,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":8,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":12,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1d5250a6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec ultrices purus nec sollicitudin eleifend. In hac habitasse platea dictumst.<\\/p>\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7de27415\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-line-chart-light\",\"library\":\"jkiticon\"},\"view\":\"stacked\",\"title_text\":\"Grade Improvement\",\"description_text\":\" Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"position\":\"left\",\"icon_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=d50cf18\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"primary_color\":\"globals\\/colors?id=7f7112a\",\"description_typography_typography\":\"globals\\/typography?id=f8cdd91\"},\"icon_space_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"text_align_tablet\":\"left\",\"text_align_mobile\":\"center\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_element_width_tablet\":\"auto\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"1cc4bdc9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-open-book-light\",\"library\":\"jkiticon\"},\"view\":\"stacked\",\"title_text\":\"Exam Preparation\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing.\",\"position\":\"left\",\"secondary_color\":\"#FFFFFF\",\"icon_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Exo 2\",\"title_typography_font_size\":{\"unit\":\"rem\",\"size\":1.6000000000000001,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.2,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2,\"sizes\":[]},\"title_typography_font_weight\":\"800\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=d50cf18\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"primary_color\":\"globals\\/colors?id=dafc007\",\"description_typography_typography\":\"globals\\/typography?id=f8cdd91\"},\"icon_space_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_element_width_tablet\":\"auto\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"121446c2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-users\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Social Development\",\"description_text\":\"Donec et massa sit amet augue laoreet venenatis id et urna.\",\"position\":\"left\",\"icon_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=d50cf18\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"primary_color\":\"globals\\/colors?id=0a21634\",\"description_typography_typography\":\"globals\\/typography?id=f8cdd91\"},\"icon_space_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_tablet\":\"auto\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"5454b5dd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"19\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/c1.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.43},\"_position\":\"absolute\",\"_offset_x\":{\"size\":538,\"unit\":\"px\"},\"_offset_y\":{\"size\":-239,\"unit\":\"px\"},\"_z_index\":7,\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":116.93300000000001},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":150.93299999999999},\"_offset_x_tablet\":{\"size\":576,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":-61,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-606,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-475,\"unit\":\"px\"},\"_z_index_mobile\":1},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7b42b63d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":\"47\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/boy-at-lesson-2021-09-24-03-25-58-utc-copy.jpg\"},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.81000000000000005,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=5425a2a\"},\"background_position\":\"center center\",\"overflow\":\"hidden\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"59e146b7\",\"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\":\"3e0375aa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our vision is every child is safe, inspired, challenged, empowered.\",\"align\":\"center\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5c4bf720\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"17\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/edge.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":9.5749999999999993},\"_position\":\"absolute\",\"_offset_x\":{\"size\":1129,\"unit\":\"px\"},\"_offset_y\":{\"size\":-59,\"unit\":\"px\"},\"_z_index\":7,\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":52.017000000000003},\"_offset_x_mobile\":{\"size\":249,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-19,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"24108391\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"15\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/c3.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":8.1790000000000003},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-12,\"unit\":\"px\"},\"_offset_y\":{\"size\":-28,\"unit\":\"px\"},\"_z_index\":7,\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":88.516999999999996},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":130.517},\"_offset_x_tablet\":{\"size\":-18,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":-106,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-72,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":70,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6335e1f0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Integer efficitur ligula ipsum, at vulputate mi fermentum sit amet. Sed pulvinar rutrum commodo. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean vitae tortor nec lectus mattis congue id sed tortor.<\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"276388b3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"14\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/c4.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":3.73},\"_position\":\"absolute\",\"_offset_x\":{\"size\":81,\"unit\":\"px\"},\"_offset_y\":{\"size\":91,\"unit\":\"px\"},\"_z_index\":7,\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_offset_x_tablet\":{\"size\":616,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":10,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":101,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":30,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1ffc88fe\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"51da7568\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"20\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=50714e7\"},\"overflow\":\"hidden\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"125\",\"left\":\"20\",\"isLinked\":false},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"1c12bbcb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"_inline_size_tablet\":100,\"_inline_size_mobile\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6eae307a\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"4b6b23d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":12,\"blur\":12,\"spread\":-6,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=bb22fe7\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7fff30ec\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"62\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/logoipsum-265.png\"},\"width_mobile\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"26d2d952\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":12,\"blur\":12,\"spread\":-6,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=80e8ddb\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ce19b05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"66\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/logoipsum-264.png\"},\"width_mobile\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"cfba0c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":12,\"blur\":12,\"spread\":-6,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=d38674d\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b78c598\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"69\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/logoipsum-262.png\"},\"width_mobile\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"49535dea\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"537656ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":12,\"blur\":12,\"spread\":-6,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=d38674d\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2bfa40d2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"74\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/logoipsum-261.png\"},\"width_mobile\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"51e91f5b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":12,\"blur\":12,\"spread\":-6,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=a00e83d\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"17677c25\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"76\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/logoipsum-259.png\"},\"width_mobile\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3db0355b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":12,\"blur\":12,\"spread\":-6,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=80e8ddb\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1bacfe6a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"80\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/logoipsum-254.png\"},\"width_mobile\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20474b85\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"55630d47\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Trusted Partners\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"53937465\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Donec hendrerit nibh in lectus molestie, id bibendum orci hendrerit. Curabitur euismod ante finibus nibh suscipit, vitae vehicula eros venenatis.<\\/p>\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"64d53bea\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"25\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/13-copy.jpg\"},\"background_repeat\":\"repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002,\"sizes\":[]},\"shape_divider_top\":\"tilt\",\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":123,\"sizes\":[]},\"shape_divider_top_flip\":\"yes\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=0a21634\",\"shape_divider_top_color\":\"globals\\/colors?id=50714e7\"},\"shape_divider_top_height_tablet\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"52fab479\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6bd9de16\",\"elType\":\"widget\",\"settings\":{\"title\":\"Join Our Education center Now\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"},\"align_tablet\":\"center\",\"_margin_mobile\":{\"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},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4ac2a59f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"28\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/c2.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":37.046999999999997},\"_position\":\"absolute\",\"_offset_x\":{\"size\":508,\"unit\":\"px\"},\"_offset_y\":{\"size\":-53,\"unit\":\"px\"},\"_z_index\":7,\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":89.066999999999993},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":30.067},\"_offset_x_tablet\":{\"size\":94,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":252,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-60,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":28,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f6c8171\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"14\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/c4.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":12.92},\"_position\":\"absolute\",\"_offset_x\":{\"size\":1290,\"unit\":\"px\"},\"_offset_y\":{\"size\":347,\"unit\":\"px\"},\"_z_index\":7,\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":42.299999999999997},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":118.3},\"_offset_x_tablet\":{\"size\":586,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":-72,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-396,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-43,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"57a65e9e\",\"elType\":\"widget\",\"settings\":{\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"},\"align_tablet\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1fd4eb0f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Sign Up Now\",\"align\":\"left\",\"_z_index\":9,\"__globals__\":{\"background_color\":\"globals\\/colors?id=5425a2a\",\"button_background_hover_color\":\"globals\\/colors?id=7f7112a\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5484aa25\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"26\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/edge3.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":18.638000000000002},\"_offset_x\":{\"size\":172,\"unit\":\"px\"},\"_offset_y\":{\"size\":331,\"unit\":\"px\"},\"_z_index\":7,\"_margin\":{\"unit\":\"%\",\"top\":\"-60\",\"right\":\"45\",\"bottom\":\"0\",\"left\":\"-45\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":39,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"4d167971\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"-150\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"50\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-160\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1defd974\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"46\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/cute-elementary-kids-with-books-at-school-2022-12-16-18-15-57-utc-copy.jpg\"},\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":\"51\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/liki.png\"},\"width_tablet\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":88,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"44dbd070\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"57\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/cute-elementary-kids-with-books-at-school-2022-12-16-18-15-57-utc2.png\"},\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_position\":\"absolute\",\"width_tablet\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":88,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(558,128,'_wp_page_template','elementor_header_footer'),(559,128,'_elementor_edit_mode','builder'),(560,128,'_elementor_template_type','wp-page'),(561,128,'_elementor_version','3.15.3'),(562,128,'_elementor_data','[{\"id\":\"6775b8e4\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":\"7\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/2-copy.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"200\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=50714e7\",\"background_overlay_color\":\"globals\\/colors?id=ff9d88d\",\"shape_divider_bottom_color\":\"globals\\/colors?id=50714e7\"},\"shape_divider_bottom\":\"tilt\",\"shape_divider_bottom_flip\":\"yes\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4d080411\",\"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\":\"1d311c56\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h1\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"72ca0d82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"14\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/c4.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":7.7080000000000002},\"_position\":\"absolute\",\"_offset_x\":{\"size\":285,\"unit\":\"px\"},\"_offset_x_tablet\":{\"size\":133,\"unit\":\"px\"},\"_offset_y\":{\"size\":-32,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-27,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":21,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-14,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"113312dd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"15\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/c3.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":2.7629999999999999},\"_position\":\"absolute\",\"_offset_x\":{\"size\":357,\"unit\":\"px\"},\"_offset_x_tablet\":{\"size\":177,\"unit\":\"px\"},\"_offset_y\":{\"size\":71,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":41,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":47,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-38,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5d17611\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"17\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/edge.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":5.8129999999999997},\"_position\":\"absolute\",\"_offset_x\":{\"size\":858,\"unit\":\"px\"},\"_offset_x_tablet\":{\"size\":518,\"unit\":\"px\"},\"_offset_y\":{\"size\":-41,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-14,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":291,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-3,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a4c6b16\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.69999999999999996,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":175,\"sizes\":[]},\"shape_divider_top_flip\":\"yes\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=50714e7\",\"background_overlay_color\":\"\"},\"shape_divider_top_height_tablet\":{\"unit\":\"px\",\"size\":69,\"sizes\":[]},\"shape_divider_top_height_mobile\":{\"unit\":\"px\",\"size\":51,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"140\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"background_color\":\"#F8F8F8\"},\"elements\":[{\"id\":\"4ee35af8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42.542999999999999,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"content_position_tablet\":\"center\",\"align_tablet\":\"center\",\"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\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6ed0a09e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"23\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/aged-teacher-2021-09-24-03-26-41-utc.jpg\"},\"opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-125\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=dafc007\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"150\",\"bottom\":\"0\",\"left\":\"150\",\"isLinked\":false},\"_margin_mobile\":{\"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},\"_element_width_tablet\":\"auto\",\"_z_index_mobile\":6},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6771627f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"32\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/aged-teacher-2021-09-24-03-26-41-utc-2.png\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-125\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-2,\"unit\":\"px\"},\"_offset_y\":{\"size\":1,\"unit\":\"px\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"150\",\"bottom\":\"0\",\"left\":\"150\",\"isLinked\":false},\"_margin_mobile\":{\"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},\"_z_index_mobile\":7},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"970767b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":57.457000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"75\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"45f11788\",\"elType\":\"widget\",\"settings\":{\"title\":\"Preparing Our Children\\u2019s Bright Future\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"461362ae\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"29\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/edge2.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":13.539999999999999},\"_position\":\"absolute\",\"_offset_x\":{\"size\":24,\"unit\":\"px\"},\"_offset_y\":{\"size\":-38,\"unit\":\"px\"},\"_z_index\":7,\"_element_width_tablet\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":70.582999999999998},\"_offset_x_tablet\":{\"size\":14,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":-4,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":8,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":12,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1d5250a6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec ultrices purus nec sollicitudin eleifend. In hac habitasse platea dictumst.<\\/p>\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7de27415\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-line-chart-light\",\"library\":\"jkiticon\"},\"view\":\"stacked\",\"title_text\":\"Grade Improvement\",\"description_text\":\" Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"position\":\"left\",\"icon_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=d50cf18\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"primary_color\":\"globals\\/colors?id=7f7112a\",\"description_typography_typography\":\"globals\\/typography?id=f8cdd91\"},\"icon_space_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"text_align_tablet\":\"left\",\"text_align_mobile\":\"center\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_element_width_tablet\":\"auto\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"1cc4bdc9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-open-book-light\",\"library\":\"jkiticon\"},\"view\":\"stacked\",\"title_text\":\"Exam Preparation\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing.\",\"position\":\"left\",\"secondary_color\":\"#FFFFFF\",\"icon_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Exo 2\",\"title_typography_font_size\":{\"unit\":\"rem\",\"size\":1.6000000000000001,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.2,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2,\"sizes\":[]},\"title_typography_font_weight\":\"800\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=d50cf18\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"primary_color\":\"globals\\/colors?id=dafc007\",\"description_typography_typography\":\"globals\\/typography?id=f8cdd91\"},\"icon_space_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_element_width_tablet\":\"auto\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"121446c2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-users\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Social Development\",\"description_text\":\"Donec et massa sit amet augue laoreet venenatis id et urna.\",\"position\":\"left\",\"icon_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=d50cf18\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"primary_color\":\"globals\\/colors?id=0a21634\",\"description_typography_typography\":\"globals\\/typography?id=f8cdd91\"},\"icon_space_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_tablet\":\"auto\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"5454b5dd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"19\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/c1.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.43},\"_position\":\"absolute\",\"_offset_x\":{\"size\":538,\"unit\":\"px\"},\"_offset_y\":{\"size\":-239,\"unit\":\"px\"},\"_z_index\":7,\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":116.93300000000001},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":150.93299999999999},\"_offset_x_tablet\":{\"size\":576,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":-61,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-606,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-475,\"unit\":\"px\"},\"_z_index_mobile\":1},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7b42b63d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":\"47\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/boy-at-lesson-2021-09-24-03-25-58-utc-copy.jpg\"},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.81000000000000005,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=5425a2a\"},\"background_position\":\"center center\",\"overflow\":\"hidden\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"59e146b7\",\"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\":\"3e0375aa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our vision is every child is safe, inspired, challenged, empowered.\",\"align\":\"center\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5c4bf720\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"17\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/edge.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":9.5749999999999993},\"_position\":\"absolute\",\"_offset_x\":{\"size\":1129,\"unit\":\"px\"},\"_offset_y\":{\"size\":-59,\"unit\":\"px\"},\"_z_index\":7,\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":52.017000000000003},\"_offset_x_mobile\":{\"size\":249,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-19,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"24108391\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"15\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/c3.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":8.1790000000000003},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-12,\"unit\":\"px\"},\"_offset_y\":{\"size\":-28,\"unit\":\"px\"},\"_z_index\":7,\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":88.516999999999996},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":130.517},\"_offset_x_tablet\":{\"size\":-18,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":-106,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-72,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":70,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6335e1f0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Integer efficitur ligula ipsum, at vulputate mi fermentum sit amet. Sed pulvinar rutrum commodo. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean vitae tortor nec lectus mattis congue id sed tortor.<\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"276388b3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"14\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/c4.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":3.73},\"_position\":\"absolute\",\"_offset_x\":{\"size\":81,\"unit\":\"px\"},\"_offset_y\":{\"size\":91,\"unit\":\"px\"},\"_z_index\":7,\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_offset_x_tablet\":{\"size\":616,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":10,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":101,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":30,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1ffc88fe\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"51da7568\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"20\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=50714e7\"},\"overflow\":\"hidden\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"125\",\"left\":\"20\",\"isLinked\":false},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"1c12bbcb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"_inline_size_tablet\":100,\"_inline_size_mobile\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6eae307a\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"4b6b23d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":12,\"blur\":12,\"spread\":-6,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=bb22fe7\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7fff30ec\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"62\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/logoipsum-265.png\"},\"width_mobile\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"26d2d952\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":12,\"blur\":12,\"spread\":-6,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=80e8ddb\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ce19b05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"66\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/logoipsum-264.png\"},\"width_mobile\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"cfba0c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":12,\"blur\":12,\"spread\":-6,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=d38674d\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b78c598\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"69\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/logoipsum-262.png\"},\"width_mobile\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"49535dea\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"537656ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":12,\"blur\":12,\"spread\":-6,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=d38674d\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2bfa40d2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"74\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/logoipsum-261.png\"},\"width_mobile\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"51e91f5b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":12,\"blur\":12,\"spread\":-6,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=a00e83d\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"17677c25\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"76\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/logoipsum-259.png\"},\"width_mobile\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3db0355b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":12,\"blur\":12,\"spread\":-6,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=80e8ddb\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1bacfe6a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"80\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/logoipsum-254.png\"},\"width_mobile\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20474b85\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"55630d47\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Trusted Partners\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"53937465\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Donec hendrerit nibh in lectus molestie, id bibendum orci hendrerit. Curabitur euismod ante finibus nibh suscipit, vitae vehicula eros venenatis.<\\/p>\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"64d53bea\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"25\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/13-copy.jpg\"},\"background_repeat\":\"repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002,\"sizes\":[]},\"shape_divider_top\":\"tilt\",\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":123,\"sizes\":[]},\"shape_divider_top_flip\":\"yes\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=0a21634\",\"shape_divider_top_color\":\"globals\\/colors?id=50714e7\"},\"shape_divider_top_height_tablet\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"52fab479\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6bd9de16\",\"elType\":\"widget\",\"settings\":{\"title\":\"Join Our Education center Now\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"},\"align_tablet\":\"center\",\"_margin_mobile\":{\"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},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4ac2a59f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"28\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/c2.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":37.046999999999997},\"_position\":\"absolute\",\"_offset_x\":{\"size\":508,\"unit\":\"px\"},\"_offset_y\":{\"size\":-53,\"unit\":\"px\"},\"_z_index\":7,\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":89.066999999999993},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":30.067},\"_offset_x_tablet\":{\"size\":94,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":252,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-60,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":28,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f6c8171\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"14\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/c4.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":12.92},\"_position\":\"absolute\",\"_offset_x\":{\"size\":1290,\"unit\":\"px\"},\"_offset_y\":{\"size\":347,\"unit\":\"px\"},\"_z_index\":7,\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":42.299999999999997},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":118.3},\"_offset_x_tablet\":{\"size\":586,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":-72,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-396,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-43,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"57a65e9e\",\"elType\":\"widget\",\"settings\":{\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"},\"align_tablet\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1fd4eb0f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Sign Up Now\",\"align\":\"left\",\"_z_index\":9,\"__globals__\":{\"background_color\":\"globals\\/colors?id=5425a2a\",\"button_background_hover_color\":\"globals\\/colors?id=7f7112a\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5484aa25\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"26\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/edge3.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":18.638000000000002},\"_offset_x\":{\"size\":172,\"unit\":\"px\"},\"_offset_y\":{\"size\":331,\"unit\":\"px\"},\"_z_index\":7,\"_margin\":{\"unit\":\"%\",\"top\":\"-60\",\"right\":\"45\",\"bottom\":\"0\",\"left\":\"-45\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":39,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"4d167971\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"-150\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"50\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-160\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1defd974\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"46\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/cute-elementary-kids-with-books-at-school-2022-12-16-18-15-57-utc-copy.jpg\"},\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":\"51\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/liki.png\"},\"width_tablet\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":88,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"44dbd070\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"57\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/cute-elementary-kids-with-books-at-school-2022-12-16-18-15-57-utc2.png\"},\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_position\":\"absolute\",\"width_tablet\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":88,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(563,123,'_elementor_page_assets','a:0:{}'),(564,129,'_wp_page_template','elementor_canvas'),(565,129,'_elementor_edit_mode','builder'),(566,129,'_elementor_template_type','wp-post'),(567,129,'_elementor_version','3.15.3'),(568,129,'_elementor_data','[{\"id\":\"4e89c8bb\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=45bcc5b\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"788c9f2c\",\"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\":\"35d098b2\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=e64be90\"}},\"elements\":[{\"id\":\"260c8e6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":35.206000000000003,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"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\":\"68635dc1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":108,\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/\\u0938\\u093e\\u0939\\u093f\\u0924\\u094d\\u092f-2.webp\",\"alt\":\"\\u0938\\u093e\\u0939\\u093f\\u0924\\u094d\\u092f \",\"source\":\"library\",\"size\":\"\"},\"align\":\"left\",\"align_mobile\":\"center\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_tablet\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-22\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3a10c740\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis.<\\/p>\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=76544c2\",\"typography_typography\":\"globals\\/typography?id=f8cdd91\"},\"align_mobile\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"22\",\"bottom\":\"4\",\"left\":\"22\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"6c8c96ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":17.555,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_inline_size_tablet\":25,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"53030814\",\"elType\":\"widget\",\"settings\":{\"title\":\"Explore\",\"header_size\":\"h4\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=e64be90\"},\"align_mobile\":\"center\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"56a0f0cf\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=f8cdd91\",\"title_color\":\"globals\\/colors?id=76544c2\"},\"align_mobile\":\"center\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"28003150\",\"elType\":\"widget\",\"settings\":{\"title\":\"Curriculum \",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=f8cdd91\",\"title_color\":\"globals\\/colors?id=76544c2\"},\"align_mobile\":\"center\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5d14e37c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Event\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=f8cdd91\",\"title_color\":\"globals\\/colors?id=76544c2\"},\"align_mobile\":\"center\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"3390c988\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":25.192,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_inline_size_tablet\":30,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4834171\",\"elType\":\"widget\",\"settings\":{\"title\":\"Further Links\",\"header_size\":\"h4\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=e64be90\"},\"align_mobile\":\"center\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7342e732\",\"elType\":\"widget\",\"settings\":{\"title\":\"Term & Condition\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=f8cdd91\",\"title_color\":\"globals\\/colors?id=76544c2\"},\"align_mobile\":\"center\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4bae6ccc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=f8cdd91\",\"title_color\":\"globals\\/colors?id=76544c2\"},\"align_mobile\":\"center\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6c298ebd\",\"elType\":\"widget\",\"settings\":{\"title\":\"News\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=f8cdd91\",\"title_color\":\"globals\\/colors?id=76544c2\"},\"align_mobile\":\"center\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"403ff56d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":22,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":45,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"17ef72e2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get In Touch\",\"header_size\":\"h4\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=e64be90\"},\"align_mobile\":\"center\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2129af6a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2443 Oak Ridge Omaha, QA 45065\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"183285d\"},{\"text\":\"207-8767-452\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"f460c80\"},{\"text\":\"support@site.com\",\"selected_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"_id\":\"0a24203\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"icon_color\":\"globals\\/colors?id=7f7112a\",\"text_color\":\"globals\\/colors?id=76544c2\",\"icon_typography_typography\":\"globals\\/typography?id=f8cdd91\"},\"icon_align_mobile\":\"center\",\"icon_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"78b3e25b\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"Copyright \\u00a9 [hfe_current_year] [hfe_site_title] | Powered by [hfe_site_title]\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=e64be90\",\"caption_typography_typography\":\"globals\\/typography?id=f8cdd91\"},\"align_mobile\":\"center\",\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"copyright\"}],\"isInner\":false}],\"isInner\":false}]'),(569,129,'_elementor_page_assets','a:0:{}'),(571,130,'_wp_page_template','elementor_canvas'),(572,130,'_elementor_edit_mode','builder'),(573,130,'_elementor_template_type','wp-post'),(574,130,'_elementor_version','3.15.3'),(575,130,'_elementor_data','[{\"id\":\"4e89c8bb\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=45bcc5b\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"788c9f2c\",\"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\":\"35d098b2\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=e64be90\"}},\"elements\":[{\"id\":\"260c8e6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":35.206000000000003,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"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\":\"68635dc1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":108,\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/\\u0938\\u093e\\u0939\\u093f\\u0924\\u094d\\u092f-2.webp\",\"alt\":\"\\u0938\\u093e\\u0939\\u093f\\u0924\\u094d\\u092f \",\"source\":\"library\",\"size\":\"\"},\"align\":\"left\",\"align_mobile\":\"center\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_tablet\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-22\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3a10c740\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis.<\\/p>\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=76544c2\",\"typography_typography\":\"globals\\/typography?id=f8cdd91\"},\"align_mobile\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"22\",\"bottom\":\"4\",\"left\":\"22\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"6c8c96ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":17.555,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_inline_size_tablet\":25,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"53030814\",\"elType\":\"widget\",\"settings\":{\"title\":\"Explore\",\"header_size\":\"h4\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=e64be90\"},\"align_mobile\":\"center\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"56a0f0cf\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=f8cdd91\",\"title_color\":\"globals\\/colors?id=76544c2\"},\"align_mobile\":\"center\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"28003150\",\"elType\":\"widget\",\"settings\":{\"title\":\"Curriculum \",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=f8cdd91\",\"title_color\":\"globals\\/colors?id=76544c2\"},\"align_mobile\":\"center\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5d14e37c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Event\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=f8cdd91\",\"title_color\":\"globals\\/colors?id=76544c2\"},\"align_mobile\":\"center\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"3390c988\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":25.192,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_inline_size_tablet\":30,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4834171\",\"elType\":\"widget\",\"settings\":{\"title\":\"Further Links\",\"header_size\":\"h4\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=e64be90\"},\"align_mobile\":\"center\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7342e732\",\"elType\":\"widget\",\"settings\":{\"title\":\"Term & Condition\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=f8cdd91\",\"title_color\":\"globals\\/colors?id=76544c2\"},\"align_mobile\":\"center\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4bae6ccc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=f8cdd91\",\"title_color\":\"globals\\/colors?id=76544c2\"},\"align_mobile\":\"center\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6c298ebd\",\"elType\":\"widget\",\"settings\":{\"title\":\"News\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=f8cdd91\",\"title_color\":\"globals\\/colors?id=76544c2\"},\"align_mobile\":\"center\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"403ff56d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":22,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":45,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"17ef72e2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get In Touch\",\"header_size\":\"h4\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=e64be90\"},\"align_mobile\":\"center\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2129af6a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2443 Oak Ridge Omaha, QA 45065\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"183285d\"},{\"text\":\"207-8767-452\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"f460c80\"},{\"text\":\"support@site.com\",\"selected_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"_id\":\"0a24203\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"icon_color\":\"globals\\/colors?id=7f7112a\",\"text_color\":\"globals\\/colors?id=76544c2\",\"icon_typography_typography\":\"globals\\/typography?id=f8cdd91\"},\"icon_align_mobile\":\"center\",\"icon_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"78b3e25b\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"Copyright \\u00a9 [hfe_current_year] [hfe_site_title] | Powered by [hfe_site_title]\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=e64be90\",\"caption_typography_typography\":\"globals\\/typography?id=f8cdd91\"},\"align_mobile\":\"center\",\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"copyright\"}],\"isInner\":false}],\"isInner\":false}]'),(576,130,'_elementor_page_assets','a:0:{}'),(578,131,'_wp_page_template','elementor_canvas'),(579,131,'_elementor_edit_mode','builder'),(580,131,'_elementor_template_type','wp-post'),(581,131,'_elementor_version','3.15.3'),(582,131,'_elementor_data','[{\"id\":\"4e89c8bb\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=45bcc5b\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"788c9f2c\",\"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\":\"35d098b2\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=e64be90\"}},\"elements\":[{\"id\":\"260c8e6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":35.206000000000003,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"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\":\"68635dc1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":108,\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/\\u0938\\u093e\\u0939\\u093f\\u0924\\u094d\\u092f-2.webp\",\"alt\":\"\\u0938\\u093e\\u0939\\u093f\\u0924\\u094d\\u092f \",\"source\":\"library\",\"size\":\"\"},\"align\":\"left\",\"align_mobile\":\"center\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_tablet\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-22\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3a10c740\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis.<\\/p>\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=76544c2\",\"typography_typography\":\"globals\\/typography?id=f8cdd91\"},\"align_mobile\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"22\",\"bottom\":\"4\",\"left\":\"22\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"6c8c96ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":17.555,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_inline_size_tablet\":25,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"53030814\",\"elType\":\"widget\",\"settings\":{\"title\":\"Explore\",\"header_size\":\"h4\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=e64be90\"},\"align_mobile\":\"center\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"56a0f0cf\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=f8cdd91\",\"title_color\":\"globals\\/colors?id=76544c2\"},\"align_mobile\":\"center\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"28003150\",\"elType\":\"widget\",\"settings\":{\"title\":\"Curriculum \",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=f8cdd91\",\"title_color\":\"globals\\/colors?id=76544c2\"},\"align_mobile\":\"center\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5d14e37c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Event\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=f8cdd91\",\"title_color\":\"globals\\/colors?id=76544c2\"},\"align_mobile\":\"center\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"3390c988\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":25.192,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_inline_size_tablet\":30,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4834171\",\"elType\":\"widget\",\"settings\":{\"title\":\"Further Links\",\"header_size\":\"h4\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=e64be90\"},\"align_mobile\":\"center\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7342e732\",\"elType\":\"widget\",\"settings\":{\"title\":\"Term & Condition\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=f8cdd91\",\"title_color\":\"globals\\/colors?id=76544c2\"},\"align_mobile\":\"center\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4bae6ccc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=f8cdd91\",\"title_color\":\"globals\\/colors?id=76544c2\"},\"align_mobile\":\"center\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6c298ebd\",\"elType\":\"widget\",\"settings\":{\"title\":\"News\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=f8cdd91\",\"title_color\":\"globals\\/colors?id=76544c2\"},\"align_mobile\":\"center\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"403ff56d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":22,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":45,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"17ef72e2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get In Touch\",\"header_size\":\"h4\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=e64be90\"},\"align_mobile\":\"center\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2129af6a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2443 Oak Ridge Omaha, QA 45065\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"183285d\"},{\"text\":\"207-8767-452\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"f460c80\"},{\"text\":\"support@site.com\",\"selected_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"_id\":\"0a24203\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"icon_color\":\"globals\\/colors?id=7f7112a\",\"text_color\":\"globals\\/colors?id=76544c2\",\"icon_typography_typography\":\"globals\\/typography?id=f8cdd91\"},\"icon_align_mobile\":\"center\",\"icon_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"78b3e25b\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"Copyright \\u00a9 Sahitya Powered by Ideas Cloud\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=e64be90\",\"caption_typography_typography\":\"globals\\/typography?id=f8cdd91\"},\"align_mobile\":\"center\",\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"copyright\"}],\"isInner\":false}],\"isInner\":false}]'),(583,131,'_elementor_page_assets','a:0:{}'),(585,132,'_edit_lock','1693977930:1'),(586,132,'_wp_page_template','elementor_header_footer'),(587,132,'_elementor_edit_mode','builder'),(588,132,'_elementor_template_type','wp-page'),(589,132,'_elementor_version','3.15.3'),(597,135,'_wp_page_template','elementor_header_footer'),(598,135,'_elementor_edit_mode','builder'),(599,135,'_elementor_template_type','wp-page'),(600,135,'_elementor_version','3.15.3'),(601,136,'_wp_page_template','elementor_header_footer'),(602,136,'_elementor_edit_mode','builder'),(603,136,'_elementor_template_type','wp-page'),(604,136,'_elementor_version','3.15.3'),(605,132,'_elementor_data','[{\"id\":\"5242d7af\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":\"7\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/2-copy.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"200\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=50714e7\",\"background_overlay_color\":\"globals\\/colors?id=ff9d88d\",\"shape_divider_bottom_color\":\"globals\\/colors?id=a00e83d\"},\"shape_divider_bottom\":\"tilt\",\"shape_divider_bottom_flip\":\"yes\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"56b6ab1f\",\"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\":\"42120b63\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"header_size\":\"h1\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32c6e75\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"14\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/c4.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":7.7080000000000002},\"_position\":\"absolute\",\"_offset_x\":{\"size\":254,\"unit\":\"px\"},\"_offset_x_tablet\":{\"size\":117,\"unit\":\"px\"},\"_offset_y\":{\"size\":-45,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-29,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":10,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-23,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6f6e182f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"15\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/c3.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":2.7629999999999999},\"_position\":\"absolute\",\"_offset_x\":{\"size\":334,\"unit\":\"px\"},\"_offset_x_tablet\":{\"size\":160,\"unit\":\"px\"},\"_offset_y\":{\"size\":85,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":31,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":47,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-42,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"33dee39c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"17\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/edge.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":5.8129999999999997},\"_position\":\"absolute\",\"_offset_x\":{\"size\":865,\"unit\":\"px\"},\"_offset_x_tablet\":{\"size\":545,\"unit\":\"px\"},\"_offset_y\":{\"size\":-32,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-12,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":308,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-6,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"70ded6c\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"70\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=a00e83d\",\"shape_divider_bottom_color\":\"globals\\/colors?id=50714e7\"},\"shape_divider_bottom\":\"tilt\",\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[{\"id\":\"65be1e19\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_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},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7c5b8777\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"f387082\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":15,\"content_position\":\"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},\"_inline_size_tablet\":100,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6c6909b7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":29,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_mask_shape\":\"custom\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=7f7112a\",\"hover_primary_color\":\"\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\"},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"38\",\"bottom\":\"0\",\"left\":\"38\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"654069d5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":85,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4787cabc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Number\",\"align_tablet\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4458b199\",\"elType\":\"widget\",\"settings\":{\"title\":\"+6282 4032 567 \",\"header_size\":\"h4\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6dadea08\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_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},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"32298a28\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"572892c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":15,\"content_position\":\"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},\"_inline_size_tablet\":100,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5d67eb07\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":29,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_mask_shape\":\"custom\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=f2feccc\",\"hover_primary_color\":\"\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\"},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"38\",\"bottom\":\"0\",\"left\":\"38\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"12229658\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":85,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5d86287a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Email Address\",\"align_tablet\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"310f4835\",\"elType\":\"widget\",\"settings\":{\"title\":\"example@email.com\",\"header_size\":\"h4\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5f248b6f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_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\":\"619a10ab\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"7039003e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":15,\"content_position\":\"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},\"_inline_size_tablet\":100,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2004e79\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":29,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_mask_shape\":\"custom\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=ae9db18\",\"hover_primary_color\":\"\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\"},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"38\",\"bottom\":\"0\",\"left\":\"38\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"3a5e3982\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":85,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"23beed1f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our location\",\"align_tablet\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4853de74\",\"elType\":\"widget\",\"settings\":{\"title\":\"2443 Oak Ridge Omaha, QA 45065\",\"header_size\":\"h4\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"468bf2bb\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=50714e7\"}},\"elements\":[{\"id\":\"2ae18e59\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"56ac2aca\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get in touch\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"647b4ee6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Nulla nec ligula molestie, pulvinar mi id, vulputate magna. Etiam lobortis velit vitae ante aliquet tincidunt.<\\/p>\",\"align_tablet\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"17\",\"bottom\":\"0\",\"left\":\"17\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"739ab6f6\",\"elType\":\"widget\",\"settings\":{\"mf_form_id\":\"1090***1681799916030\"},\"elements\":[],\"widgetType\":\"metform\"}],\"isInner\":false},{\"id\":\"5fe9337d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3ef24939\",\"elType\":\"widget\",\"settings\":{\"address\":\"London Eye, London, United Kingdom\",\"height\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":310,\"sizes\":[]},\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1536e561\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"25\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/13-copy.jpg\"},\"background_repeat\":\"repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002,\"sizes\":[]},\"shape_divider_top\":\"tilt\",\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":123,\"sizes\":[]},\"shape_divider_top_flip\":\"yes\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=0a21634\",\"shape_divider_top_color\":\"globals\\/colors?id=50714e7\"},\"shape_divider_top_height_tablet\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"112fbb45\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3a01941a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Join Our Education center Now\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"},\"align_tablet\":\"center\",\"_margin_mobile\":{\"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},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3940173\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"28\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/c2.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":37.046999999999997},\"_position\":\"absolute\",\"_offset_x\":{\"size\":508,\"unit\":\"px\"},\"_offset_y\":{\"size\":-53,\"unit\":\"px\"},\"_z_index\":7,\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":89.066999999999993},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":30.067},\"_offset_x_tablet\":{\"size\":94,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":252,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-60,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":28,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5f0c4af0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"14\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/c4.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":12.92},\"_position\":\"absolute\",\"_offset_x\":{\"size\":1290,\"unit\":\"px\"},\"_offset_y\":{\"size\":347,\"unit\":\"px\"},\"_z_index\":7,\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":42.299999999999997},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":118.3},\"_offset_x_tablet\":{\"size\":586,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":-72,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-396,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-43,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"227f9b41\",\"elType\":\"widget\",\"settings\":{\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"},\"align_tablet\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2300f1eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Sign Up Now\",\"align\":\"left\",\"_z_index\":9,\"__globals__\":{\"background_color\":\"globals\\/colors?id=5425a2a\",\"button_background_hover_color\":\"globals\\/colors?id=7f7112a\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5b6664ef\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"26\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/edge3.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":18.638000000000002},\"_offset_x\":{\"size\":172,\"unit\":\"px\"},\"_offset_y\":{\"size\":331,\"unit\":\"px\"},\"_z_index\":7,\"_margin\":{\"unit\":\"%\",\"top\":\"-60\",\"right\":\"45\",\"bottom\":\"0\",\"left\":\"-45\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":39,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2cb0b5fd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"-150\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"50\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-160\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6b18a0f8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"46\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/cute-elementary-kids-with-books-at-school-2022-12-16-18-15-57-utc-copy.jpg\"},\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":\"51\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/liki.png\"},\"width_tablet\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":88,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6cc56122\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"57\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/cute-elementary-kids-with-books-at-school-2022-12-16-18-15-57-utc2.png\"},\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_position\":\"absolute\",\"width_tablet\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":88,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(606,137,'_wp_page_template','elementor_header_footer'),(607,137,'_elementor_edit_mode','builder'),(608,137,'_elementor_template_type','wp-page'),(609,137,'_elementor_version','3.15.3'),(610,137,'_elementor_data','[{\"id\":\"5242d7af\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":\"7\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/2-copy.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"200\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=50714e7\",\"background_overlay_color\":\"globals\\/colors?id=ff9d88d\",\"shape_divider_bottom_color\":\"globals\\/colors?id=a00e83d\"},\"shape_divider_bottom\":\"tilt\",\"shape_divider_bottom_flip\":\"yes\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"56b6ab1f\",\"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\":\"42120b63\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"header_size\":\"h1\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32c6e75\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"14\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/c4.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":7.7080000000000002},\"_position\":\"absolute\",\"_offset_x\":{\"size\":254,\"unit\":\"px\"},\"_offset_x_tablet\":{\"size\":117,\"unit\":\"px\"},\"_offset_y\":{\"size\":-45,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-29,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":10,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-23,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6f6e182f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"15\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/c3.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":2.7629999999999999},\"_position\":\"absolute\",\"_offset_x\":{\"size\":334,\"unit\":\"px\"},\"_offset_x_tablet\":{\"size\":160,\"unit\":\"px\"},\"_offset_y\":{\"size\":85,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":31,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":47,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-42,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"33dee39c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"17\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/edge.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":5.8129999999999997},\"_position\":\"absolute\",\"_offset_x\":{\"size\":865,\"unit\":\"px\"},\"_offset_x_tablet\":{\"size\":545,\"unit\":\"px\"},\"_offset_y\":{\"size\":-32,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-12,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":308,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-6,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"70ded6c\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"70\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=a00e83d\",\"shape_divider_bottom_color\":\"globals\\/colors?id=50714e7\"},\"shape_divider_bottom\":\"tilt\",\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[{\"id\":\"65be1e19\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_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},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7c5b8777\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"f387082\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":15,\"content_position\":\"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},\"_inline_size_tablet\":100,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6c6909b7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":29,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_mask_shape\":\"custom\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=7f7112a\",\"hover_primary_color\":\"\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\"},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"38\",\"bottom\":\"0\",\"left\":\"38\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"654069d5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":85,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4787cabc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Number\",\"align_tablet\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4458b199\",\"elType\":\"widget\",\"settings\":{\"title\":\"+6282 4032 567 \",\"header_size\":\"h4\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6dadea08\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_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},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"32298a28\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"572892c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":15,\"content_position\":\"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},\"_inline_size_tablet\":100,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5d67eb07\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":29,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_mask_shape\":\"custom\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=f2feccc\",\"hover_primary_color\":\"\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\"},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"38\",\"bottom\":\"0\",\"left\":\"38\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"12229658\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":85,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5d86287a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Email Address\",\"align_tablet\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"310f4835\",\"elType\":\"widget\",\"settings\":{\"title\":\"example@email.com\",\"header_size\":\"h4\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5f248b6f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_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\":\"619a10ab\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"7039003e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":15,\"content_position\":\"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},\"_inline_size_tablet\":100,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2004e79\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":29,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_mask_shape\":\"custom\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=ae9db18\",\"hover_primary_color\":\"\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\"},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"38\",\"bottom\":\"0\",\"left\":\"38\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"3a5e3982\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":85,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"23beed1f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our location\",\"align_tablet\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4853de74\",\"elType\":\"widget\",\"settings\":{\"title\":\"2443 Oak Ridge Omaha, QA 45065\",\"header_size\":\"h4\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"468bf2bb\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=50714e7\"}},\"elements\":[{\"id\":\"2ae18e59\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"56ac2aca\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get in touch\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"647b4ee6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Nulla nec ligula molestie, pulvinar mi id, vulputate magna. Etiam lobortis velit vitae ante aliquet tincidunt.<\\/p>\",\"align_tablet\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"17\",\"bottom\":\"0\",\"left\":\"17\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"739ab6f6\",\"elType\":\"widget\",\"settings\":{\"mf_form_id\":\"1090***1681799916030\"},\"elements\":[],\"widgetType\":\"metform\"}],\"isInner\":false},{\"id\":\"5fe9337d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3ef24939\",\"elType\":\"widget\",\"settings\":{\"address\":\"London Eye, London, United Kingdom\",\"height\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":310,\"sizes\":[]},\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1536e561\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"25\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/13-copy.jpg\"},\"background_repeat\":\"repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002,\"sizes\":[]},\"shape_divider_top\":\"tilt\",\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":123,\"sizes\":[]},\"shape_divider_top_flip\":\"yes\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=0a21634\",\"shape_divider_top_color\":\"globals\\/colors?id=50714e7\"},\"shape_divider_top_height_tablet\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"112fbb45\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3a01941a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Join Our Education center Now\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"},\"align_tablet\":\"center\",\"_margin_mobile\":{\"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},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3940173\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"28\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/c2.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":37.046999999999997},\"_position\":\"absolute\",\"_offset_x\":{\"size\":508,\"unit\":\"px\"},\"_offset_y\":{\"size\":-53,\"unit\":\"px\"},\"_z_index\":7,\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":89.066999999999993},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":30.067},\"_offset_x_tablet\":{\"size\":94,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":252,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-60,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":28,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5f0c4af0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"14\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/c4.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":12.92},\"_position\":\"absolute\",\"_offset_x\":{\"size\":1290,\"unit\":\"px\"},\"_offset_y\":{\"size\":347,\"unit\":\"px\"},\"_z_index\":7,\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":42.299999999999997},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":118.3},\"_offset_x_tablet\":{\"size\":586,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":-72,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-396,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-43,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"227f9b41\",\"elType\":\"widget\",\"settings\":{\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"},\"align_tablet\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2300f1eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Sign Up Now\",\"align\":\"left\",\"_z_index\":9,\"__globals__\":{\"background_color\":\"globals\\/colors?id=5425a2a\",\"button_background_hover_color\":\"globals\\/colors?id=7f7112a\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5b6664ef\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"26\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/edge3.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":18.638000000000002},\"_offset_x\":{\"size\":172,\"unit\":\"px\"},\"_offset_y\":{\"size\":331,\"unit\":\"px\"},\"_z_index\":7,\"_margin\":{\"unit\":\"%\",\"top\":\"-60\",\"right\":\"45\",\"bottom\":\"0\",\"left\":\"-45\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":39,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2cb0b5fd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"-150\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"50\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-160\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6b18a0f8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"46\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/cute-elementary-kids-with-books-at-school-2022-12-16-18-15-57-utc-copy.jpg\"},\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":\"51\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/liki.png\"},\"width_tablet\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":88,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6cc56122\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"57\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/cute-elementary-kids-with-books-at-school-2022-12-16-18-15-57-utc2.png\"},\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_position\":\"absolute\",\"width_tablet\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":88,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(611,132,'_elementor_page_assets','a:0:{}'),(612,138,'_edit_lock','1693978179:1'),(613,138,'_wp_page_template','elementor_header_footer'),(614,138,'_elementor_edit_mode','builder'),(615,138,'_elementor_template_type','wp-page'),(616,138,'_elementor_version','3.15.3'),(623,141,'_wp_page_template','elementor_header_footer'),(624,141,'_elementor_edit_mode','builder'),(625,141,'_elementor_template_type','wp-page'),(626,141,'_elementor_version','3.15.3'),(627,142,'_wp_page_template','elementor_header_footer'),(628,142,'_elementor_edit_mode','builder'),(629,142,'_elementor_template_type','wp-page'),(630,142,'_elementor_version','3.15.3'),(631,138,'_elementor_data','[{\"id\":\"5d0ecf80\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":\"7\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/2-copy.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"200\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"background_overlay_color\":\"globals\\/colors?id=ff9d88d\",\"shape_divider_bottom_color\":\"globals\\/colors?id=50714e7\"},\"shape_divider_bottom\":\"tilt\",\"shape_divider_bottom_flip\":\"yes\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_color\":\"#DC434C\",\"shape_divider_bottom_color\":\"#F8F8F8\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7f509542\",\"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\":\"3d74e2b2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Blog\",\"header_size\":\"h1\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b8ae158\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"14\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/c4.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":7.7080000000000002},\"_position\":\"absolute\",\"_offset_x\":{\"size\":359,\"unit\":\"px\"},\"_offset_x_tablet\":{\"size\":133,\"unit\":\"px\"},\"_offset_y\":{\"size\":-48,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-27,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":42,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-18,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8f847fc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"15\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/c3.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":2.7629999999999999},\"_position\":\"absolute\",\"_offset_x\":{\"size\":428,\"unit\":\"px\"},\"_offset_x_tablet\":{\"size\":177,\"unit\":\"px\"},\"_offset_y\":{\"size\":61,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":41,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":58,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":17,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"bf1329b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"17\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/edge.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":5.8129999999999997},\"_position\":\"absolute\",\"_offset_x\":{\"size\":765,\"unit\":\"px\"},\"_offset_x_tablet\":{\"size\":518,\"unit\":\"px\"},\"_offset_y\":{\"size\":-18,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-14,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":291,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-3,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5f7ca6b0\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=50714e7\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"82\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"b853407\",\"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},\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"23cd0128\",\"elType\":\"widget\",\"settings\":{\"title\":\"Articles & Stories\",\"align\":\"center\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"53705dbd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"15\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/c3.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":4.7309999999999999},\"_position\":\"absolute\",\"_offset_x\":{\"size\":886,\"unit\":\"px\"},\"_offset_y\":{\"size\":19,\"unit\":\"px\"},\"_z_index\":7,\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":45.517000000000003},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":130.517},\"_offset_x_tablet\":{\"size\":536,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":-90,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":34,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":0,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"65defb1b\",\"elType\":\"widget\",\"settings\":{\"ekit_blog_posts_layout_style\":\"elementskit-post-image-card\",\"ekit_blog_posts_btn_text\":\"read more \",\"ekit_blog_posts_cats\":[\"1\"],\"ekit_blog_posts_floating_date\":\"yes\",\"ekit_blog_posts_floating_date_style\":\"style2\",\"ekit_blog_posts_floating_category\":\"\",\"ekit_blog_posts_meta\":\"\",\"ekit_blog_posts_background_background\":\"classic\",\"ekit_blog_posts_background_color\":\"#FFFFFF\",\"ekit_blog_posts_shadow_box_shadow_type\":\"yes\",\"ekit_blog_posts_shadow_box_shadow\":{\"horizontal\":9,\"vertical\":23,\"blur\":26,\"spread\":-8,\"color\":\"rgba(0, 0, 0, 0.07)\"},\"ekit_blog_posts_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_blog_posts_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_text_content_wraper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"ekit_blog_posts_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"ekit_blog_posts_content_background\":\"#FFFFFF\",\"ekit_blog_posts_feature_img_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_feature_img_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_feature_img_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_floating_date_bottom_pos\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"ekit_blog_posts_floating_date_bg_color_group_background\":\"classic\",\"ekit_blog_posts_floating_date_bg_color_group_color\":\"#BB8FF7\",\"ekit_blog_posts_floating_date_triangle_color\":\"#B279FF\",\"ekit_blog_posts_title_typography_typography\":\"custom\",\"ekit_blog_posts_title_typography_font_family\":\"Roboto\",\"ekit_blog_posts_title_typography_font_size\":{\"unit\":\"rem\",\"size\":1.2,\"sizes\":[]},\"ekit_blog_posts_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_blog_posts_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2,\"sizes\":[]},\"ekit_blog_posts_title_typography_font_weight\":\"500\",\"ekit_blog_posts_title_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_blog_posts_title_color\":\"#062233\",\"ekit_blog_posts_title_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_content_color\":\"#484848\",\"ekit_blog_posts_btn_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_btn_bg_color_background\":\"classic\",\"ekit_blog_posts_btn_bg_color_color\":\"#FFFFFF00\",\"__globals__\":{\"ekit_blog_posts_content_background\":\"globals\\/colors?id=eb507f3\",\"ekit_blog_posts_title_typography_typography\":\"globals\\/typography?id=64a9188\",\"ekit_blog_posts_title_color\":\"globals\\/colors?id=3f37fea\",\"ekit_blog_posts_content_color\":\"globals\\/colors?id=text\",\"ekit_blog_posts_background_color\":\"globals\\/colors?id=secondary\",\"ekit_blog_posts_border_color\":\"\",\"ekit_blog_posts_floating_date_bg_color_group_color\":\"globals\\/colors?id=0a21634\",\"ekit_blog_posts_floating_date_triangle_color\":\"globals\\/colors?id=3f37fea\",\"ekit_blog_posts_btn_text_color\":\"globals\\/colors?id=0a21634\",\"ekit_blog_posts_btn_bg_color_color\":\"globals\\/colors?id=eb507f3\",\"ekit_blog_posts_content_typography_typography\":\"globals\\/typography?id=f8cdd91\",\"ekit_blog_posts_btn_hover_color\":\"globals\\/colors?id=4b29dee\"},\"ekit_blog_posts_floating_date_triangle_position_left\":{\"unit\":\"%\",\"size\":1,\"sizes\":[]},\"ekit_blog_posts_floating_date_triangle_position_top\":{\"unit\":\"px\",\"size\":-9,\"sizes\":[]},\"ekit_blog_posts_num\":6,\"_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"elementskit-blog-posts\"},{\"id\":\"b31ce03\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"19\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/c1.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":12.685},\"_position\":\"absolute\",\"_offset_x\":{\"size\":959,\"unit\":\"px\"},\"_offset_y\":{\"size\":-122,\"unit\":\"px\"},\"_z_index\":7,\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":116.93300000000001},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":38.933},\"_offset_x_tablet\":{\"size\":547,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":21,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-98,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-46,\"unit\":\"px\"},\"_z_index_mobile\":1},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"169b2658\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"25\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/13-copy.jpg\"},\"background_repeat\":\"repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002,\"sizes\":[]},\"shape_divider_top\":\"tilt\",\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":123,\"sizes\":[]},\"shape_divider_top_flip\":\"yes\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=0a21634\",\"shape_divider_top_color\":\"globals\\/colors?id=50714e7\"},\"shape_divider_top_height_tablet\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"35df5b40\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"63e9315d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Join Our Education center Now\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"},\"align_tablet\":\"center\",\"_margin_mobile\":{\"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},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5cb65e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"28\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/c2.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":37.046999999999997},\"_position\":\"absolute\",\"_offset_x\":{\"size\":508,\"unit\":\"px\"},\"_offset_y\":{\"size\":-53,\"unit\":\"px\"},\"_z_index\":7,\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":89.066999999999993},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":30.067},\"_offset_x_tablet\":{\"size\":94,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":252,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-60,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":28,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3b7aa5d4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"14\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/c4.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":12.92},\"_position\":\"absolute\",\"_offset_x\":{\"size\":1290,\"unit\":\"px\"},\"_offset_y\":{\"size\":347,\"unit\":\"px\"},\"_z_index\":7,\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":42.299999999999997},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":118.3},\"_offset_x_tablet\":{\"size\":586,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":-72,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-396,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-43,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"467ed2fb\",\"elType\":\"widget\",\"settings\":{\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"},\"align_tablet\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5d44513f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Sign Up Now\",\"align\":\"left\",\"_z_index\":9,\"__globals__\":{\"background_color\":\"globals\\/colors?id=5425a2a\",\"button_background_hover_color\":\"globals\\/colors?id=7f7112a\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"78c175fd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"26\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/edge3.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":18.638000000000002},\"_offset_x\":{\"size\":172,\"unit\":\"px\"},\"_offset_y\":{\"size\":331,\"unit\":\"px\"},\"_z_index\":7,\"_margin\":{\"unit\":\"%\",\"top\":\"-60\",\"right\":\"45\",\"bottom\":\"0\",\"left\":\"-45\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":39,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"76cee28e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"-150\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"50\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-160\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"182b471e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"46\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/cute-elementary-kids-with-books-at-school-2022-12-16-18-15-57-utc-copy.jpg\"},\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":\"51\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/liki.png\"},\"width_tablet\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":88,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b35976b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"57\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/cute-elementary-kids-with-books-at-school-2022-12-16-18-15-57-utc2.png\"},\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_position\":\"absolute\",\"width_tablet\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":88,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(632,143,'_wp_page_template','elementor_header_footer'),(633,143,'_elementor_edit_mode','builder'),(634,143,'_elementor_template_type','wp-page'),(635,143,'_elementor_version','3.15.3'),(636,143,'_elementor_data','[{\"id\":\"5d0ecf80\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":\"7\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/2-copy.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"200\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"background_overlay_color\":\"globals\\/colors?id=ff9d88d\",\"shape_divider_bottom_color\":\"globals\\/colors?id=50714e7\"},\"shape_divider_bottom\":\"tilt\",\"shape_divider_bottom_flip\":\"yes\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_color\":\"#DC434C\",\"shape_divider_bottom_color\":\"#F8F8F8\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7f509542\",\"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\":\"3d74e2b2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Blog\",\"header_size\":\"h1\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b8ae158\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"14\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/c4.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":7.7080000000000002},\"_position\":\"absolute\",\"_offset_x\":{\"size\":359,\"unit\":\"px\"},\"_offset_x_tablet\":{\"size\":133,\"unit\":\"px\"},\"_offset_y\":{\"size\":-48,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-27,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":42,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-18,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8f847fc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"15\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/c3.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":2.7629999999999999},\"_position\":\"absolute\",\"_offset_x\":{\"size\":428,\"unit\":\"px\"},\"_offset_x_tablet\":{\"size\":177,\"unit\":\"px\"},\"_offset_y\":{\"size\":61,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":41,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":58,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":17,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"bf1329b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"17\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/edge.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":5.8129999999999997},\"_position\":\"absolute\",\"_offset_x\":{\"size\":765,\"unit\":\"px\"},\"_offset_x_tablet\":{\"size\":518,\"unit\":\"px\"},\"_offset_y\":{\"size\":-18,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-14,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":291,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-3,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5f7ca6b0\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=50714e7\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"82\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"b853407\",\"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},\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"23cd0128\",\"elType\":\"widget\",\"settings\":{\"title\":\"Articles & Stories\",\"align\":\"center\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"53705dbd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"15\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/c3.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":4.7309999999999999},\"_position\":\"absolute\",\"_offset_x\":{\"size\":886,\"unit\":\"px\"},\"_offset_y\":{\"size\":19,\"unit\":\"px\"},\"_z_index\":7,\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":45.517000000000003},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":130.517},\"_offset_x_tablet\":{\"size\":536,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":-90,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":34,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":0,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"65defb1b\",\"elType\":\"widget\",\"settings\":{\"ekit_blog_posts_layout_style\":\"elementskit-post-image-card\",\"ekit_blog_posts_btn_text\":\"read more \",\"ekit_blog_posts_cats\":[\"1\"],\"ekit_blog_posts_floating_date\":\"yes\",\"ekit_blog_posts_floating_date_style\":\"style2\",\"ekit_blog_posts_floating_category\":\"\",\"ekit_blog_posts_meta\":\"\",\"ekit_blog_posts_background_background\":\"classic\",\"ekit_blog_posts_background_color\":\"#FFFFFF\",\"ekit_blog_posts_shadow_box_shadow_type\":\"yes\",\"ekit_blog_posts_shadow_box_shadow\":{\"horizontal\":9,\"vertical\":23,\"blur\":26,\"spread\":-8,\"color\":\"rgba(0, 0, 0, 0.07)\"},\"ekit_blog_posts_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_blog_posts_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_text_content_wraper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"ekit_blog_posts_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"ekit_blog_posts_content_background\":\"#FFFFFF\",\"ekit_blog_posts_feature_img_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_feature_img_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_feature_img_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_floating_date_bottom_pos\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"ekit_blog_posts_floating_date_bg_color_group_background\":\"classic\",\"ekit_blog_posts_floating_date_bg_color_group_color\":\"#BB8FF7\",\"ekit_blog_posts_floating_date_triangle_color\":\"#B279FF\",\"ekit_blog_posts_title_typography_typography\":\"custom\",\"ekit_blog_posts_title_typography_font_family\":\"Roboto\",\"ekit_blog_posts_title_typography_font_size\":{\"unit\":\"rem\",\"size\":1.2,\"sizes\":[]},\"ekit_blog_posts_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_blog_posts_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2,\"sizes\":[]},\"ekit_blog_posts_title_typography_font_weight\":\"500\",\"ekit_blog_posts_title_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_blog_posts_title_color\":\"#062233\",\"ekit_blog_posts_title_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_content_color\":\"#484848\",\"ekit_blog_posts_btn_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_btn_bg_color_background\":\"classic\",\"ekit_blog_posts_btn_bg_color_color\":\"#FFFFFF00\",\"__globals__\":{\"ekit_blog_posts_content_background\":\"globals\\/colors?id=eb507f3\",\"ekit_blog_posts_title_typography_typography\":\"globals\\/typography?id=64a9188\",\"ekit_blog_posts_title_color\":\"globals\\/colors?id=3f37fea\",\"ekit_blog_posts_content_color\":\"globals\\/colors?id=text\",\"ekit_blog_posts_background_color\":\"globals\\/colors?id=secondary\",\"ekit_blog_posts_border_color\":\"\",\"ekit_blog_posts_floating_date_bg_color_group_color\":\"globals\\/colors?id=0a21634\",\"ekit_blog_posts_floating_date_triangle_color\":\"globals\\/colors?id=3f37fea\",\"ekit_blog_posts_btn_text_color\":\"globals\\/colors?id=0a21634\",\"ekit_blog_posts_btn_bg_color_color\":\"globals\\/colors?id=eb507f3\",\"ekit_blog_posts_content_typography_typography\":\"globals\\/typography?id=f8cdd91\",\"ekit_blog_posts_btn_hover_color\":\"globals\\/colors?id=4b29dee\"},\"ekit_blog_posts_floating_date_triangle_position_left\":{\"unit\":\"%\",\"size\":1,\"sizes\":[]},\"ekit_blog_posts_floating_date_triangle_position_top\":{\"unit\":\"px\",\"size\":-9,\"sizes\":[]},\"ekit_blog_posts_num\":6,\"_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"elementskit-blog-posts\"},{\"id\":\"b31ce03\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"19\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/c1.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":12.685},\"_position\":\"absolute\",\"_offset_x\":{\"size\":959,\"unit\":\"px\"},\"_offset_y\":{\"size\":-122,\"unit\":\"px\"},\"_z_index\":7,\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":116.93300000000001},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":38.933},\"_offset_x_tablet\":{\"size\":547,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":21,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-98,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-46,\"unit\":\"px\"},\"_z_index_mobile\":1},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"169b2658\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"25\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/13-copy.jpg\"},\"background_repeat\":\"repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002,\"sizes\":[]},\"shape_divider_top\":\"tilt\",\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":123,\"sizes\":[]},\"shape_divider_top_flip\":\"yes\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=0a21634\",\"shape_divider_top_color\":\"globals\\/colors?id=50714e7\"},\"shape_divider_top_height_tablet\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"35df5b40\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"63e9315d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Join Our Education center Now\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"},\"align_tablet\":\"center\",\"_margin_mobile\":{\"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},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5cb65e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"28\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/c2.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":37.046999999999997},\"_position\":\"absolute\",\"_offset_x\":{\"size\":508,\"unit\":\"px\"},\"_offset_y\":{\"size\":-53,\"unit\":\"px\"},\"_z_index\":7,\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":89.066999999999993},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":30.067},\"_offset_x_tablet\":{\"size\":94,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":252,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-60,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":28,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3b7aa5d4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"14\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/c4.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":12.92},\"_position\":\"absolute\",\"_offset_x\":{\"size\":1290,\"unit\":\"px\"},\"_offset_y\":{\"size\":347,\"unit\":\"px\"},\"_z_index\":7,\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":42.299999999999997},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":118.3},\"_offset_x_tablet\":{\"size\":586,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":-72,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-396,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-43,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"467ed2fb\",\"elType\":\"widget\",\"settings\":{\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"},\"align_tablet\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5d44513f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Sign Up Now\",\"align\":\"left\",\"_z_index\":9,\"__globals__\":{\"background_color\":\"globals\\/colors?id=5425a2a\",\"button_background_hover_color\":\"globals\\/colors?id=7f7112a\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"78c175fd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"26\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/edge3.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":18.638000000000002},\"_offset_x\":{\"size\":172,\"unit\":\"px\"},\"_offset_y\":{\"size\":331,\"unit\":\"px\"},\"_z_index\":7,\"_margin\":{\"unit\":\"%\",\"top\":\"-60\",\"right\":\"45\",\"bottom\":\"0\",\"left\":\"-45\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":39,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"76cee28e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"-150\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"50\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-160\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"182b471e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"46\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/cute-elementary-kids-with-books-at-school-2022-12-16-18-15-57-utc-copy.jpg\"},\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":\"51\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/liki.png\"},\"width_tablet\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":88,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b35976b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"57\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/cute-elementary-kids-with-books-at-school-2022-12-16-18-15-57-utc2.png\"},\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_position\":\"absolute\",\"width_tablet\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":88,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(637,138,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(638,144,'_edit_lock','1693979809:1'),(639,144,'_wp_page_template','elementor_header_footer'),(640,144,'_elementor_edit_mode','builder'),(641,144,'_elementor_template_type','wp-page'),(642,144,'_elementor_version','3.15.3'),(644,78,'ekit_post_views_count','1'),(646,82,'ekit_post_views_count','1'),(653,147,'_wp_page_template','elementor_header_footer'),(654,147,'_elementor_edit_mode','builder'),(655,147,'_elementor_template_type','wp-page'),(656,147,'_elementor_version','3.15.3'),(657,148,'_wp_page_template','elementor_header_footer'),(658,148,'_elementor_edit_mode','builder'),(659,148,'_elementor_template_type','wp-page'),(660,148,'_elementor_version','3.15.3'),(661,144,'_elementor_data','[{\"id\":\"4be75310\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":\"7\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/2-copy.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"200\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"background_overlay_color\":\"\",\"shape_divider_bottom_color\":\"globals\\/colors?id=a00e83d\"},\"shape_divider_bottom\":\"tilt\",\"shape_divider_bottom_flip\":\"yes\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"background_overlay_color\":\"#DC434C\",\"shape_divider_bottom_color\":\"#E6F2F2\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b52f91d\",\"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\":\"559d23cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"E-Magazine\",\"header_size\":\"h1\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8372ec7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"14\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/c4.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":7.7080000000000002},\"_position\":\"absolute\",\"_offset_x\":{\"size\":231,\"unit\":\"px\"},\"_offset_x_tablet\":{\"size\":94,\"unit\":\"px\"},\"_offset_y\":{\"size\":-64,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-42,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":7,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-30,\"unit\":\"px\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":44.366999999999997}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20b6d4b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"15\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/c3.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":2.7629999999999999},\"_position\":\"absolute\",\"_offset_x\":{\"size\":294,\"unit\":\"px\"},\"_offset_x_tablet\":{\"size\":138,\"unit\":\"px\"},\"_offset_y\":{\"size\":37,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":27,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":30,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":133,\"unit\":\"px\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":20.367000000000001}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"79c8c942\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"17\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/edge.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":5.8129999999999997},\"_position\":\"absolute\",\"_offset_x\":{\"size\":905,\"unit\":\"px\"},\"_offset_x_tablet\":{\"size\":565,\"unit\":\"px\"},\"_offset_y\":{\"size\":-34,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-22,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":234,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":0,\"unit\":\"px\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":47.616999999999997}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a19995a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=a00e83d\"}},\"elements\":[{\"id\":\"1817a524\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"background_background\":\"classic\",\"background_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/portrait-of-happy-caucasian-boy-standing-at-chalkb-2021-09-03-06-28-24-utc-copy.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"45\",\"left\":\"20\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":28,\"blur\":28,\"spread\":-14,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"__globals__\":{\"border_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[{\"id\":\"5db990da\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":415,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"17563251\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"15\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/c3.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":18.891999999999999},\"_position\":\"absolute\",\"_offset_x\":{\"size\":1105,\"unit\":\"px\"},\"_offset_y\":{\"size\":-56,\"unit\":\"px\"},\"_z_index\":7,\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":33.216999999999999},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":21.216999999999999},\"_offset_x_tablet\":{\"size\":111,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":272,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":100,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":75,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6f7f694f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"%\",\"top\":\"8\",\"right\":\"10\",\"bottom\":\"8\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"content_position\":\"center\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":20,\"blur\":45,\"spread\":-10,\"color\":\"rgba(0, 0, 0, 0.12)\"},\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"255055e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Mathematic  Class\",\"align_tablet\":\"center\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"90\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1438bc28\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam vitae iaculis lorem, non finibus arcu. Nullam sed ligula sapien. Aliquam vulputate justo sem, nec tincidunt odio gravida vitae. Nunc porta finibus pellentesque.<\\/p><p>Vestibulum ipsum elit, condimentum vitae dapibus vel, interdum in urna. Aliquam semper vitae lacus eu elementum. <\\/p>\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"43d9d47d\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=a00e83d\"}},\"elements\":[{\"id\":\"6303c60c\",\"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\":\"503e2f0e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Etiam cursus commodo ante vitae faucibus. Aliquam faucibus, mauris ut aliquet dignissim, turpis ipsum efficitur dui, quis efficitur tellus magna non metus. Fusce tempus justo nisi, non varius justo aliquet quis. Phasellus interdum lectus mattis mauris suscipit ultrices. Phasellus ac vulputate lectus. Nunc sit amet dapibus odio, nec aliquam sem. Etiam pretium mollis nulla, ac ultrices leo tincidunt vitae.<\\/p>\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1b649256\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"3e03496d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"_inline_size_tablet\":50,\"content_position\":\"center\",\"align_tablet\":\"center\",\"background_background\":\"classic\",\"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},\"__globals__\":{\"background_color\":\"globals\\/colors?id=5425a2a\"}},\"elements\":[{\"id\":\"3d4c645b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Group 1 Schedule \",\"header_size\":\"h5\",\"align_tablet\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2e3a4cc6\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Friday,       11am-6pm\",\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"ed8911f\"},{\"text\":\"Saturday,  10am-7pm\",\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"099c7e0\"},{\"text\":\"Sunday,   11am-5pm\",\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"aa4a2f9\"}],\"space_between\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"__globals__\":{\"icon_color\":\"globals\\/colors?id=secondary\",\"text_color\":\"globals\\/colors?id=secondary\"},\"_element_width_tablet\":\"auto\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"2287f7b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"90\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"_inline_size_tablet\":50,\"content_position\":\"center\",\"align_tablet\":\"center\",\"background_background\":\"classic\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=0a21634\"}},\"elements\":[{\"id\":\"22a15590\",\"elType\":\"widget\",\"settings\":{\"title\":\"Group 2 Schedule \",\"header_size\":\"h5\",\"align_tablet\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7cde6432\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Monday,       11am-6pm\",\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"ed8911f\"},{\"text\":\"Tuesday,  10am-7pm\",\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"099c7e0\"},{\"text\":\"Wednesday,   11am-5pm\",\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"aa4a2f9\"}],\"space_between\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"__globals__\":{\"icon_color\":\"globals\\/colors?id=secondary\",\"text_color\":\"globals\\/colors?id=secondary\"},\"_element_width_tablet\":\"auto\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"4648dad\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"212885f9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"44\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/pp3.jpg\"},\"width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":20,\"blur\":20,\"spread\":-10,\"color\":\"rgba(0, 0, 0, 0.09)\"},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_mask_image\":{\"id\":\"52\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/hex2.png\"},\"width_tablet\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"18\",\"left\":\"9\",\"isLinked\":false},\"jkit_transform_rotate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"181ea66e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Peter Wong\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\"},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"60d818aa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Math Teacher\",\"header_size\":\"h5\",\"align\":\"center\",\"_margin\":{\"unit\":\"%\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=24b2df3\",\"title_color\":\"globals\\/colors?id=5425a2a\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5c293f96\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"25\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/13-copy.jpg\"},\"background_repeat\":\"repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002,\"sizes\":[]},\"shape_divider_top\":\"tilt\",\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":123,\"sizes\":[]},\"shape_divider_top_flip\":\"yes\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=0a21634\",\"shape_divider_top_color\":\"globals\\/colors?id=a00e83d\"},\"shape_divider_top_height_tablet\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"274a630e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"42b78e0d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Join Our Education center Now\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"},\"align_tablet\":\"center\",\"_margin_mobile\":{\"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},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ab984d3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"28\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/c2.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":37.046999999999997},\"_position\":\"absolute\",\"_offset_x\":{\"size\":508,\"unit\":\"px\"},\"_offset_y\":{\"size\":-53,\"unit\":\"px\"},\"_z_index\":7,\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":89.066999999999993},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":30.067},\"_offset_x_tablet\":{\"size\":94,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":252,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-60,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":28,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"55265c6f\",\"elType\":\"widget\",\"settings\":{\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"},\"align_tablet\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5d77a103\",\"elType\":\"widget\",\"settings\":{\"text\":\"Sign Up Now\",\"align\":\"left\",\"_z_index\":9,\"__globals__\":{\"background_color\":\"globals\\/colors?id=5425a2a\",\"button_background_hover_color\":\"globals\\/colors?id=7f7112a\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"67bff81\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"26\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/edge3.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":18.638000000000002},\"_offset_x\":{\"size\":172,\"unit\":\"px\"},\"_offset_y\":{\"size\":331,\"unit\":\"px\"},\"_z_index\":7,\"_margin\":{\"unit\":\"%\",\"top\":\"-60\",\"right\":\"45\",\"bottom\":\"0\",\"left\":\"-45\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":39,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"e8b722c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"-150\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"50\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-160\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"491cbf3e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"46\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/cute-elementary-kids-with-books-at-school-2022-12-16-18-15-57-utc-copy.jpg\"},\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":\"51\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/liki.png\"},\"width_tablet\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":88,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"70a8c8e5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"57\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/cute-elementary-kids-with-books-at-school-2022-12-16-18-15-57-utc2.png\"},\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_position\":\"absolute\",\"width_tablet\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":88,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(662,149,'_wp_page_template','elementor_header_footer'),(663,149,'_elementor_edit_mode','builder'),(664,149,'_elementor_template_type','wp-page'),(665,149,'_elementor_version','3.15.3'),(666,149,'_elementor_data','[{\"id\":\"4be75310\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":\"7\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/2-copy.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"200\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"background_overlay_color\":\"globals\\/colors?id=ff9d88d\",\"shape_divider_bottom_color\":\"globals\\/colors?id=a00e83d\"},\"shape_divider_bottom\":\"tilt\",\"shape_divider_bottom_flip\":\"yes\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"background_overlay_color\":\"#DC434C\",\"shape_divider_bottom_color\":\"#F8F8F8\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b52f91d\",\"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\":\"559d23cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Class-Detail\",\"header_size\":\"h1\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8372ec7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"14\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/c4.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":7.7080000000000002},\"_position\":\"absolute\",\"_offset_x\":{\"size\":231,\"unit\":\"px\"},\"_offset_x_tablet\":{\"size\":94,\"unit\":\"px\"},\"_offset_y\":{\"size\":-64,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-42,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":7,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-30,\"unit\":\"px\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":44.366999999999997}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20b6d4b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"15\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/c3.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":2.7629999999999999},\"_position\":\"absolute\",\"_offset_x\":{\"size\":294,\"unit\":\"px\"},\"_offset_x_tablet\":{\"size\":138,\"unit\":\"px\"},\"_offset_y\":{\"size\":37,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":27,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":30,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":133,\"unit\":\"px\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":20.367000000000001}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"79c8c942\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"17\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/edge.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":5.8129999999999997},\"_position\":\"absolute\",\"_offset_x\":{\"size\":905,\"unit\":\"px\"},\"_offset_x_tablet\":{\"size\":565,\"unit\":\"px\"},\"_offset_y\":{\"size\":-34,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-22,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":234,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":0,\"unit\":\"px\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":47.616999999999997}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a19995a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=a00e83d\"}},\"elements\":[{\"id\":\"1817a524\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"background_background\":\"classic\",\"background_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/portrait-of-happy-caucasian-boy-standing-at-chalkb-2021-09-03-06-28-24-utc-copy.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"45\",\"left\":\"20\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":28,\"blur\":28,\"spread\":-14,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"__globals__\":{\"border_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[{\"id\":\"5db990da\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":415,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"17563251\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"15\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/c3.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":18.891999999999999},\"_position\":\"absolute\",\"_offset_x\":{\"size\":1105,\"unit\":\"px\"},\"_offset_y\":{\"size\":-56,\"unit\":\"px\"},\"_z_index\":7,\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":33.216999999999999},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":21.216999999999999},\"_offset_x_tablet\":{\"size\":111,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":272,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":100,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":75,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6f7f694f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"%\",\"top\":\"8\",\"right\":\"10\",\"bottom\":\"8\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"content_position\":\"center\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":20,\"blur\":45,\"spread\":-10,\"color\":\"rgba(0, 0, 0, 0.12)\"},\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"255055e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Mathematic  Class\",\"align_tablet\":\"center\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"90\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1438bc28\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam vitae iaculis lorem, non finibus arcu. Nullam sed ligula sapien. Aliquam vulputate justo sem, nec tincidunt odio gravida vitae. Nunc porta finibus pellentesque.<\\/p><p>Vestibulum ipsum elit, condimentum vitae dapibus vel, interdum in urna. Aliquam semper vitae lacus eu elementum. <\\/p>\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"43d9d47d\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=a00e83d\"}},\"elements\":[{\"id\":\"6303c60c\",\"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\":\"503e2f0e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Etiam cursus commodo ante vitae faucibus. Aliquam faucibus, mauris ut aliquet dignissim, turpis ipsum efficitur dui, quis efficitur tellus magna non metus. Fusce tempus justo nisi, non varius justo aliquet quis. Phasellus interdum lectus mattis mauris suscipit ultrices. Phasellus ac vulputate lectus. Nunc sit amet dapibus odio, nec aliquam sem. Etiam pretium mollis nulla, ac ultrices leo tincidunt vitae.<\\/p>\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1b649256\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"3e03496d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"_inline_size_tablet\":50,\"content_position\":\"center\",\"align_tablet\":\"center\",\"background_background\":\"classic\",\"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},\"__globals__\":{\"background_color\":\"globals\\/colors?id=5425a2a\"}},\"elements\":[{\"id\":\"3d4c645b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Group 1 Schedule \",\"header_size\":\"h5\",\"align_tablet\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2e3a4cc6\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Friday,       11am-6pm\",\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"ed8911f\"},{\"text\":\"Saturday,  10am-7pm\",\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"099c7e0\"},{\"text\":\"Sunday,   11am-5pm\",\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"aa4a2f9\"}],\"space_between\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"__globals__\":{\"icon_color\":\"globals\\/colors?id=secondary\",\"text_color\":\"globals\\/colors?id=secondary\"},\"_element_width_tablet\":\"auto\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"2287f7b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"90\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"_inline_size_tablet\":50,\"content_position\":\"center\",\"align_tablet\":\"center\",\"background_background\":\"classic\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=0a21634\"}},\"elements\":[{\"id\":\"22a15590\",\"elType\":\"widget\",\"settings\":{\"title\":\"Group 2 Schedule \",\"header_size\":\"h5\",\"align_tablet\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7cde6432\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Monday,       11am-6pm\",\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"ed8911f\"},{\"text\":\"Tuesday,  10am-7pm\",\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"099c7e0\"},{\"text\":\"Wednesday,   11am-5pm\",\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"aa4a2f9\"}],\"space_between\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"__globals__\":{\"icon_color\":\"globals\\/colors?id=secondary\",\"text_color\":\"globals\\/colors?id=secondary\"},\"_element_width_tablet\":\"auto\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"4648dad\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"212885f9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"44\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/pp3.jpg\"},\"width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":20,\"blur\":20,\"spread\":-10,\"color\":\"rgba(0, 0, 0, 0.09)\"},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_mask_image\":{\"id\":\"52\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/hex2.png\"},\"width_tablet\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"18\",\"left\":\"9\",\"isLinked\":false},\"jkit_transform_rotate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"181ea66e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Peter Wong\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\"},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"60d818aa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Math Teacher\",\"header_size\":\"h5\",\"align\":\"center\",\"_margin\":{\"unit\":\"%\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=24b2df3\",\"title_color\":\"globals\\/colors?id=5425a2a\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5c293f96\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"25\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/13-copy.jpg\"},\"background_repeat\":\"repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002,\"sizes\":[]},\"shape_divider_top\":\"tilt\",\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":123,\"sizes\":[]},\"shape_divider_top_flip\":\"yes\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=0a21634\",\"shape_divider_top_color\":\"globals\\/colors?id=a00e83d\"},\"shape_divider_top_height_tablet\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"274a630e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"42b78e0d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Join Our Education center Now\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"},\"align_tablet\":\"center\",\"_margin_mobile\":{\"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},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ab984d3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"28\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/c2.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":37.046999999999997},\"_position\":\"absolute\",\"_offset_x\":{\"size\":508,\"unit\":\"px\"},\"_offset_y\":{\"size\":-53,\"unit\":\"px\"},\"_z_index\":7,\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":89.066999999999993},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":30.067},\"_offset_x_tablet\":{\"size\":94,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":252,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-60,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":28,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"55265c6f\",\"elType\":\"widget\",\"settings\":{\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"},\"align_tablet\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5d77a103\",\"elType\":\"widget\",\"settings\":{\"text\":\"Sign Up Now\",\"align\":\"left\",\"_z_index\":9,\"__globals__\":{\"background_color\":\"globals\\/colors?id=5425a2a\",\"button_background_hover_color\":\"globals\\/colors?id=7f7112a\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"67bff81\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"26\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/edge3.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":18.638000000000002},\"_offset_x\":{\"size\":172,\"unit\":\"px\"},\"_offset_y\":{\"size\":331,\"unit\":\"px\"},\"_z_index\":7,\"_margin\":{\"unit\":\"%\",\"top\":\"-60\",\"right\":\"45\",\"bottom\":\"0\",\"left\":\"-45\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":39,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"e8b722c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"-150\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"50\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-160\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"491cbf3e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"46\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/cute-elementary-kids-with-books-at-school-2022-12-16-18-15-57-utc-copy.jpg\"},\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":\"51\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/liki.png\"},\"width_tablet\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":88,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"70a8c8e5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"57\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/cute-elementary-kids-with-books-at-school-2022-12-16-18-15-57-utc2.png\"},\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_position\":\"absolute\",\"width_tablet\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":88,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(667,144,'_elementor_page_assets','a:0:{}'),(674,151,'_wp_page_template','elementor_header_footer'),(675,151,'_elementor_edit_mode','builder'),(676,151,'_elementor_template_type','wp-page'),(677,151,'_elementor_version','3.15.3'),(678,151,'_elementor_data','[{\"id\":\"4be75310\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":\"7\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/2-copy.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"200\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"background_overlay_color\":\"globals\\/colors?id=ff9d88d\",\"shape_divider_bottom_color\":\"globals\\/colors?id=a00e83d\"},\"shape_divider_bottom\":\"tilt\",\"shape_divider_bottom_flip\":\"yes\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"background_overlay_color\":\"#DC434C\",\"shape_divider_bottom_color\":\"#F8F8F8\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b52f91d\",\"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\":\"559d23cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Class-Detail\",\"header_size\":\"h1\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8372ec7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"14\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/c4.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":7.7080000000000002},\"_position\":\"absolute\",\"_offset_x\":{\"size\":231,\"unit\":\"px\"},\"_offset_x_tablet\":{\"size\":94,\"unit\":\"px\"},\"_offset_y\":{\"size\":-64,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-42,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":7,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-30,\"unit\":\"px\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":44.366999999999997}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20b6d4b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"15\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/c3.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":2.7629999999999999},\"_position\":\"absolute\",\"_offset_x\":{\"size\":294,\"unit\":\"px\"},\"_offset_x_tablet\":{\"size\":138,\"unit\":\"px\"},\"_offset_y\":{\"size\":37,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":27,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":30,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":133,\"unit\":\"px\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":20.367000000000001}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"79c8c942\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"17\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/edge.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":5.8129999999999997},\"_position\":\"absolute\",\"_offset_x\":{\"size\":905,\"unit\":\"px\"},\"_offset_x_tablet\":{\"size\":565,\"unit\":\"px\"},\"_offset_y\":{\"size\":-34,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-22,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":234,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":0,\"unit\":\"px\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":47.616999999999997}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a19995a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=a00e83d\"}},\"elements\":[{\"id\":\"1817a524\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"background_background\":\"classic\",\"background_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/portrait-of-happy-caucasian-boy-standing-at-chalkb-2021-09-03-06-28-24-utc-copy.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"45\",\"left\":\"20\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":28,\"blur\":28,\"spread\":-14,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"__globals__\":{\"border_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[{\"id\":\"5db990da\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":415,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"17563251\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"15\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/c3.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":18.891999999999999},\"_position\":\"absolute\",\"_offset_x\":{\"size\":1105,\"unit\":\"px\"},\"_offset_y\":{\"size\":-56,\"unit\":\"px\"},\"_z_index\":7,\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":33.216999999999999},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":21.216999999999999},\"_offset_x_tablet\":{\"size\":111,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":272,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":100,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":75,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6f7f694f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"%\",\"top\":\"8\",\"right\":\"10\",\"bottom\":\"8\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"content_position\":\"center\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":20,\"blur\":45,\"spread\":-10,\"color\":\"rgba(0, 0, 0, 0.12)\"},\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"255055e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Mathematic  Class\",\"align_tablet\":\"center\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"90\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1438bc28\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam vitae iaculis lorem, non finibus arcu. Nullam sed ligula sapien. Aliquam vulputate justo sem, nec tincidunt odio gravida vitae. Nunc porta finibus pellentesque.<\\/p><p>Vestibulum ipsum elit, condimentum vitae dapibus vel, interdum in urna. Aliquam semper vitae lacus eu elementum. <\\/p>\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"43d9d47d\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=a00e83d\"}},\"elements\":[{\"id\":\"6303c60c\",\"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\":\"503e2f0e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Etiam cursus commodo ante vitae faucibus. Aliquam faucibus, mauris ut aliquet dignissim, turpis ipsum efficitur dui, quis efficitur tellus magna non metus. Fusce tempus justo nisi, non varius justo aliquet quis. Phasellus interdum lectus mattis mauris suscipit ultrices. Phasellus ac vulputate lectus. Nunc sit amet dapibus odio, nec aliquam sem. Etiam pretium mollis nulla, ac ultrices leo tincidunt vitae.<\\/p>\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1b649256\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"3e03496d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"_inline_size_tablet\":50,\"content_position\":\"center\",\"align_tablet\":\"center\",\"background_background\":\"classic\",\"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},\"__globals__\":{\"background_color\":\"globals\\/colors?id=5425a2a\"}},\"elements\":[{\"id\":\"3d4c645b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Group 1 Schedule \",\"header_size\":\"h5\",\"align_tablet\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2e3a4cc6\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Friday,       11am-6pm\",\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"ed8911f\"},{\"text\":\"Saturday,  10am-7pm\",\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"099c7e0\"},{\"text\":\"Sunday,   11am-5pm\",\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"aa4a2f9\"}],\"space_between\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"__globals__\":{\"icon_color\":\"globals\\/colors?id=secondary\",\"text_color\":\"globals\\/colors?id=secondary\"},\"_element_width_tablet\":\"auto\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"2287f7b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"90\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"_inline_size_tablet\":50,\"content_position\":\"center\",\"align_tablet\":\"center\",\"background_background\":\"classic\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=0a21634\"}},\"elements\":[{\"id\":\"22a15590\",\"elType\":\"widget\",\"settings\":{\"title\":\"Group 2 Schedule \",\"header_size\":\"h5\",\"align_tablet\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7cde6432\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Monday,       11am-6pm\",\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"ed8911f\"},{\"text\":\"Tuesday,  10am-7pm\",\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"099c7e0\"},{\"text\":\"Wednesday,   11am-5pm\",\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"aa4a2f9\"}],\"space_between\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"__globals__\":{\"icon_color\":\"globals\\/colors?id=secondary\",\"text_color\":\"globals\\/colors?id=secondary\"},\"_element_width_tablet\":\"auto\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"4648dad\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"212885f9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"44\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/pp3.jpg\"},\"width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":20,\"blur\":20,\"spread\":-10,\"color\":\"rgba(0, 0, 0, 0.09)\"},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_mask_image\":{\"id\":\"52\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/hex2.png\"},\"width_tablet\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"18\",\"left\":\"9\",\"isLinked\":false},\"jkit_transform_rotate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"181ea66e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Peter Wong\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\"},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"60d818aa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Math Teacher\",\"header_size\":\"h5\",\"align\":\"center\",\"_margin\":{\"unit\":\"%\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=24b2df3\",\"title_color\":\"globals\\/colors?id=5425a2a\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5c293f96\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"25\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/13-copy.jpg\"},\"background_repeat\":\"repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002,\"sizes\":[]},\"shape_divider_top\":\"tilt\",\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":123,\"sizes\":[]},\"shape_divider_top_flip\":\"yes\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=0a21634\",\"shape_divider_top_color\":\"globals\\/colors?id=a00e83d\"},\"shape_divider_top_height_tablet\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"274a630e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"42b78e0d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Join Our Education center Now\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"},\"align_tablet\":\"center\",\"_margin_mobile\":{\"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},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ab984d3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"28\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/c2.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":37.046999999999997},\"_position\":\"absolute\",\"_offset_x\":{\"size\":508,\"unit\":\"px\"},\"_offset_y\":{\"size\":-53,\"unit\":\"px\"},\"_z_index\":7,\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":89.066999999999993},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":30.067},\"_offset_x_tablet\":{\"size\":94,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":252,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-60,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":28,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"55265c6f\",\"elType\":\"widget\",\"settings\":{\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"},\"align_tablet\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5d77a103\",\"elType\":\"widget\",\"settings\":{\"text\":\"Sign Up Now\",\"align\":\"left\",\"_z_index\":9,\"__globals__\":{\"background_color\":\"globals\\/colors?id=5425a2a\",\"button_background_hover_color\":\"globals\\/colors?id=7f7112a\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"67bff81\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"26\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/edge3.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":18.638000000000002},\"_offset_x\":{\"size\":172,\"unit\":\"px\"},\"_offset_y\":{\"size\":331,\"unit\":\"px\"},\"_z_index\":7,\"_margin\":{\"unit\":\"%\",\"top\":\"-60\",\"right\":\"45\",\"bottom\":\"0\",\"left\":\"-45\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":39,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"e8b722c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"-150\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"50\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-160\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"491cbf3e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"46\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/cute-elementary-kids-with-books-at-school-2022-12-16-18-15-57-utc-copy.jpg\"},\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":\"51\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/liki.png\"},\"width_tablet\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":88,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"70a8c8e5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"57\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/cute-elementary-kids-with-books-at-school-2022-12-16-18-15-57-utc2.png\"},\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_position\":\"absolute\",\"width_tablet\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":88,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(679,151,'_elementor_page_assets','a:0:{}'),(680,152,'_wp_page_template','elementor_header_footer'),(681,152,'_elementor_edit_mode','builder'),(682,152,'_elementor_template_type','wp-page'),(683,152,'_elementor_version','3.15.3'),(684,152,'_elementor_data','[{\"id\":\"4be75310\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":\"7\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/2-copy.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"200\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"background_overlay_color\":\"globals\\/colors?id=ff9d88d\",\"shape_divider_bottom_color\":\"globals\\/colors?id=a00e83d\"},\"shape_divider_bottom\":\"tilt\",\"shape_divider_bottom_flip\":\"yes\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"background_overlay_color\":\"#DC434C\",\"shape_divider_bottom_color\":\"#F8F8F8\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b52f91d\",\"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\":\"559d23cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Class-Detail\",\"header_size\":\"h1\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8372ec7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"14\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/c4.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":7.7080000000000002},\"_position\":\"absolute\",\"_offset_x\":{\"size\":231,\"unit\":\"px\"},\"_offset_x_tablet\":{\"size\":94,\"unit\":\"px\"},\"_offset_y\":{\"size\":-64,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-42,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":7,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-30,\"unit\":\"px\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":44.366999999999997}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20b6d4b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"15\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/c3.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":2.7629999999999999},\"_position\":\"absolute\",\"_offset_x\":{\"size\":294,\"unit\":\"px\"},\"_offset_x_tablet\":{\"size\":138,\"unit\":\"px\"},\"_offset_y\":{\"size\":37,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":27,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":30,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":133,\"unit\":\"px\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":20.367000000000001}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"79c8c942\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"17\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/edge.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":5.8129999999999997},\"_position\":\"absolute\",\"_offset_x\":{\"size\":905,\"unit\":\"px\"},\"_offset_x_tablet\":{\"size\":565,\"unit\":\"px\"},\"_offset_y\":{\"size\":-34,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-22,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":234,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":0,\"unit\":\"px\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":47.616999999999997}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a19995a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=a00e83d\"}},\"elements\":[{\"id\":\"1817a524\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"background_background\":\"classic\",\"background_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/portrait-of-happy-caucasian-boy-standing-at-chalkb-2021-09-03-06-28-24-utc-copy.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"45\",\"left\":\"20\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":28,\"blur\":28,\"spread\":-14,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"__globals__\":{\"border_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[{\"id\":\"5db990da\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":415,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"17563251\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"15\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/c3.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":18.891999999999999},\"_position\":\"absolute\",\"_offset_x\":{\"size\":1105,\"unit\":\"px\"},\"_offset_y\":{\"size\":-56,\"unit\":\"px\"},\"_z_index\":7,\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":33.216999999999999},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":21.216999999999999},\"_offset_x_tablet\":{\"size\":111,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":272,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":100,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":75,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6f7f694f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"%\",\"top\":\"8\",\"right\":\"10\",\"bottom\":\"8\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"content_position\":\"center\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":20,\"blur\":45,\"spread\":-10,\"color\":\"rgba(0, 0, 0, 0.12)\"},\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"255055e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Mathematic  Class\",\"align_tablet\":\"center\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"90\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1438bc28\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam vitae iaculis lorem, non finibus arcu. Nullam sed ligula sapien. Aliquam vulputate justo sem, nec tincidunt odio gravida vitae. Nunc porta finibus pellentesque.<\\/p><p>Vestibulum ipsum elit, condimentum vitae dapibus vel, interdum in urna. Aliquam semper vitae lacus eu elementum. <\\/p>\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"43d9d47d\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=a00e83d\"}},\"elements\":[{\"id\":\"6303c60c\",\"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\":\"503e2f0e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Etiam cursus commodo ante vitae faucibus. Aliquam faucibus, mauris ut aliquet dignissim, turpis ipsum efficitur dui, quis efficitur tellus magna non metus. Fusce tempus justo nisi, non varius justo aliquet quis. Phasellus interdum lectus mattis mauris suscipit ultrices. Phasellus ac vulputate lectus. Nunc sit amet dapibus odio, nec aliquam sem. Etiam pretium mollis nulla, ac ultrices leo tincidunt vitae.<\\/p>\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1b649256\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"3e03496d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"_inline_size_tablet\":50,\"content_position\":\"center\",\"align_tablet\":\"center\",\"background_background\":\"classic\",\"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},\"__globals__\":{\"background_color\":\"globals\\/colors?id=5425a2a\"}},\"elements\":[{\"id\":\"3d4c645b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Group 1 Schedule \",\"header_size\":\"h5\",\"align_tablet\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2e3a4cc6\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Friday,       11am-6pm\",\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"ed8911f\"},{\"text\":\"Saturday,  10am-7pm\",\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"099c7e0\"},{\"text\":\"Sunday,   11am-5pm\",\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"aa4a2f9\"}],\"space_between\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"__globals__\":{\"icon_color\":\"globals\\/colors?id=secondary\",\"text_color\":\"globals\\/colors?id=secondary\"},\"_element_width_tablet\":\"auto\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"2287f7b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"90\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"_inline_size_tablet\":50,\"content_position\":\"center\",\"align_tablet\":\"center\",\"background_background\":\"classic\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=0a21634\"}},\"elements\":[{\"id\":\"22a15590\",\"elType\":\"widget\",\"settings\":{\"title\":\"Group 2 Schedule \",\"header_size\":\"h5\",\"align_tablet\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7cde6432\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Monday,       11am-6pm\",\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"ed8911f\"},{\"text\":\"Tuesday,  10am-7pm\",\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"099c7e0\"},{\"text\":\"Wednesday,   11am-5pm\",\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"aa4a2f9\"}],\"space_between\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"__globals__\":{\"icon_color\":\"globals\\/colors?id=secondary\",\"text_color\":\"globals\\/colors?id=secondary\"},\"_element_width_tablet\":\"auto\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"4648dad\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"212885f9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"44\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/pp3.jpg\"},\"width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":20,\"blur\":20,\"spread\":-10,\"color\":\"rgba(0, 0, 0, 0.09)\"},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_mask_image\":{\"id\":\"52\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/hex2.png\"},\"width_tablet\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"18\",\"left\":\"9\",\"isLinked\":false},\"jkit_transform_rotate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"181ea66e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Peter Wong\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\"},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"60d818aa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Math Teacher\",\"header_size\":\"h5\",\"align\":\"center\",\"_margin\":{\"unit\":\"%\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=24b2df3\",\"title_color\":\"globals\\/colors?id=5425a2a\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5c293f96\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"25\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/13-copy.jpg\"},\"background_repeat\":\"repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002,\"sizes\":[]},\"shape_divider_top\":\"tilt\",\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":123,\"sizes\":[]},\"shape_divider_top_flip\":\"yes\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=0a21634\",\"shape_divider_top_color\":\"globals\\/colors?id=a00e83d\"},\"shape_divider_top_height_tablet\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"274a630e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"42b78e0d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Join Our Education center Now\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"},\"align_tablet\":\"center\",\"_margin_mobile\":{\"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},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ab984d3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"28\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/c2.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":37.046999999999997},\"_position\":\"absolute\",\"_offset_x\":{\"size\":508,\"unit\":\"px\"},\"_offset_y\":{\"size\":-53,\"unit\":\"px\"},\"_z_index\":7,\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":89.066999999999993},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":30.067},\"_offset_x_tablet\":{\"size\":94,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":252,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-60,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":28,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"55265c6f\",\"elType\":\"widget\",\"settings\":{\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"},\"align_tablet\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5d77a103\",\"elType\":\"widget\",\"settings\":{\"text\":\"Sign Up Now\",\"align\":\"left\",\"_z_index\":9,\"__globals__\":{\"background_color\":\"globals\\/colors?id=5425a2a\",\"button_background_hover_color\":\"globals\\/colors?id=7f7112a\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"67bff81\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"26\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/edge3.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":18.638000000000002},\"_offset_x\":{\"size\":172,\"unit\":\"px\"},\"_offset_y\":{\"size\":331,\"unit\":\"px\"},\"_z_index\":7,\"_margin\":{\"unit\":\"%\",\"top\":\"-60\",\"right\":\"45\",\"bottom\":\"0\",\"left\":\"-45\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":39,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"e8b722c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"-150\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"50\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-160\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"491cbf3e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"46\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/cute-elementary-kids-with-books-at-school-2022-12-16-18-15-57-utc-copy.jpg\"},\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":\"51\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/liki.png\"},\"width_tablet\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":88,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"70a8c8e5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"57\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/cute-elementary-kids-with-books-at-school-2022-12-16-18-15-57-utc2.png\"},\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_position\":\"absolute\",\"width_tablet\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":88,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(685,152,'_elementor_page_assets','a:0:{}'),(686,153,'_wp_page_template','elementor_header_footer'),(687,153,'_elementor_edit_mode','builder'),(688,153,'_elementor_template_type','wp-page'),(689,153,'_elementor_version','3.15.3'),(690,153,'_elementor_data','[{\"id\":\"4be75310\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":\"7\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/2-copy.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"200\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"background_overlay_color\":\"\",\"shape_divider_bottom_color\":\"globals\\/colors?id=a00e83d\"},\"shape_divider_bottom\":\"tilt\",\"shape_divider_bottom_flip\":\"yes\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"background_overlay_color\":\"#DC434C\",\"shape_divider_bottom_color\":\"#E6F2F2\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b52f91d\",\"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\":\"559d23cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"E-Magazine\",\"header_size\":\"h1\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8372ec7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"14\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/c4.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":7.7080000000000002},\"_position\":\"absolute\",\"_offset_x\":{\"size\":231,\"unit\":\"px\"},\"_offset_x_tablet\":{\"size\":94,\"unit\":\"px\"},\"_offset_y\":{\"size\":-64,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-42,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":7,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-30,\"unit\":\"px\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":44.366999999999997}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20b6d4b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"15\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/c3.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":2.7629999999999999},\"_position\":\"absolute\",\"_offset_x\":{\"size\":294,\"unit\":\"px\"},\"_offset_x_tablet\":{\"size\":138,\"unit\":\"px\"},\"_offset_y\":{\"size\":37,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":27,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":30,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":133,\"unit\":\"px\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":20.367000000000001}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"79c8c942\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"17\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/edge.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":5.8129999999999997},\"_position\":\"absolute\",\"_offset_x\":{\"size\":905,\"unit\":\"px\"},\"_offset_x_tablet\":{\"size\":565,\"unit\":\"px\"},\"_offset_y\":{\"size\":-34,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-22,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":234,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":0,\"unit\":\"px\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":47.616999999999997}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a19995a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=a00e83d\"}},\"elements\":[{\"id\":\"1817a524\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"background_background\":\"classic\",\"background_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/portrait-of-happy-caucasian-boy-standing-at-chalkb-2021-09-03-06-28-24-utc-copy.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"45\",\"left\":\"20\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":28,\"blur\":28,\"spread\":-14,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"__globals__\":{\"border_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[{\"id\":\"5db990da\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":415,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"17563251\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"15\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/c3.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":18.891999999999999},\"_position\":\"absolute\",\"_offset_x\":{\"size\":1105,\"unit\":\"px\"},\"_offset_y\":{\"size\":-56,\"unit\":\"px\"},\"_z_index\":7,\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":33.216999999999999},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":21.216999999999999},\"_offset_x_tablet\":{\"size\":111,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":272,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":100,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":75,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6f7f694f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"%\",\"top\":\"8\",\"right\":\"10\",\"bottom\":\"8\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"content_position\":\"center\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":20,\"blur\":45,\"spread\":-10,\"color\":\"rgba(0, 0, 0, 0.12)\"},\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"255055e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Mathematic  Class\",\"align_tablet\":\"center\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"90\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1438bc28\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam vitae iaculis lorem, non finibus arcu. Nullam sed ligula sapien. Aliquam vulputate justo sem, nec tincidunt odio gravida vitae. Nunc porta finibus pellentesque.<\\/p><p>Vestibulum ipsum elit, condimentum vitae dapibus vel, interdum in urna. Aliquam semper vitae lacus eu elementum. <\\/p>\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"43d9d47d\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=a00e83d\"}},\"elements\":[{\"id\":\"6303c60c\",\"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\":\"503e2f0e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Etiam cursus commodo ante vitae faucibus. Aliquam faucibus, mauris ut aliquet dignissim, turpis ipsum efficitur dui, quis efficitur tellus magna non metus. Fusce tempus justo nisi, non varius justo aliquet quis. Phasellus interdum lectus mattis mauris suscipit ultrices. Phasellus ac vulputate lectus. Nunc sit amet dapibus odio, nec aliquam sem. Etiam pretium mollis nulla, ac ultrices leo tincidunt vitae.<\\/p>\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1b649256\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"3e03496d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"_inline_size_tablet\":50,\"content_position\":\"center\",\"align_tablet\":\"center\",\"background_background\":\"classic\",\"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},\"__globals__\":{\"background_color\":\"globals\\/colors?id=5425a2a\"}},\"elements\":[{\"id\":\"3d4c645b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Group 1 Schedule \",\"header_size\":\"h5\",\"align_tablet\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2e3a4cc6\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Friday,       11am-6pm\",\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"ed8911f\"},{\"text\":\"Saturday,  10am-7pm\",\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"099c7e0\"},{\"text\":\"Sunday,   11am-5pm\",\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"aa4a2f9\"}],\"space_between\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"__globals__\":{\"icon_color\":\"globals\\/colors?id=secondary\",\"text_color\":\"globals\\/colors?id=secondary\"},\"_element_width_tablet\":\"auto\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"2287f7b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"90\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"_inline_size_tablet\":50,\"content_position\":\"center\",\"align_tablet\":\"center\",\"background_background\":\"classic\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=0a21634\"}},\"elements\":[{\"id\":\"22a15590\",\"elType\":\"widget\",\"settings\":{\"title\":\"Group 2 Schedule \",\"header_size\":\"h5\",\"align_tablet\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7cde6432\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Monday,       11am-6pm\",\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"ed8911f\"},{\"text\":\"Tuesday,  10am-7pm\",\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"099c7e0\"},{\"text\":\"Wednesday,   11am-5pm\",\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"aa4a2f9\"}],\"space_between\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"__globals__\":{\"icon_color\":\"globals\\/colors?id=secondary\",\"text_color\":\"globals\\/colors?id=secondary\"},\"_element_width_tablet\":\"auto\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"4648dad\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"212885f9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"44\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/pp3.jpg\"},\"width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":20,\"blur\":20,\"spread\":-10,\"color\":\"rgba(0, 0, 0, 0.09)\"},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_mask_image\":{\"id\":\"52\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/hex2.png\"},\"width_tablet\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"18\",\"left\":\"9\",\"isLinked\":false},\"jkit_transform_rotate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"181ea66e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Peter Wong\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\"},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"60d818aa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Math Teacher\",\"header_size\":\"h5\",\"align\":\"center\",\"_margin\":{\"unit\":\"%\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=24b2df3\",\"title_color\":\"globals\\/colors?id=5425a2a\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5c293f96\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"25\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/13-copy.jpg\"},\"background_repeat\":\"repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002,\"sizes\":[]},\"shape_divider_top\":\"tilt\",\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":123,\"sizes\":[]},\"shape_divider_top_flip\":\"yes\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=0a21634\",\"shape_divider_top_color\":\"globals\\/colors?id=a00e83d\"},\"shape_divider_top_height_tablet\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"274a630e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"42b78e0d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Join Our Education center Now\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"},\"align_tablet\":\"center\",\"_margin_mobile\":{\"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},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ab984d3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"28\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/c2.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":37.046999999999997},\"_position\":\"absolute\",\"_offset_x\":{\"size\":508,\"unit\":\"px\"},\"_offset_y\":{\"size\":-53,\"unit\":\"px\"},\"_z_index\":7,\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":89.066999999999993},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":30.067},\"_offset_x_tablet\":{\"size\":94,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":252,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-60,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":28,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"55265c6f\",\"elType\":\"widget\",\"settings\":{\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"},\"align_tablet\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5d77a103\",\"elType\":\"widget\",\"settings\":{\"text\":\"Sign Up Now\",\"align\":\"left\",\"_z_index\":9,\"__globals__\":{\"background_color\":\"globals\\/colors?id=5425a2a\",\"button_background_hover_color\":\"globals\\/colors?id=7f7112a\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"67bff81\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"26\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/edge3.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":18.638000000000002},\"_offset_x\":{\"size\":172,\"unit\":\"px\"},\"_offset_y\":{\"size\":331,\"unit\":\"px\"},\"_z_index\":7,\"_margin\":{\"unit\":\"%\",\"top\":\"-60\",\"right\":\"45\",\"bottom\":\"0\",\"left\":\"-45\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":39,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"e8b722c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"-150\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"50\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-160\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"491cbf3e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"46\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/cute-elementary-kids-with-books-at-school-2022-12-16-18-15-57-utc-copy.jpg\"},\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":\"51\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/liki.png\"},\"width_tablet\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":88,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"70a8c8e5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"57\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/cute-elementary-kids-with-books-at-school-2022-12-16-18-15-57-utc2.png\"},\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_position\":\"absolute\",\"width_tablet\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":88,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(691,153,'_elementor_page_assets','a:0:{}'),(692,154,'_menu_item_type','post_type'),(693,154,'_menu_item_menu_item_parent','0'),(694,154,'_menu_item_object_id','144'),(695,154,'_menu_item_object','page'),(696,154,'_menu_item_target',''),(697,154,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(698,154,'_menu_item_xfn',''),(699,154,'_menu_item_url',''),(701,155,'_menu_item_type','post_type'),(702,155,'_menu_item_menu_item_parent','0'),(703,155,'_menu_item_object_id','138'),(704,155,'_menu_item_object','page'),(705,155,'_menu_item_target',''),(706,155,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(707,155,'_menu_item_xfn',''),(708,155,'_menu_item_url',''),(710,156,'_menu_item_type','post_type'),(711,156,'_menu_item_menu_item_parent','0'),(712,156,'_menu_item_object_id','132'),(713,156,'_menu_item_object','page'),(714,156,'_menu_item_target',''),(715,156,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(716,156,'_menu_item_xfn',''),(717,156,'_menu_item_url',''),(719,157,'_menu_item_type','post_type'),(720,157,'_menu_item_menu_item_parent','0'),(721,157,'_menu_item_object_id','123'),(722,157,'_menu_item_object','page'),(723,157,'_menu_item_target',''),(724,157,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(725,157,'_menu_item_xfn',''),(726,157,'_menu_item_url',''),(728,158,'_menu_item_type','post_type'),(729,158,'_menu_item_menu_item_parent','0'),(730,158,'_menu_item_object_id','114'),(731,158,'_menu_item_object','page'),(732,158,'_menu_item_target',''),(733,158,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(734,158,'_menu_item_xfn',''),(735,158,'_menu_item_url',''),(746,160,'_wp_page_template','elementor_canvas'),(747,160,'_elementor_edit_mode','builder'),(748,160,'_elementor_template_type','wp-post'),(749,160,'_elementor_version','3.15.3'),(750,160,'_elementor_data','[{\"id\":\"7d9566\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-103\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\",\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"globals\\/colors?id=eb507f3\"},\"z_index\":90,\"background_overlay_background\":\"classic\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":37,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"background_overlay_color_b\":\"#FFFFFF00\",\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"-33\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"-11\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5d85d8f1\",\"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},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false}},\"elements\":[{\"id\":\"6cf40c10\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"20\"},\"elements\":[{\"id\":\"2bacd8a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":20,\"content_position_tablet\":\"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},\"_inline_size_mobile\":60},\"elements\":[{\"id\":\"18c1fca4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":104,\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/\\u0938\\u093e\\u0939\\u093f\\u0924\\u094d\\u092f-1.webp\",\"alt\":\"\\u0938\\u093e\\u0939\\u093f\\u0924\\u094d\\u092f\",\"source\":\"library\",\"size\":\"\"},\"width\":{\"unit\":\"%\",\"size\":33,\"sizes\":[]},\"align\":\"left\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"align_mobile\":\"left\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":82,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"26b280e1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":80,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":40,\"content_position\":\"center\"},\"elements\":[{\"id\":\"1c150646\",\"elType\":\"widget\",\"settings\":{\"menu\":\"menu1\",\"__globals__\":{\"menu_typography_typography\":\"globals\\/typography?id=779cdfc\",\"color_menu_item\":\"globals\\/colors?id=secondary\",\"color_menu_item_hover\":\"globals\\/colors?id=7f7112a\",\"all_text_color\":\"globals\\/colors?id=e64be90\",\"all_background_color_color\":\"globals\\/colors?id=f2feccc\",\"all_background_hover_color_color\":\"globals\\/colors?id=e64be90\",\"all_border_color\":\"\",\"all_border_hover_color\":\"\",\"all_background_color_color_b\":\"\",\"all_background_hover_color_color_b\":\"globals\\/colors?id=e64be90\",\"all_hover_color\":\"globals\\/colors?id=7f7112a\",\"toggle_color\":\"globals\\/colors?id=secondary\",\"background_color_dropdown_item\":\"globals\\/colors?id=e64be90\",\"color_menu_item_active\":\"globals\\/colors?id=7f7112a\",\"background_color_dropdown_item_hover\":\"\",\"color_dropdown_item_hover\":\"globals\\/colors?id=4b29dee\",\"color_dropdown_item\":\"globals\\/colors?id=primary\",\"dropdown_border_color\":\"globals\\/colors?id=76544c2\",\"color_dropdown_item_active\":\"globals\\/colors?id=7f7112a\"},\"resp_align\":\"right\",\"padding_horizontal_menu_item_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"menu_space_between\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"dropdown_divider_border\":\"none\",\"all_background_color_background\":\"classic\",\"all_background_hover_color_background\":\"classic\",\"all_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"all_background_color_gradient_angle\":{\"unit\":\"deg\",\"size\":130,\"sizes\":[]},\"dropdown_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"menu_space_between_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_horizontal_menu_item_mobile\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"menu_space_between_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"dropdown_border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_dropdown_item_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_horizontal_dropdown_item_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"padding_vertical_dropdown_item_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"menu_typography_font_family\":\"Roboto\",\"color_menu_item\":\"#F0F0F0\",\"background_color_dropdown_item\":\"#202020\",\"toggle_color\":\"#FFFFFF\",\"all_text_color\":\"#F4F9FC\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"23\",\"bottom\":\"14\",\"left\":\"23\",\"isLinked\":false},\"all_background_hover_color_color_stop\":{\"unit\":\"%\",\"size\":66,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"menu_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":0.90000000000000002,\"sizes\":[]},\"menu_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.90000000000000002,\"sizes\":[]},\"menu_typography_font_weight\":\"500\",\"menu_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"menu_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"all_background_color_color_b\":\"#FC3B00\",\"all_background_hover_color_color\":\"#FFFFFF\",\"all_background_hover_color_color_b\":\"#FFFFFF\",\"dropdown_border_width_tablet\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"dropdown_border_width_mobile\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"dropdown_border_radius_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"navmenu_align\":\"right\",\"dropdown\":\"mobile\",\"menu_last_item\":\"cta\",\"dropdown_box_shadow_box_shadow_type\":\"yes\",\"dropdown_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":30,\"blur\":30,\"spread\":-15,\"color\":\"rgba(0, 0, 0, 0.4)\"},\"all_button_box_shadow_box_shadow_type\":\"yes\",\"all_button_box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":10,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.15)\"}},\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(751,160,'_elementor_page_assets','a:0:{}'),(753,161,'_wp_page_template','elementor_canvas'),(754,161,'_elementor_edit_mode','builder'),(755,161,'_elementor_template_type','wp-post'),(756,161,'_elementor_version','3.15.3'),(757,161,'_elementor_data','[{\"id\":\"7d9566\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-103\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\",\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"globals\\/colors?id=eb507f3\"},\"z_index\":90,\"background_overlay_background\":\"classic\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":37,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"background_overlay_color_b\":\"#FFFFFF00\",\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"-33\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"-11\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5d85d8f1\",\"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},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false}},\"elements\":[{\"id\":\"6cf40c10\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"20\"},\"elements\":[{\"id\":\"2bacd8a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":20,\"content_position_tablet\":\"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},\"_inline_size_mobile\":60},\"elements\":[{\"id\":\"18c1fca4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":104,\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/\\u0938\\u093e\\u0939\\u093f\\u0924\\u094d\\u092f-1.webp\",\"alt\":\"\\u0938\\u093e\\u0939\\u093f\\u0924\\u094d\\u092f\",\"source\":\"library\",\"size\":\"\"},\"width\":{\"unit\":\"%\",\"size\":33,\"sizes\":[]},\"align\":\"left\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"align_mobile\":\"left\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":82,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"26b280e1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":80,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":40,\"content_position\":\"center\"},\"elements\":[{\"id\":\"1c150646\",\"elType\":\"widget\",\"settings\":{\"menu\":\"menu1\",\"__globals__\":{\"menu_typography_typography\":\"globals\\/typography?id=779cdfc\",\"color_menu_item\":\"globals\\/colors?id=secondary\",\"color_menu_item_hover\":\"globals\\/colors?id=7f7112a\",\"all_text_color\":\"globals\\/colors?id=e64be90\",\"all_background_color_color\":\"globals\\/colors?id=f2feccc\",\"all_background_hover_color_color\":\"globals\\/colors?id=e64be90\",\"all_border_color\":\"\",\"all_border_hover_color\":\"\",\"all_background_color_color_b\":\"\",\"all_background_hover_color_color_b\":\"globals\\/colors?id=e64be90\",\"all_hover_color\":\"globals\\/colors?id=7f7112a\",\"toggle_color\":\"globals\\/colors?id=secondary\",\"background_color_dropdown_item\":\"globals\\/colors?id=e64be90\",\"color_menu_item_active\":\"globals\\/colors?id=7f7112a\",\"background_color_dropdown_item_hover\":\"\",\"color_dropdown_item_hover\":\"globals\\/colors?id=4b29dee\",\"color_dropdown_item\":\"globals\\/colors?id=primary\",\"dropdown_border_color\":\"globals\\/colors?id=76544c2\",\"color_dropdown_item_active\":\"globals\\/colors?id=7f7112a\"},\"resp_align\":\"right\",\"padding_horizontal_menu_item_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"menu_space_between\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"dropdown_divider_border\":\"none\",\"all_background_color_background\":\"classic\",\"all_background_hover_color_background\":\"classic\",\"all_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"all_background_color_gradient_angle\":{\"unit\":\"deg\",\"size\":130,\"sizes\":[]},\"dropdown_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"menu_space_between_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_horizontal_menu_item_mobile\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"menu_space_between_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"dropdown_border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_dropdown_item_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_horizontal_dropdown_item_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"padding_vertical_dropdown_item_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"menu_typography_font_family\":\"Roboto\",\"color_menu_item\":\"#F0F0F0\",\"background_color_dropdown_item\":\"#202020\",\"toggle_color\":\"#FFFFFF\",\"all_text_color\":\"#F4F9FC\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"23\",\"bottom\":\"14\",\"left\":\"23\",\"isLinked\":false},\"all_background_hover_color_color_stop\":{\"unit\":\"%\",\"size\":66,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"menu_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":0.90000000000000002,\"sizes\":[]},\"menu_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.90000000000000002,\"sizes\":[]},\"menu_typography_font_weight\":\"500\",\"menu_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"menu_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"all_background_color_color_b\":\"#FC3B00\",\"all_background_hover_color_color\":\"#FFFFFF\",\"all_background_hover_color_color_b\":\"#FFFFFF\",\"dropdown_border_width_tablet\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"dropdown_border_width_mobile\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"dropdown_border_radius_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"navmenu_align\":\"right\",\"dropdown\":\"mobile\",\"menu_last_item\":\"cta\",\"dropdown_box_shadow_box_shadow_type\":\"yes\",\"dropdown_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":30,\"blur\":30,\"spread\":-15,\"color\":\"rgba(0, 0, 0, 0.4)\"},\"all_button_box_shadow_box_shadow_type\":\"yes\",\"all_button_box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":10,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.15)\"}},\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(758,161,'_elementor_page_assets','a:0:{}'),(760,162,'_wp_page_template','elementor_canvas'),(761,162,'_elementor_edit_mode','builder'),(762,162,'_elementor_template_type','wp-post'),(763,162,'_elementor_version','3.15.3'),(764,162,'_elementor_data','[{\"id\":\"7d9566\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-103\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\",\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"globals\\/colors?id=eb507f3\"},\"z_index\":90,\"background_overlay_background\":\"classic\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":37,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"background_overlay_color_b\":\"#FFFFFF00\",\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"-33\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"-11\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5d85d8f1\",\"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},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false}},\"elements\":[{\"id\":\"6cf40c10\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"30\"},\"elements\":[{\"id\":\"2bacd8a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":20,\"content_position_tablet\":\"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},\"_inline_size_mobile\":60},\"elements\":[{\"id\":\"b207c53\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/\\u0938\\u093e\\u0939\\u093f\\u0924\\u094d\\u092f-1.webp\",\"id\":104,\"size\":\"\",\"alt\":\"\\u0938\\u093e\\u0939\\u093f\\u0924\\u094d\\u092f\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"967a5c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":10,\"_inline_size_tablet\":20,\"content_position_tablet\":\"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},\"_inline_size_mobile\":60},\"elements\":[],\"isInner\":true},{\"id\":\"26b280e1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.664000000000001,\"_inline_size_tablet\":80,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":40,\"content_position\":\"center\"},\"elements\":[{\"id\":\"1c150646\",\"elType\":\"widget\",\"settings\":{\"menu\":\"menu1\",\"__globals__\":{\"menu_typography_typography\":\"globals\\/typography?id=779cdfc\",\"color_menu_item\":\"globals\\/colors?id=secondary\",\"color_menu_item_hover\":\"globals\\/colors?id=7f7112a\",\"all_text_color\":\"globals\\/colors?id=e64be90\",\"all_background_color_color\":\"globals\\/colors?id=f2feccc\",\"all_background_hover_color_color\":\"globals\\/colors?id=e64be90\",\"all_border_color\":\"\",\"all_border_hover_color\":\"\",\"all_background_color_color_b\":\"\",\"all_background_hover_color_color_b\":\"globals\\/colors?id=e64be90\",\"all_hover_color\":\"globals\\/colors?id=7f7112a\",\"toggle_color\":\"globals\\/colors?id=secondary\",\"background_color_dropdown_item\":\"globals\\/colors?id=e64be90\",\"color_menu_item_active\":\"globals\\/colors?id=7f7112a\",\"background_color_dropdown_item_hover\":\"\",\"color_dropdown_item_hover\":\"globals\\/colors?id=4b29dee\",\"color_dropdown_item\":\"globals\\/colors?id=primary\",\"dropdown_border_color\":\"globals\\/colors?id=76544c2\",\"color_dropdown_item_active\":\"globals\\/colors?id=7f7112a\"},\"resp_align\":\"right\",\"padding_horizontal_menu_item_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"menu_space_between\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"dropdown_divider_border\":\"none\",\"all_background_color_background\":\"classic\",\"all_background_hover_color_background\":\"classic\",\"all_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"all_background_color_gradient_angle\":{\"unit\":\"deg\",\"size\":130,\"sizes\":[]},\"dropdown_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"menu_space_between_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_horizontal_menu_item_mobile\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"menu_space_between_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"dropdown_border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_dropdown_item_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_horizontal_dropdown_item_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"padding_vertical_dropdown_item_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"menu_typography_font_family\":\"Roboto\",\"color_menu_item\":\"#F0F0F0\",\"background_color_dropdown_item\":\"#202020\",\"toggle_color\":\"#FFFFFF\",\"all_text_color\":\"#F4F9FC\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"23\",\"bottom\":\"14\",\"left\":\"23\",\"isLinked\":false},\"all_background_hover_color_color_stop\":{\"unit\":\"%\",\"size\":66,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"menu_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":0.90000000000000002,\"sizes\":[]},\"menu_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.90000000000000002,\"sizes\":[]},\"menu_typography_font_weight\":\"500\",\"menu_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"menu_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"all_background_color_color_b\":\"#FC3B00\",\"all_background_hover_color_color\":\"#FFFFFF\",\"all_background_hover_color_color_b\":\"#FFFFFF\",\"dropdown_border_width_tablet\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"dropdown_border_width_mobile\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"dropdown_border_radius_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"navmenu_align\":\"right\",\"dropdown\":\"mobile\",\"menu_last_item\":\"cta\",\"dropdown_box_shadow_box_shadow_type\":\"yes\",\"dropdown_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":30,\"blur\":30,\"spread\":-15,\"color\":\"rgba(0, 0, 0, 0.4)\"},\"all_button_box_shadow_box_shadow_type\":\"yes\",\"all_button_box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":10,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":107.182}},\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(765,162,'_elementor_page_assets','a:0:{}'),(768,163,'_wp_page_template','elementor_header_footer'),(769,163,'_elementor_edit_mode','builder'),(770,163,'_elementor_template_type','wp-page'),(771,163,'_elementor_version','3.15.3'),(772,163,'_elementor_data','[{\"id\":\"1b43d4a4\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"7\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/2-copy.jpg\"},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"shape_divider_bottom\":\"tilt\",\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":225,\"sizes\":[]},\"shape_divider_bottom_flip\":\"yes\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"00\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.55000000000000004,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=ff9d88d\",\"shape_divider_bottom_color\":\"globals\\/colors?id=a00e83d\"},\"overflow\":\"hidden\",\"shape_divider_bottom_height_tablet\":{\"unit\":\"px\",\"size\":105,\"sizes\":[]},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"130\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"20\",\"bottom\":\"130\",\"left\":\"20\",\"isLinked\":false},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"5a2e5ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"73c21425\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Smart  \",\"sg_title_focused\":\"Learning\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_typography_content_typography_typography\":\"custom\",\"st_title_typography_content_typography_font_family\":\"Mulish\",\"st_title_typography_content_typography_font_size\":{\"unit\":\"rem\",\"size\":8.5,\"sizes\":[]},\"st_title_typography_content_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":4.7999999999999998,\"sizes\":[]},\"st_title_typography_content_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":3.7000000000000002,\"sizes\":[]},\"st_title_typography_content_typography_font_weight\":\"800\",\"st_title_typography_content_typography_text_transform\":\"capitalize\",\"st_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"st_title_typography_content_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=4244abd\",\"st_focused_typography_content_typography_typography\":\"globals\\/typography?id=d65c9cc\",\"st_focused_color_responsive\":\"globals\\/colors?id=secondary\",\"st_title_color_responsive\":\"globals\\/colors?id=secondary\"},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_general_alignment_responsive_tablet\":\"center\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"},{\"id\":\"6a57c977\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Study \",\"sg_title_focused\":\"Easily\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_typography_content_typography_typography\":\"custom\",\"st_title_typography_content_typography_font_family\":\"Mulish\",\"st_title_typography_content_typography_font_size\":{\"unit\":\"rem\",\"size\":8.5,\"sizes\":[]},\"st_title_typography_content_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":4.7999999999999998,\"sizes\":[]},\"st_title_typography_content_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":3.7000000000000002,\"sizes\":[]},\"st_title_typography_content_typography_font_weight\":\"800\",\"st_title_typography_content_typography_text_transform\":\"capitalize\",\"st_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"st_title_typography_content_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=4244abd\",\"st_focused_typography_content_typography_typography\":\"globals\\/typography?id=d65c9cc\",\"st_focused_color_responsive\":\"globals\\/colors?id=secondary\",\"st_title_color_responsive\":\"globals\\/colors?id=secondary\"},\"_margin\":{\"unit\":\"%\",\"top\":\"-7\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"-6\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_general_alignment_responsive_tablet\":\"center\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"},{\"id\":\"3087a342\",\"elType\":\"widget\",\"settings\":{\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"},\"align_tablet\":\"center\",\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3a0c81f4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Check It Out\",\"align_tablet\":\"center\",\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"3b3b1623\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"-115\",\"right\":\"-50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-75\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7f89b368\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"13\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/boy3.png\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"-85\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_position\":\"absolute\",\"_z_index\":2,\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-40\",\"bottom\":\"0\",\"left\":\"-40\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b0d8b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"15\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/c3.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":14.5},\"_position\":\"absolute\",\"_offset_x\":{\"size\":88,\"unit\":\"px\"},\"_offset_y\":{\"size\":22,\"unit\":\"px\"},\"_z_index\":7,\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":33.216999999999999},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":21.216999999999999},\"_offset_x_tablet\":{\"size\":111,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":272,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":100,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":75,\"unit\":\"px\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"478271ab\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"17\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/edge.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":14.5},\"_position\":\"absolute\",\"_offset_x\":{\"size\":521,\"unit\":\"px\"},\"_offset_y\":{\"size\":116,\"unit\":\"px\"},\"_z_index\":7,\"_element_width_tablet\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":78.216999999999999},\"_offset_x_tablet\":{\"size\":534,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":203,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":103,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":382,\"unit\":\"px\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e73906\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"19\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/c1.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32.997},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-11,\"unit\":\"px\"},\"_offset_y\":{\"size\":426,\"unit\":\"px\"},\"_z_index\":7,\"_element_width_tablet\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":415.06700000000001},\"_offset_x_tablet\":{\"size\":-241,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":-256,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":410,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":327,\"unit\":\"px\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4a051f2a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"28\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/c2.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":6.9939999999999998},\"_position\":\"absolute\",\"_offset_x\":{\"size\":539,\"unit\":\"px\"},\"_offset_y\":{\"size\":140,\"unit\":\"px\"},\"_z_index\":7,\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":44.332999999999998},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":91.332999999999998},\"_offset_x_tablet\":{\"size\":545,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":196,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":124,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-13,\"unit\":\"px\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1673b95c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"35\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/little-boy-is-having-online-lessons-by-using-lapto-2022-02-03-17-43-51-utc-copy.jpg\"},\"image_border_border\":\"none\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"image_box_shadow_box_shadow\":{\"horizontal\":100,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.09)\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"-85\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1,\"_background_background\":\"classic\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":\"41\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/liki3.png\"},\"_mask_position\":\"top right\",\"__globals__\":{\"_background_color\":\"\",\"image_border_color\":\"globals\\/colors?id=secondary\"},\"width_tablet\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-40\",\"bottom\":\"0\",\"left\":\"-40\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f1771ce\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"280\",\"left\":\"0\",\"isLinked\":false},\"shape_divider_bottom\":\"tilt\",\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=a00e83d\"},\"overflow\":\"hidden\",\"shape_divider_bottom_height_tablet\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"170\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b6d584b\",\"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\":\"6032aede\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"14\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/c4.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":3.875},\"_position\":\"absolute\",\"_offset_x\":{\"size\":951,\"unit\":\"px\"},\"_offset_y\":{\"size\":33,\"unit\":\"px\"},\"_z_index\":7,\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":36.732999999999997},\"_offset_x_tablet\":{\"size\":614,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":34,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":37,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":80,\"unit\":\"px\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7ba2bee1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"29\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/edge2.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":6.6630000000000003},\"_position\":\"absolute\",\"_offset_x\":{\"size\":325,\"unit\":\"px\"},\"_offset_y\":{\"size\":-43,\"unit\":\"px\"},\"_z_index\":7,\"_offset_x_tablet\":{\"size\":116,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-19,\"unit\":\"px\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"639ecddb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Primary Courses\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6cbb0273\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":175,\"sizes\":[]},\"shape_divider_bottom_flip\":\"yes\",\"__globals__\":{\"shape_divider_bottom_color\":\"globals\\/colors?id=bb22fe7\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7003617b\",\"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\":\"33d7d2f0\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"%\",\"top\":\"-20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"-53\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6768445a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"785c9c90\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"48\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/kids-taking-exam-in-school-2022-06-29-19-26-45-utc-copy.jpg\"},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"35\",\"left\":\"15\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":15,\"blur\":25,\"spread\":-5,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=secondary\"},\"jkit_transform_rotate\":{\"unit\":\"px\",\"size\":358,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"133d57a9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Social Studies\",\"header_size\":\"h4\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2905a3bd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1780998b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"1bb97169\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"f1fc8ed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"38\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/portrait-of-happy-caucasian-boy-standing-at-chalkb-2021-09-03-06-28-24-utc-copy.jpg\"},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"35\",\"left\":\"15\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":15,\"blur\":25,\"spread\":-5,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=secondary\"},\"jkit_transform_rotate\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1be70e33\",\"elType\":\"widget\",\"settings\":{\"title\":\"Mathematics \",\"header_size\":\"h4\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"84221db\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"389f3412\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"3147fc34\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"27a107c5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"55\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/woman-learning-english-online-2021-08-26-15-34-41-utc-copy.jpg\"},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"35\",\"left\":\"15\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":15,\"blur\":25,\"spread\":-5,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=secondary\"},\"jkit_transform_rotate\":{\"unit\":\"px\",\"size\":358,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6f699cb3\",\"elType\":\"widget\",\"settings\":{\"title\":\"English Course\",\"header_size\":\"h4\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6e14a87b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"12d35f7c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"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\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"52e2d9dc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"65\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/3-copy.jpg\"},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.69999999999999996,\"sizes\":[]},\"shape_divider_top\":\"tilt\",\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":175,\"sizes\":[]},\"shape_divider_top_flip\":\"yes\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=bb22fe7\",\"background_overlay_color\":\"globals\\/colors?id=bb22fe7\"},\"overflow\":\"hidden\",\"shape_divider_top_height_tablet\":{\"unit\":\"px\",\"size\":69,\"sizes\":[]},\"shape_divider_top_height_mobile\":{\"unit\":\"px\",\"size\":51,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"140\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"f426e2a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42.542999999999999,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"content_position_tablet\":\"center\",\"align_tablet\":\"center\",\"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\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"5a616044\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"23\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/aged-teacher-2021-09-24-03-26-41-utc.jpg\"},\"opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-125\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=dafc007\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"150\",\"bottom\":\"0\",\"left\":\"150\",\"isLinked\":false},\"_margin_mobile\":{\"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},\"_element_width_tablet\":\"auto\",\"_z_index_mobile\":6},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"76aca3b6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"32\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/aged-teacher-2021-09-24-03-26-41-utc-2.png\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-125\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-2,\"unit\":\"px\"},\"_offset_y\":{\"size\":1,\"unit\":\"px\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"150\",\"bottom\":\"0\",\"left\":\"150\",\"isLinked\":false},\"_margin_mobile\":{\"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},\"_z_index_mobile\":7},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6ba18f0a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":57.457000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"75\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1da3bcbb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Preparing Our Children\\u2019s Bright Future\",\"align_tablet\":\"center\",\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1f66d3c5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"29\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/edge2.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":13.539999999999999},\"_position\":\"absolute\",\"_offset_x\":{\"size\":24,\"unit\":\"px\"},\"_offset_y\":{\"size\":-38,\"unit\":\"px\"},\"_z_index\":7,\"_element_width_tablet\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":70.582999999999998},\"_offset_x_tablet\":{\"size\":14,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":-4,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":8,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":12,\"unit\":\"px\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4a9c2692\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec ultrices purus nec sollicitudin eleifend. In hac habitasse platea dictumst.<\\/p>\",\"align_tablet\":\"center\",\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2a5e6eb3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-line-chart-light\",\"library\":\"jkiticon\"},\"view\":\"stacked\",\"title_text\":\"Grade Improvement\",\"description_text\":\" Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"position\":\"left\",\"icon_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=d50cf18\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"primary_color\":\"globals\\/colors?id=7f7112a\",\"description_typography_typography\":\"globals\\/typography?id=f8cdd91\"},\"icon_space_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"text_align_tablet\":\"left\",\"text_align_mobile\":\"center\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_element_width_tablet\":\"auto\",\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"131750b8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-open-book-light\",\"library\":\"jkiticon\"},\"view\":\"stacked\",\"title_text\":\"Exam Preparation\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing.\",\"position\":\"left\",\"secondary_color\":\"#FFFFFF\",\"icon_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Exo 2\",\"title_typography_font_size\":{\"unit\":\"rem\",\"size\":1.6000000000000001,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.2,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2,\"sizes\":[]},\"title_typography_font_weight\":\"800\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=d50cf18\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"primary_color\":\"globals\\/colors?id=dafc007\",\"description_typography_typography\":\"globals\\/typography?id=f8cdd91\"},\"icon_space_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_element_width_tablet\":\"auto\",\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"62288012\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-users\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Social Development\",\"description_text\":\"Donec et massa sit amet augue laoreet venenatis id et urna.\",\"position\":\"left\",\"icon_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=d50cf18\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"primary_color\":\"globals\\/colors?id=0a21634\",\"description_typography_typography\":\"globals\\/typography?id=f8cdd91\"},\"icon_space_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_tablet\":\"auto\",\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"6b0269ef\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"19\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/c1.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.43},\"_position\":\"absolute\",\"_offset_x\":{\"size\":578,\"unit\":\"px\"},\"_offset_y\":{\"size\":-180,\"unit\":\"px\"},\"_z_index\":7,\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":116.93300000000001},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":150.93299999999999},\"_offset_x_tablet\":{\"size\":576,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":-61,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-606,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-475,\"unit\":\"px\"},\"_z_index_mobile\":1,\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"11e683e1\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":\"47\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/boy-at-lesson-2021-09-24-03-25-58-utc-copy.jpg\"},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.81000000000000005,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=5425a2a\"},\"background_position\":\"center center\",\"overflow\":\"hidden\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"62726094\",\"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\":\"7696e562\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our vision is every child is safe, inspired, challenged, empowered.\",\"align\":\"center\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"291cdd84\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"17\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/edge.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":9.5749999999999993},\"_position\":\"absolute\",\"_offset_x\":{\"size\":1129,\"unit\":\"px\"},\"_offset_y\":{\"size\":-59,\"unit\":\"px\"},\"_z_index\":7,\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":52.017000000000003},\"_offset_x_mobile\":{\"size\":249,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-19,\"unit\":\"px\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5405eae3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"15\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/c3.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":8.1790000000000003},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-12,\"unit\":\"px\"},\"_offset_y\":{\"size\":-28,\"unit\":\"px\"},\"_z_index\":7,\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":88.516999999999996},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":130.517},\"_offset_x_tablet\":{\"size\":-60,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":-106,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-60,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":70,\"unit\":\"px\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"35062fd0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Integer efficitur ligula ipsum, at vulputate mi fermentum sit amet. Sed pulvinar rutrum commodo. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean vitae tortor nec lectus mattis congue id sed tortor.<\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"36f886f7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"14\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/c4.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":3.73},\"_position\":\"absolute\",\"_offset_x\":{\"size\":81,\"unit\":\"px\"},\"_offset_y\":{\"size\":91,\"unit\":\"px\"},\"_z_index\":7,\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_offset_x_tablet\":{\"size\":616,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":10,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":101,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":30,\"unit\":\"px\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3cc6830a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"75553c20\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"shape_divider_bottom_flip\":\"yes\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=a00e83d\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"97c1c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_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\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"247f69f0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Programs for excellence\",\"align_tablet\":\"center\",\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"777b3a8c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"19\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/c1.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":22.148},\"_position\":\"absolute\",\"_offset_x\":{\"size\":470,\"unit\":\"px\"},\"_offset_y\":{\"size\":-54,\"unit\":\"px\"},\"_z_index\":7,\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":73.183000000000007},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":39.183},\"_offset_x_tablet\":{\"size\":154,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":249,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-218,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-288,\"unit\":\"px\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1d77a3a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"29\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/edge2.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":15.734},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-44,\"unit\":\"px\"},\"_offset_y\":{\"size\":26,\"unit\":\"px\"},\"_z_index\":7,\"_element_width_tablet\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":63.75},\"_offset_x_tablet\":{\"size\":28,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":2,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-23,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-18,\"unit\":\"px\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"69fbb26b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Mauris at lacus semper, fermentum mi sed, rutrum nibh. Sed gravida elit ligula, sit amet venenatis diam hendrerit iaculis.<\\/p>\",\"align_tablet\":\"center\",\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"80ecc3f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"28\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/c2.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":10.724},\"_position\":\"absolute\",\"_offset_x\":{\"size\":179,\"unit\":\"px\"},\"_offset_y\":{\"size\":408,\"unit\":\"px\"},\"_z_index\":7,\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":42.116999999999997},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":30.117000000000001},\"_offset_x_tablet\":{\"size\":635,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":254,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-31,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":355,\"unit\":\"px\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"36ed7571\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover More\",\"align_tablet\":\"center\",\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"1e716000\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"74e0a882\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"617b3cb8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2156a27f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"40\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/grade.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_border\":\"none\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"5\",\"isLinked\":false},\"__globals__\":{\"_border_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=384fc29\"},\"jkit_transform_rotate\":{\"unit\":\"px\",\"size\":360,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1664fafd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Grade Boost\",\"header_size\":\"h5\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3cbe788b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet.<\\/p>\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=f8cdd91\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"2bb04b8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"41a65060\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"45\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/chart.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_border\":\"none\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"5\",\"isLinked\":false},\"__globals__\":{\"_border_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=98e3e15\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20d3131e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Skill Evaluation\",\"header_size\":\"h5\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"621208f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet.<\\/p>\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=f8cdd91\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7db08f0d\",\"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\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"7f824463\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3657acce\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"50\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/test-exam-sheet.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_border\":\"none\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"5\",\"isLinked\":false},\"__globals__\":{\"_border_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=7f7112a\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"54b44e19\",\"elType\":\"widget\",\"settings\":{\"title\":\"Mock Exam\",\"header_size\":\"h5\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7da043cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet.<\\/p>\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=f8cdd91\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"11b6e1fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"401111e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"54\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/schedule-sheet.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_border\":\"none\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"5\",\"isLinked\":false},\"__globals__\":{\"_border_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=4b29dee\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2b04a0cf\",\"elType\":\"widget\",\"settings\":{\"title\":\"Weekend Class\",\"header_size\":\"h5\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7398c131\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet.<\\/p>\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=f8cdd91\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"67d987bc\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":\"25\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/13-copy.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002,\"sizes\":[]},\"shape_divider_top\":\"tilt\",\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":130,\"sizes\":[]},\"shape_divider_top_flip\":\"yes\",\"shape_divider_bottom\":\"tilt\",\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":180,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"185\",\"right\":\"0\",\"bottom\":\"400\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"shape_divider_top_color\":\"globals\\/colors?id=a00e83d\",\"background_overlay_color\":\"globals\\/colors?id=98e3e15\",\"shape_divider_bottom_color\":\"globals\\/colors?id=50714e7\"},\"overflow\":\"hidden\",\"shape_divider_top_height_tablet\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"shape_divider_bottom_height_tablet\":{\"unit\":\"px\",\"size\":102,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"230\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7e44fc62\",\"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\":\"6fe80e94\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Popular Teacher\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"35cd5615\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"14\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/c4.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":3.73},\"_position\":\"absolute\",\"_offset_x\":{\"size\":1013,\"unit\":\"px\"},\"_offset_y\":{\"size\":57,\"unit\":\"px\"},\"_z_index\":7,\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":20.800000000000001},\"_offset_x_tablet\":{\"size\":624,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":257,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":49,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":134,\"unit\":\"px\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2d8a0fb0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"15\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/c3.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":13.103},\"_position\":\"absolute\",\"_offset_x\":{\"size\":1022,\"unit\":\"px\"},\"_offset_y\":{\"size\":-124,\"unit\":\"px\"},\"_z_index\":7,\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":56.966999999999999},\"_offset_x_tablet\":{\"size\":602,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":269,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-75,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":67,\"unit\":\"px\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6bf8d6c4\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=50714e7\"}},\"elements\":[{\"id\":\"172efaaa\",\"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\":\"2628b693\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"-285\",\"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\":\"75\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f9c10ed\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"34\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/Acanthus-black-white-02-copy.png\"},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.050000000000000003,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":25,\"blur\":30,\"spread\":-10,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"25\",\"bottom\":\"40\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=5425a2a\",\"border_color\":\"globals\\/colors?id=secondary\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true}},\"elements\":[{\"id\":\"5bfef58d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"30\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/pp1.jpg\"},\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":20,\"blur\":20,\"spread\":-10,\"color\":\"rgba(0, 0, 0, 0.09)\"},\"_margin\":{\"unit\":\"%\",\"top\":\"-37\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"-63\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_mask_image\":{\"id\":\"52\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/hex2.png\"},\"width_tablet\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"18\",\"left\":\"9\",\"isLinked\":false},\"jkit_transform_rotate\":{\"unit\":\"px\",\"size\":356,\"sizes\":[]},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"536734fe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Harry Smith\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7d2eebfe\",\"elType\":\"widget\",\"settings\":{\"title\":\"English Teacher\",\"header_size\":\"h5\",\"align\":\"center\",\"_margin\":{\"unit\":\"%\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=24b2df3\",\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ed8dd0d\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"__globals__\":{\"stars_color\":\"globals\\/colors?id=3c09f21\"}},\"elements\":[],\"widgetType\":\"star-rating\"},{\"id\":\"f044e69\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0\\\" Lorem ipsum dolor sit amet, consectetur adipiscing elit. Suspendisse est neque, ultrices at enim vitae, mattis consequat dui.\\\"<\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=e64be90\",\"typography_typography\":\"globals\\/typography?id=35188cd\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"20688c95\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact\",\"align\":\"center\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=53ec359\",\"button_background_hover_color\":\"globals\\/colors?id=4b29dee\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"4f7656f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"34\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/Acanthus-black-white-02-copy.png\"},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.050000000000000003,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":25,\"blur\":30,\"spread\":-10,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"25\",\"bottom\":\"40\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=0a21634\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"7\",\"bottom\":\"0\",\"left\":\"7\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":300,\"background_overlay_position\":\"center left\"},\"elements\":[{\"id\":\"3249624e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"39\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/pp2.jpg\"},\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":20,\"blur\":20,\"spread\":-10,\"color\":\"rgba(0, 0, 0, 0.09)\"},\"_margin\":{\"unit\":\"%\",\"top\":\"-37\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"-63\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_mask_image\":{\"id\":\"52\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/hex2.png\"},\"width_tablet\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"18\",\"left\":\"9\",\"isLinked\":false},\"jkit_transform_rotate\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b736f11\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gregory Warren\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15dc9be4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Social Teacher\",\"header_size\":\"h5\",\"align\":\"center\",\"_margin\":{\"unit\":\"%\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=24b2df3\",\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2960b3d4\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"__globals__\":{\"stars_color\":\"globals\\/colors?id=3c09f21\"}},\"elements\":[],\"widgetType\":\"star-rating\"},{\"id\":\"25715d57\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0\\\" Lorem ipsum dolor sit amet, consectetur adipiscing elit. Suspendisse est neque, ultrices at enim vitae, mattis consequat dui.\\\"<\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=e64be90\",\"typography_typography\":\"globals\\/typography?id=35188cd\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6ca6010a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact\",\"align\":\"center\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=5425a2a\",\"button_background_hover_color\":\"globals\\/colors?id=7f7112a\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"2302c129\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"34\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/Acanthus-black-white-02-copy.png\"},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.050000000000000003,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":25,\"blur\":30,\"spread\":-10,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"25\",\"bottom\":\"40\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=8eb8d4a\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"14\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":600},\"elements\":[{\"id\":\"40edaa36\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"44\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/pp3.jpg\"},\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":20,\"blur\":20,\"spread\":-10,\"color\":\"rgba(0, 0, 0, 0.09)\"},\"_margin\":{\"unit\":\"%\",\"top\":\"-37\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"-63\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_mask_image\":{\"id\":\"52\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/hex2.png\"},\"width_tablet\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"18\",\"left\":\"9\",\"isLinked\":false},\"jkit_transform_rotate\":{\"unit\":\"px\",\"size\":356,\"sizes\":[]},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"62850e01\",\"elType\":\"widget\",\"settings\":{\"title\":\"Peter Wong\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4e5605ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"Math Teacher\",\"header_size\":\"h5\",\"align\":\"center\",\"_margin\":{\"unit\":\"%\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=24b2df3\",\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5934810d\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"__globals__\":{\"stars_color\":\"globals\\/colors?id=3c09f21\"}},\"elements\":[],\"widgetType\":\"star-rating\"},{\"id\":\"727b7370\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0\\\" Lorem ipsum dolor sit amet, consectetur adipiscing elit. Suspendisse est neque, ultrices at enim vitae, mattis consequat dui.\\\"<\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=e64be90\",\"typography_typography\":\"globals\\/typography?id=35188cd\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4f267b20\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact\",\"align\":\"center\",\"__globals__\":[]},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2f080c83\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"75\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"20\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=50714e7\"},\"overflow\":\"hidden\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"125\",\"left\":\"20\",\"isLinked\":false},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"24d69b05\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"_inline_size_tablet\":100,\"_inline_size_mobile\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"6c54f0ff\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"11a2b2dc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":12,\"blur\":12,\"spread\":-6,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=bb22fe7\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3a4926e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"62\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/logoipsum-265.png\"},\"width_mobile\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"5c24e6af\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":12,\"blur\":12,\"spread\":-6,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=80e8ddb\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3d7a7b11\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"66\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/logoipsum-264.png\"},\"width_mobile\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2c33e824\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":12,\"blur\":12,\"spread\":-6,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=d38674d\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1b8ef368\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"69\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/logoipsum-262.png\"},\"width_mobile\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2c7d601d\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"32658876\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":12,\"blur\":12,\"spread\":-6,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=d38674d\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"133f4fcb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"74\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/logoipsum-261.png\"},\"width_mobile\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"23bf024c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":12,\"blur\":12,\"spread\":-6,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=a00e83d\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"4d4c89b1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"76\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/logoipsum-259.png\"},\"width_mobile\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"304b5aa6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":12,\"blur\":12,\"spread\":-6,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=80e8ddb\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"69f80618\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"80\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/logoipsum-254.png\"},\"width_mobile\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"502a525a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"867aa3c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Trusted Partners\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"align_tablet\":\"center\",\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6fcba7bd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Donec hendrerit nibh in lectus molestie, id bibendum orci hendrerit. Curabitur euismod ante finibus nibh suscipit, vitae vehicula eros venenatis.<\\/p>\",\"align_tablet\":\"center\",\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"28f55b55\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"25\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/13-copy.jpg\"},\"background_repeat\":\"repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002,\"sizes\":[]},\"shape_divider_top\":\"tilt\",\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":123,\"sizes\":[]},\"shape_divider_top_flip\":\"yes\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=0a21634\",\"shape_divider_top_color\":\"globals\\/colors?id=50714e7\"},\"shape_divider_top_height_tablet\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"16713d98\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"28ce1d88\",\"elType\":\"widget\",\"settings\":{\"title\":\"Join Our Education center Now\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"},\"align_tablet\":\"center\",\"_margin_mobile\":{\"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},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2cb72972\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"28\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/c2.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":37.046999999999997},\"_position\":\"absolute\",\"_offset_x\":{\"size\":508,\"unit\":\"px\"},\"_offset_y\":{\"size\":-54,\"unit\":\"px\"},\"_z_index\":7,\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":89.066999999999993},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":30.067},\"_offset_x_tablet\":{\"size\":94,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":252,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-60,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":28,\"unit\":\"px\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"26068e28\",\"elType\":\"widget\",\"settings\":{\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"},\"align_tablet\":\"center\",\"_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},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"324ca56a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Sign Up Now\",\"align\":\"left\",\"_z_index\":9,\"__globals__\":{\"background_color\":\"globals\\/colors?id=5425a2a\",\"button_background_hover_color\":\"globals\\/colors?id=7f7112a\"},\"align_tablet\":\"center\",\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"74253f20\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"26\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/edge3.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":18.638000000000002},\"_offset_x\":{\"size\":172,\"unit\":\"px\"},\"_offset_y\":{\"size\":331,\"unit\":\"px\"},\"_z_index\":7,\"_margin\":{\"unit\":\"%\",\"top\":\"-60\",\"right\":\"45\",\"bottom\":\"0\",\"left\":\"-45\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":39,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3f4d1f73\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"-150\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"50\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-160\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"42320bd1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"46\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/cute-elementary-kids-with-books-at-school-2022-12-16-18-15-57-utc-copy.jpg\"},\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":\"51\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/liki.png\"},\"width_tablet\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":88,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3e131936\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"57\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/cute-elementary-kids-with-books-at-school-2022-12-16-18-15-57-utc2.png\"},\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_position\":\"absolute\",\"width_tablet\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":88,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(773,163,'_elementor_page_assets','a:1:{s:6:\"styles\";a:54:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";i:34;s:12:\"e-animations\";i:35;s:12:\"e-animations\";i:36;s:12:\"e-animations\";i:37;s:12:\"e-animations\";i:38;s:12:\"e-animations\";i:39;s:12:\"e-animations\";i:40;s:12:\"e-animations\";i:41;s:12:\"e-animations\";i:42;s:12:\"e-animations\";i:43;s:12:\"e-animations\";i:44;s:12:\"e-animations\";i:45;s:12:\"e-animations\";i:46;s:12:\"e-animations\";i:47;s:12:\"e-animations\";i:48;s:12:\"e-animations\";i:49;s:12:\"e-animations\";i:50;s:12:\"e-animations\";i:51;s:12:\"e-animations\";i:52;s:12:\"e-animations\";i:53;s:12:\"e-animations\";}}'),(775,164,'_wp_page_template','elementor_header_footer'),(776,164,'_elementor_edit_mode','builder'),(777,164,'_elementor_template_type','wp-page'),(778,164,'_elementor_version','3.15.3'),(779,164,'_elementor_data','[{\"id\":\"1b43d4a4\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"7\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/2-copy.jpg\"},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"shape_divider_bottom\":\"tilt\",\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":225,\"sizes\":[]},\"shape_divider_bottom_flip\":\"yes\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"00\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.55000000000000004,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=ff9d88d\",\"shape_divider_bottom_color\":\"globals\\/colors?id=a00e83d\"},\"overflow\":\"hidden\",\"shape_divider_bottom_height_tablet\":{\"unit\":\"px\",\"size\":105,\"sizes\":[]},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"130\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"20\",\"bottom\":\"130\",\"left\":\"20\",\"isLinked\":false},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"5a2e5ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"73c21425\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Smart  \",\"sg_title_focused\":\"Learning\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_typography_content_typography_typography\":\"custom\",\"st_title_typography_content_typography_font_family\":\"Mulish\",\"st_title_typography_content_typography_font_size\":{\"unit\":\"rem\",\"size\":8.5,\"sizes\":[]},\"st_title_typography_content_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":4.7999999999999998,\"sizes\":[]},\"st_title_typography_content_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":3.7000000000000002,\"sizes\":[]},\"st_title_typography_content_typography_font_weight\":\"800\",\"st_title_typography_content_typography_text_transform\":\"capitalize\",\"st_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"st_title_typography_content_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=4244abd\",\"st_focused_typography_content_typography_typography\":\"globals\\/typography?id=d65c9cc\",\"st_focused_color_responsive\":\"globals\\/colors?id=secondary\",\"st_title_color_responsive\":\"globals\\/colors?id=secondary\"},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_general_alignment_responsive_tablet\":\"center\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"},{\"id\":\"6a57c977\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Study \",\"sg_title_focused\":\"Easily\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_typography_content_typography_typography\":\"custom\",\"st_title_typography_content_typography_font_family\":\"Mulish\",\"st_title_typography_content_typography_font_size\":{\"unit\":\"rem\",\"size\":8.5,\"sizes\":[]},\"st_title_typography_content_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":4.7999999999999998,\"sizes\":[]},\"st_title_typography_content_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":3.7000000000000002,\"sizes\":[]},\"st_title_typography_content_typography_font_weight\":\"800\",\"st_title_typography_content_typography_text_transform\":\"capitalize\",\"st_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"st_title_typography_content_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=4244abd\",\"st_focused_typography_content_typography_typography\":\"globals\\/typography?id=d65c9cc\",\"st_focused_color_responsive\":\"globals\\/colors?id=secondary\",\"st_title_color_responsive\":\"globals\\/colors?id=secondary\"},\"_margin\":{\"unit\":\"%\",\"top\":\"-7\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"-6\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_general_alignment_responsive_tablet\":\"center\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"},{\"id\":\"3087a342\",\"elType\":\"widget\",\"settings\":{\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"},\"align_tablet\":\"center\",\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3a0c81f4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Check It Out\",\"align_tablet\":\"center\",\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"3b3b1623\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"-115\",\"right\":\"-50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-75\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7f89b368\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"13\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/boy3.png\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"-85\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_position\":\"absolute\",\"_z_index\":2,\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-40\",\"bottom\":\"0\",\"left\":\"-40\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b0d8b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"15\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/c3.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":14.5},\"_position\":\"absolute\",\"_offset_x\":{\"size\":88,\"unit\":\"px\"},\"_offset_y\":{\"size\":22,\"unit\":\"px\"},\"_z_index\":7,\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":33.216999999999999},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":21.216999999999999},\"_offset_x_tablet\":{\"size\":111,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":272,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":100,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":75,\"unit\":\"px\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"478271ab\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"17\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/edge.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":14.5},\"_position\":\"absolute\",\"_offset_x\":{\"size\":521,\"unit\":\"px\"},\"_offset_y\":{\"size\":116,\"unit\":\"px\"},\"_z_index\":7,\"_element_width_tablet\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":78.216999999999999},\"_offset_x_tablet\":{\"size\":534,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":203,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":103,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":382,\"unit\":\"px\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e73906\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"19\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/c1.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32.997},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-11,\"unit\":\"px\"},\"_offset_y\":{\"size\":426,\"unit\":\"px\"},\"_z_index\":7,\"_element_width_tablet\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":415.06700000000001},\"_offset_x_tablet\":{\"size\":-241,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":-256,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":410,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":327,\"unit\":\"px\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4a051f2a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"28\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/c2.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":6.9939999999999998},\"_position\":\"absolute\",\"_offset_x\":{\"size\":539,\"unit\":\"px\"},\"_offset_y\":{\"size\":140,\"unit\":\"px\"},\"_z_index\":7,\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":44.332999999999998},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":91.332999999999998},\"_offset_x_tablet\":{\"size\":545,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":196,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":124,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-13,\"unit\":\"px\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1673b95c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"35\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/little-boy-is-having-online-lessons-by-using-lapto-2022-02-03-17-43-51-utc-copy.jpg\"},\"image_border_border\":\"none\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"image_box_shadow_box_shadow\":{\"horizontal\":100,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.09)\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"-85\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1,\"_background_background\":\"classic\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":\"41\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/liki3.png\"},\"_mask_position\":\"top right\",\"__globals__\":{\"_background_color\":\"\",\"image_border_color\":\"globals\\/colors?id=secondary\"},\"width_tablet\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-40\",\"bottom\":\"0\",\"left\":\"-40\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f1771ce\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"280\",\"left\":\"0\",\"isLinked\":false},\"shape_divider_bottom\":\"tilt\",\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=a00e83d\"},\"overflow\":\"hidden\",\"shape_divider_bottom_height_tablet\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"170\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b6d584b\",\"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\":\"6032aede\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"14\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/c4.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":3.875},\"_position\":\"absolute\",\"_offset_x\":{\"size\":951,\"unit\":\"px\"},\"_offset_y\":{\"size\":33,\"unit\":\"px\"},\"_z_index\":7,\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":36.732999999999997},\"_offset_x_tablet\":{\"size\":614,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":34,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":37,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":80,\"unit\":\"px\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7ba2bee1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"29\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/edge2.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":6.6630000000000003},\"_position\":\"absolute\",\"_offset_x\":{\"size\":325,\"unit\":\"px\"},\"_offset_y\":{\"size\":-43,\"unit\":\"px\"},\"_z_index\":7,\"_offset_x_tablet\":{\"size\":116,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-19,\"unit\":\"px\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"639ecddb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Primary Courses\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6cbb0273\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":175,\"sizes\":[]},\"shape_divider_bottom_flip\":\"yes\",\"__globals__\":{\"shape_divider_bottom_color\":\"globals\\/colors?id=bb22fe7\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7003617b\",\"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\":\"33d7d2f0\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"%\",\"top\":\"-20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"-53\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6768445a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"785c9c90\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"48\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/kids-taking-exam-in-school-2022-06-29-19-26-45-utc-copy.jpg\"},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"35\",\"left\":\"15\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":15,\"blur\":25,\"spread\":-5,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=secondary\"},\"jkit_transform_rotate\":{\"unit\":\"px\",\"size\":358,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"133d57a9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Social Studies\",\"header_size\":\"h4\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2905a3bd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1780998b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"1bb97169\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"f1fc8ed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"38\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/portrait-of-happy-caucasian-boy-standing-at-chalkb-2021-09-03-06-28-24-utc-copy.jpg\"},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"35\",\"left\":\"15\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":15,\"blur\":25,\"spread\":-5,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=secondary\"},\"jkit_transform_rotate\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1be70e33\",\"elType\":\"widget\",\"settings\":{\"title\":\"Mathematics \",\"header_size\":\"h4\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"84221db\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"389f3412\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"3147fc34\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"27a107c5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"55\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/woman-learning-english-online-2021-08-26-15-34-41-utc-copy.jpg\"},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"35\",\"left\":\"15\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":15,\"blur\":25,\"spread\":-5,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=secondary\"},\"jkit_transform_rotate\":{\"unit\":\"px\",\"size\":358,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6f699cb3\",\"elType\":\"widget\",\"settings\":{\"title\":\"English Course\",\"header_size\":\"h4\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6e14a87b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"12d35f7c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"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\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"52e2d9dc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"65\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/3-copy.jpg\"},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.69999999999999996,\"sizes\":[]},\"shape_divider_top\":\"tilt\",\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":175,\"sizes\":[]},\"shape_divider_top_flip\":\"yes\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=bb22fe7\",\"background_overlay_color\":\"globals\\/colors?id=bb22fe7\"},\"overflow\":\"hidden\",\"shape_divider_top_height_tablet\":{\"unit\":\"px\",\"size\":69,\"sizes\":[]},\"shape_divider_top_height_mobile\":{\"unit\":\"px\",\"size\":51,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"140\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"f426e2a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42.542999999999999,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"content_position_tablet\":\"center\",\"align_tablet\":\"center\",\"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\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"5a616044\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"23\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/aged-teacher-2021-09-24-03-26-41-utc.jpg\"},\"opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-125\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=dafc007\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"150\",\"bottom\":\"0\",\"left\":\"150\",\"isLinked\":false},\"_margin_mobile\":{\"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},\"_element_width_tablet\":\"auto\",\"_z_index_mobile\":6},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"76aca3b6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"32\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/aged-teacher-2021-09-24-03-26-41-utc-2.png\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-125\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-2,\"unit\":\"px\"},\"_offset_y\":{\"size\":1,\"unit\":\"px\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"150\",\"bottom\":\"0\",\"left\":\"150\",\"isLinked\":false},\"_margin_mobile\":{\"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},\"_z_index_mobile\":7},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6ba18f0a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":57.457000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"75\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1da3bcbb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Preparing Our Children\\u2019s Bright Future\",\"align_tablet\":\"center\",\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1f66d3c5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"29\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/edge2.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":13.539999999999999},\"_position\":\"absolute\",\"_offset_x\":{\"size\":24,\"unit\":\"px\"},\"_offset_y\":{\"size\":-38,\"unit\":\"px\"},\"_z_index\":7,\"_element_width_tablet\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":70.582999999999998},\"_offset_x_tablet\":{\"size\":14,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":-4,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":8,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":12,\"unit\":\"px\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4a9c2692\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec ultrices purus nec sollicitudin eleifend. In hac habitasse platea dictumst.<\\/p>\",\"align_tablet\":\"center\",\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2a5e6eb3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-line-chart-light\",\"library\":\"jkiticon\"},\"view\":\"stacked\",\"title_text\":\"Grade Improvement\",\"description_text\":\" Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"position\":\"left\",\"icon_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=d50cf18\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"primary_color\":\"globals\\/colors?id=7f7112a\",\"description_typography_typography\":\"globals\\/typography?id=f8cdd91\"},\"icon_space_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"text_align_tablet\":\"left\",\"text_align_mobile\":\"center\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_element_width_tablet\":\"auto\",\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"131750b8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-open-book-light\",\"library\":\"jkiticon\"},\"view\":\"stacked\",\"title_text\":\"Exam Preparation\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing.\",\"position\":\"left\",\"secondary_color\":\"#FFFFFF\",\"icon_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Exo 2\",\"title_typography_font_size\":{\"unit\":\"rem\",\"size\":1.6000000000000001,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.2,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2,\"sizes\":[]},\"title_typography_font_weight\":\"800\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=d50cf18\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"primary_color\":\"globals\\/colors?id=dafc007\",\"description_typography_typography\":\"globals\\/typography?id=f8cdd91\"},\"icon_space_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_element_width_tablet\":\"auto\",\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"62288012\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-users\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Social Development\",\"description_text\":\"Donec et massa sit amet augue laoreet venenatis id et urna.\",\"position\":\"left\",\"icon_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=d50cf18\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"primary_color\":\"globals\\/colors?id=0a21634\",\"description_typography_typography\":\"globals\\/typography?id=f8cdd91\"},\"icon_space_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_tablet\":\"auto\",\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"6b0269ef\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"19\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/c1.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.43},\"_position\":\"absolute\",\"_offset_x\":{\"size\":578,\"unit\":\"px\"},\"_offset_y\":{\"size\":-180,\"unit\":\"px\"},\"_z_index\":7,\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":116.93300000000001},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":150.93299999999999},\"_offset_x_tablet\":{\"size\":576,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":-61,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-606,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-475,\"unit\":\"px\"},\"_z_index_mobile\":1,\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"11e683e1\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":\"47\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/boy-at-lesson-2021-09-24-03-25-58-utc-copy.jpg\"},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.81000000000000005,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=5425a2a\"},\"background_position\":\"center center\",\"overflow\":\"hidden\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"62726094\",\"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\":\"7696e562\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our vision is every child is safe, inspired, challenged, empowered.\",\"align\":\"center\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"291cdd84\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"17\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/edge.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":9.5749999999999993},\"_position\":\"absolute\",\"_offset_x\":{\"size\":1129,\"unit\":\"px\"},\"_offset_y\":{\"size\":-59,\"unit\":\"px\"},\"_z_index\":7,\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":52.017000000000003},\"_offset_x_mobile\":{\"size\":249,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-19,\"unit\":\"px\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5405eae3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"15\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/c3.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":8.1790000000000003},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-12,\"unit\":\"px\"},\"_offset_y\":{\"size\":-28,\"unit\":\"px\"},\"_z_index\":7,\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":88.516999999999996},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":130.517},\"_offset_x_tablet\":{\"size\":-60,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":-106,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-60,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":70,\"unit\":\"px\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"35062fd0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Integer efficitur ligula ipsum, at vulputate mi fermentum sit amet. Sed pulvinar rutrum commodo. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean vitae tortor nec lectus mattis congue id sed tortor.<\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"36f886f7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"14\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/c4.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":3.73},\"_position\":\"absolute\",\"_offset_x\":{\"size\":81,\"unit\":\"px\"},\"_offset_y\":{\"size\":91,\"unit\":\"px\"},\"_z_index\":7,\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_offset_x_tablet\":{\"size\":616,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":10,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":101,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":30,\"unit\":\"px\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3cc6830a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"75553c20\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"shape_divider_bottom_flip\":\"yes\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=a00e83d\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"97c1c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_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\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"247f69f0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Programs for excellence\",\"align_tablet\":\"center\",\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"777b3a8c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"19\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/c1.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":22.148},\"_position\":\"absolute\",\"_offset_x\":{\"size\":470,\"unit\":\"px\"},\"_offset_y\":{\"size\":-54,\"unit\":\"px\"},\"_z_index\":7,\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":73.183000000000007},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":39.183},\"_offset_x_tablet\":{\"size\":154,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":249,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-218,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-288,\"unit\":\"px\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1d77a3a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"29\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/edge2.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":15.734},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-44,\"unit\":\"px\"},\"_offset_y\":{\"size\":26,\"unit\":\"px\"},\"_z_index\":7,\"_element_width_tablet\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":63.75},\"_offset_x_tablet\":{\"size\":28,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":2,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-23,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-18,\"unit\":\"px\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"69fbb26b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Mauris at lacus semper, fermentum mi sed, rutrum nibh. Sed gravida elit ligula, sit amet venenatis diam hendrerit iaculis.<\\/p>\",\"align_tablet\":\"center\",\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"80ecc3f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"28\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/c2.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":10.724},\"_position\":\"absolute\",\"_offset_x\":{\"size\":179,\"unit\":\"px\"},\"_offset_y\":{\"size\":408,\"unit\":\"px\"},\"_z_index\":7,\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":42.116999999999997},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":30.117000000000001},\"_offset_x_tablet\":{\"size\":635,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":254,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-31,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":355,\"unit\":\"px\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"36ed7571\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover More\",\"align_tablet\":\"center\",\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"1e716000\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"74e0a882\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"617b3cb8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2156a27f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"40\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/grade.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_border\":\"none\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"5\",\"isLinked\":false},\"__globals__\":{\"_border_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=384fc29\"},\"jkit_transform_rotate\":{\"unit\":\"px\",\"size\":360,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1664fafd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Grade Boost\",\"header_size\":\"h5\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3cbe788b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet.<\\/p>\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=f8cdd91\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"2bb04b8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"41a65060\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"45\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/chart.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_border\":\"none\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"5\",\"isLinked\":false},\"__globals__\":{\"_border_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=98e3e15\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20d3131e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Skill Evaluation\",\"header_size\":\"h5\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"621208f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet.<\\/p>\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=f8cdd91\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7db08f0d\",\"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\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"7f824463\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3657acce\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"50\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/test-exam-sheet.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_border\":\"none\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"5\",\"isLinked\":false},\"__globals__\":{\"_border_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=7f7112a\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"54b44e19\",\"elType\":\"widget\",\"settings\":{\"title\":\"Mock Exam\",\"header_size\":\"h5\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7da043cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet.<\\/p>\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=f8cdd91\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"11b6e1fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"401111e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"54\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/schedule-sheet.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_border\":\"none\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"5\",\"isLinked\":false},\"__globals__\":{\"_border_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=4b29dee\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2b04a0cf\",\"elType\":\"widget\",\"settings\":{\"title\":\"Weekend Class\",\"header_size\":\"h5\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7398c131\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet.<\\/p>\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=f8cdd91\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"67d987bc\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":\"25\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/13-copy.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002,\"sizes\":[]},\"shape_divider_top\":\"tilt\",\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":130,\"sizes\":[]},\"shape_divider_top_flip\":\"yes\",\"shape_divider_bottom\":\"tilt\",\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":180,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"185\",\"right\":\"0\",\"bottom\":\"400\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"shape_divider_top_color\":\"globals\\/colors?id=a00e83d\",\"background_overlay_color\":\"globals\\/colors?id=98e3e15\",\"shape_divider_bottom_color\":\"globals\\/colors?id=50714e7\"},\"overflow\":\"hidden\",\"shape_divider_top_height_tablet\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"shape_divider_bottom_height_tablet\":{\"unit\":\"px\",\"size\":102,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"230\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7e44fc62\",\"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\":\"6fe80e94\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Popular Teacher\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"35cd5615\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"14\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/c4.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":3.73},\"_position\":\"absolute\",\"_offset_x\":{\"size\":1013,\"unit\":\"px\"},\"_offset_y\":{\"size\":57,\"unit\":\"px\"},\"_z_index\":7,\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":20.800000000000001},\"_offset_x_tablet\":{\"size\":624,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":257,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":49,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":134,\"unit\":\"px\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2d8a0fb0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"15\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/c3.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":13.103},\"_position\":\"absolute\",\"_offset_x\":{\"size\":1022,\"unit\":\"px\"},\"_offset_y\":{\"size\":-124,\"unit\":\"px\"},\"_z_index\":7,\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":56.966999999999999},\"_offset_x_tablet\":{\"size\":602,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":269,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-75,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":67,\"unit\":\"px\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6bf8d6c4\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=50714e7\"}},\"elements\":[{\"id\":\"172efaaa\",\"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\":\"2628b693\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"-285\",\"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\":\"75\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f9c10ed\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"34\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/Acanthus-black-white-02-copy.png\"},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.050000000000000003,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":25,\"blur\":30,\"spread\":-10,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"25\",\"bottom\":\"40\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=5425a2a\",\"border_color\":\"globals\\/colors?id=secondary\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true}},\"elements\":[{\"id\":\"5bfef58d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"30\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/pp1.jpg\"},\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":20,\"blur\":20,\"spread\":-10,\"color\":\"rgba(0, 0, 0, 0.09)\"},\"_margin\":{\"unit\":\"%\",\"top\":\"-37\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"-63\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_mask_image\":{\"id\":\"52\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/hex2.png\"},\"width_tablet\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"18\",\"left\":\"9\",\"isLinked\":false},\"jkit_transform_rotate\":{\"unit\":\"px\",\"size\":356,\"sizes\":[]},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"536734fe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Harry Smith\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7d2eebfe\",\"elType\":\"widget\",\"settings\":{\"title\":\"English Teacher\",\"header_size\":\"h5\",\"align\":\"center\",\"_margin\":{\"unit\":\"%\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=24b2df3\",\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ed8dd0d\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"__globals__\":{\"stars_color\":\"globals\\/colors?id=3c09f21\"}},\"elements\":[],\"widgetType\":\"star-rating\"},{\"id\":\"f044e69\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0\\\" Lorem ipsum dolor sit amet, consectetur adipiscing elit. Suspendisse est neque, ultrices at enim vitae, mattis consequat dui.\\\"<\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=e64be90\",\"typography_typography\":\"globals\\/typography?id=35188cd\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"20688c95\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact\",\"align\":\"center\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=53ec359\",\"button_background_hover_color\":\"globals\\/colors?id=4b29dee\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"4f7656f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"34\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/Acanthus-black-white-02-copy.png\"},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.050000000000000003,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":25,\"blur\":30,\"spread\":-10,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"25\",\"bottom\":\"40\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=0a21634\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"7\",\"bottom\":\"0\",\"left\":\"7\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":300,\"background_overlay_position\":\"center left\"},\"elements\":[{\"id\":\"3249624e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"39\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/pp2.jpg\"},\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":20,\"blur\":20,\"spread\":-10,\"color\":\"rgba(0, 0, 0, 0.09)\"},\"_margin\":{\"unit\":\"%\",\"top\":\"-37\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"-63\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_mask_image\":{\"id\":\"52\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/hex2.png\"},\"width_tablet\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"18\",\"left\":\"9\",\"isLinked\":false},\"jkit_transform_rotate\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b736f11\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gregory Warren\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15dc9be4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Social Teacher\",\"header_size\":\"h5\",\"align\":\"center\",\"_margin\":{\"unit\":\"%\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=24b2df3\",\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2960b3d4\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"__globals__\":{\"stars_color\":\"globals\\/colors?id=3c09f21\"}},\"elements\":[],\"widgetType\":\"star-rating\"},{\"id\":\"25715d57\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0\\\" Lorem ipsum dolor sit amet, consectetur adipiscing elit. Suspendisse est neque, ultrices at enim vitae, mattis consequat dui.\\\"<\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=e64be90\",\"typography_typography\":\"globals\\/typography?id=35188cd\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6ca6010a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact\",\"align\":\"center\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=5425a2a\",\"button_background_hover_color\":\"globals\\/colors?id=7f7112a\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"2302c129\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"34\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/Acanthus-black-white-02-copy.png\"},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.050000000000000003,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":25,\"blur\":30,\"spread\":-10,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"25\",\"bottom\":\"40\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=8eb8d4a\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"14\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":600},\"elements\":[{\"id\":\"40edaa36\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"44\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/pp3.jpg\"},\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":20,\"blur\":20,\"spread\":-10,\"color\":\"rgba(0, 0, 0, 0.09)\"},\"_margin\":{\"unit\":\"%\",\"top\":\"-37\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"-63\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_mask_image\":{\"id\":\"52\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/hex2.png\"},\"width_tablet\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"18\",\"left\":\"9\",\"isLinked\":false},\"jkit_transform_rotate\":{\"unit\":\"px\",\"size\":356,\"sizes\":[]},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"62850e01\",\"elType\":\"widget\",\"settings\":{\"title\":\"Peter Wong\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4e5605ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"Math Teacher\",\"header_size\":\"h5\",\"align\":\"center\",\"_margin\":{\"unit\":\"%\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=24b2df3\",\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5934810d\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"__globals__\":{\"stars_color\":\"globals\\/colors?id=3c09f21\"}},\"elements\":[],\"widgetType\":\"star-rating\"},{\"id\":\"727b7370\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0\\\" Lorem ipsum dolor sit amet, consectetur adipiscing elit. Suspendisse est neque, ultrices at enim vitae, mattis consequat dui.\\\"<\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=e64be90\",\"typography_typography\":\"globals\\/typography?id=35188cd\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4f267b20\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact\",\"align\":\"center\",\"__globals__\":[]},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2f080c83\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"75\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"20\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=50714e7\"},\"overflow\":\"hidden\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"125\",\"left\":\"20\",\"isLinked\":false},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"24d69b05\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"_inline_size_tablet\":100,\"_inline_size_mobile\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"6c54f0ff\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"11a2b2dc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":12,\"blur\":12,\"spread\":-6,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=bb22fe7\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3a4926e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"62\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/logoipsum-265.png\"},\"width_mobile\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"5c24e6af\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":12,\"blur\":12,\"spread\":-6,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=80e8ddb\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3d7a7b11\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"66\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/logoipsum-264.png\"},\"width_mobile\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2c33e824\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":12,\"blur\":12,\"spread\":-6,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=d38674d\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1b8ef368\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"69\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/logoipsum-262.png\"},\"width_mobile\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2c7d601d\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"32658876\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":12,\"blur\":12,\"spread\":-6,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=d38674d\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"133f4fcb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"74\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/logoipsum-261.png\"},\"width_mobile\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"23bf024c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":12,\"blur\":12,\"spread\":-6,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=a00e83d\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"4d4c89b1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"76\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/logoipsum-259.png\"},\"width_mobile\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"304b5aa6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":12,\"blur\":12,\"spread\":-6,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=80e8ddb\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"69f80618\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"80\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/logoipsum-254.png\"},\"width_mobile\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"502a525a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"867aa3c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Trusted Partners\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"align_tablet\":\"center\",\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6fcba7bd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Donec hendrerit nibh in lectus molestie, id bibendum orci hendrerit. Curabitur euismod ante finibus nibh suscipit, vitae vehicula eros venenatis.<\\/p>\",\"align_tablet\":\"center\",\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"28f55b55\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"25\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/13-copy.jpg\"},\"background_repeat\":\"repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002,\"sizes\":[]},\"shape_divider_top\":\"tilt\",\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":123,\"sizes\":[]},\"shape_divider_top_flip\":\"yes\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=0a21634\",\"shape_divider_top_color\":\"globals\\/colors?id=50714e7\"},\"shape_divider_top_height_tablet\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"16713d98\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"28ce1d88\",\"elType\":\"widget\",\"settings\":{\"title\":\"Join Our Education center Now\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"},\"align_tablet\":\"center\",\"_margin_mobile\":{\"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},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2cb72972\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"28\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/c2.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":37.046999999999997},\"_position\":\"absolute\",\"_offset_x\":{\"size\":508,\"unit\":\"px\"},\"_offset_y\":{\"size\":-54,\"unit\":\"px\"},\"_z_index\":7,\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":89.066999999999993},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":30.067},\"_offset_x_tablet\":{\"size\":94,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":252,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-60,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":28,\"unit\":\"px\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"26068e28\",\"elType\":\"widget\",\"settings\":{\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"},\"align_tablet\":\"center\",\"_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},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"324ca56a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Sign Up Now\",\"align\":\"left\",\"_z_index\":9,\"__globals__\":{\"background_color\":\"globals\\/colors?id=5425a2a\",\"button_background_hover_color\":\"globals\\/colors?id=7f7112a\"},\"align_tablet\":\"center\",\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"74253f20\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"26\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/edge3.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":18.638000000000002},\"_offset_x\":{\"size\":172,\"unit\":\"px\"},\"_offset_y\":{\"size\":331,\"unit\":\"px\"},\"_z_index\":7,\"_margin\":{\"unit\":\"%\",\"top\":\"-60\",\"right\":\"45\",\"bottom\":\"0\",\"left\":\"-45\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":39,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3f4d1f73\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"-150\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"50\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-160\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"42320bd1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"46\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/cute-elementary-kids-with-books-at-school-2022-12-16-18-15-57-utc-copy.jpg\"},\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":\"51\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/liki.png\"},\"width_tablet\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":88,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3e131936\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"57\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/cute-elementary-kids-with-books-at-school-2022-12-16-18-15-57-utc2.png\"},\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_position\":\"absolute\",\"width_tablet\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":88,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(780,164,'_elementor_page_assets','a:1:{s:6:\"styles\";a:54:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";i:34;s:12:\"e-animations\";i:35;s:12:\"e-animations\";i:36;s:12:\"e-animations\";i:37;s:12:\"e-animations\";i:38;s:12:\"e-animations\";i:39;s:12:\"e-animations\";i:40;s:12:\"e-animations\";i:41;s:12:\"e-animations\";i:42;s:12:\"e-animations\";i:43;s:12:\"e-animations\";i:44;s:12:\"e-animations\";i:45;s:12:\"e-animations\";i:46;s:12:\"e-animations\";i:47;s:12:\"e-animations\";i:48;s:12:\"e-animations\";i:49;s:12:\"e-animations\";i:50;s:12:\"e-animations\";i:51;s:12:\"e-animations\";i:52;s:12:\"e-animations\";i:53;s:12:\"e-animations\";}}'),(782,165,'_wp_page_template','elementor_header_footer'),(783,165,'_elementor_edit_mode','builder'),(784,165,'_elementor_template_type','wp-page'),(785,165,'_elementor_version','3.15.3'),(786,165,'_elementor_data','[{\"id\":\"1b43d4a4\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"7\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/2-copy.jpg\"},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"shape_divider_bottom\":\"tilt\",\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":225,\"sizes\":[]},\"shape_divider_bottom_flip\":\"yes\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"0\",\"bottom\":\"00\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.55000000000000004,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=ff9d88d\",\"shape_divider_bottom_color\":\"globals\\/colors?id=a00e83d\"},\"overflow\":\"hidden\",\"shape_divider_bottom_height_tablet\":{\"unit\":\"px\",\"size\":105,\"sizes\":[]},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"130\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"20\",\"bottom\":\"130\",\"left\":\"20\",\"isLinked\":false},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"5a2e5ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"73c21425\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Smart  \",\"sg_title_focused\":\"Learning\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_typography_content_typography_typography\":\"custom\",\"st_title_typography_content_typography_font_family\":\"Mulish\",\"st_title_typography_content_typography_font_size\":{\"unit\":\"rem\",\"size\":8.5,\"sizes\":[]},\"st_title_typography_content_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":4.7999999999999998,\"sizes\":[]},\"st_title_typography_content_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":3.7000000000000002,\"sizes\":[]},\"st_title_typography_content_typography_font_weight\":\"800\",\"st_title_typography_content_typography_text_transform\":\"capitalize\",\"st_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"st_title_typography_content_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=4244abd\",\"st_focused_typography_content_typography_typography\":\"globals\\/typography?id=d65c9cc\",\"st_focused_color_responsive\":\"globals\\/colors?id=secondary\",\"st_title_color_responsive\":\"globals\\/colors?id=secondary\"},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_general_alignment_responsive_tablet\":\"center\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"},{\"id\":\"6a57c977\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Study \",\"sg_title_focused\":\"Easily\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_typography_content_typography_typography\":\"custom\",\"st_title_typography_content_typography_font_family\":\"Mulish\",\"st_title_typography_content_typography_font_size\":{\"unit\":\"rem\",\"size\":8.5,\"sizes\":[]},\"st_title_typography_content_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":4.7999999999999998,\"sizes\":[]},\"st_title_typography_content_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":3.7000000000000002,\"sizes\":[]},\"st_title_typography_content_typography_font_weight\":\"800\",\"st_title_typography_content_typography_text_transform\":\"capitalize\",\"st_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"st_title_typography_content_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=4244abd\",\"st_focused_typography_content_typography_typography\":\"globals\\/typography?id=d65c9cc\",\"st_focused_color_responsive\":\"globals\\/colors?id=secondary\",\"st_title_color_responsive\":\"globals\\/colors?id=secondary\"},\"_margin\":{\"unit\":\"%\",\"top\":\"-7\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"-6\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_general_alignment_responsive_tablet\":\"center\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"},{\"id\":\"3087a342\",\"elType\":\"widget\",\"settings\":{\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"},\"align_tablet\":\"center\",\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3a0c81f4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Check It Out\",\"align_tablet\":\"center\",\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"3b3b1623\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"-115\",\"right\":\"-50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-75\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7f89b368\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"13\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/boy3.png\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"-85\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_position\":\"absolute\",\"_z_index\":2,\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-40\",\"bottom\":\"0\",\"left\":\"-40\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b0d8b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"15\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/c3.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":14.5},\"_position\":\"absolute\",\"_offset_x\":{\"size\":88,\"unit\":\"px\"},\"_offset_y\":{\"size\":22,\"unit\":\"px\"},\"_z_index\":7,\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":33.216999999999999},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":21.216999999999999},\"_offset_x_tablet\":{\"size\":111,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":272,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":100,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":75,\"unit\":\"px\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"478271ab\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"17\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/edge.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":14.5},\"_position\":\"absolute\",\"_offset_x\":{\"size\":521,\"unit\":\"px\"},\"_offset_y\":{\"size\":116,\"unit\":\"px\"},\"_z_index\":7,\"_element_width_tablet\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":78.216999999999999},\"_offset_x_tablet\":{\"size\":534,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":203,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":103,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":382,\"unit\":\"px\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e73906\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"19\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/c1.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32.997},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-11,\"unit\":\"px\"},\"_offset_y\":{\"size\":426,\"unit\":\"px\"},\"_z_index\":7,\"_element_width_tablet\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":415.06700000000001},\"_offset_x_tablet\":{\"size\":-241,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":-256,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":410,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":327,\"unit\":\"px\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4a051f2a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"28\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/c2.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":6.9939999999999998},\"_position\":\"absolute\",\"_offset_x\":{\"size\":539,\"unit\":\"px\"},\"_offset_y\":{\"size\":140,\"unit\":\"px\"},\"_z_index\":7,\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":44.332999999999998},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":91.332999999999998},\"_offset_x_tablet\":{\"size\":545,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":196,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":124,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-13,\"unit\":\"px\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1673b95c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"35\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/little-boy-is-having-online-lessons-by-using-lapto-2022-02-03-17-43-51-utc-copy.jpg\"},\"image_border_border\":\"none\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"image_box_shadow_box_shadow\":{\"horizontal\":100,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.09)\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"-85\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1,\"_background_background\":\"classic\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":\"41\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/liki3.png\"},\"_mask_position\":\"top right\",\"__globals__\":{\"_background_color\":\"\",\"image_border_color\":\"globals\\/colors?id=secondary\"},\"width_tablet\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-40\",\"bottom\":\"0\",\"left\":\"-40\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f1771ce\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"280\",\"left\":\"0\",\"isLinked\":false},\"shape_divider_bottom\":\"tilt\",\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=a00e83d\"},\"overflow\":\"hidden\",\"shape_divider_bottom_height_tablet\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"170\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b6d584b\",\"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\":\"6032aede\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"14\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/c4.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":3.875},\"_position\":\"absolute\",\"_offset_x\":{\"size\":951,\"unit\":\"px\"},\"_offset_y\":{\"size\":33,\"unit\":\"px\"},\"_z_index\":7,\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":36.732999999999997},\"_offset_x_tablet\":{\"size\":614,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":34,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":37,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":80,\"unit\":\"px\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7ba2bee1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"29\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/edge2.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":6.6630000000000003},\"_position\":\"absolute\",\"_offset_x\":{\"size\":325,\"unit\":\"px\"},\"_offset_y\":{\"size\":-43,\"unit\":\"px\"},\"_z_index\":7,\"_offset_x_tablet\":{\"size\":116,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-19,\"unit\":\"px\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"639ecddb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Primary Courses\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6cbb0273\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":175,\"sizes\":[]},\"shape_divider_bottom_flip\":\"yes\",\"__globals__\":{\"shape_divider_bottom_color\":\"globals\\/colors?id=bb22fe7\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7003617b\",\"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\":\"33d7d2f0\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"%\",\"top\":\"-20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"-53\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6768445a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"785c9c90\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"48\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/kids-taking-exam-in-school-2022-06-29-19-26-45-utc-copy.jpg\"},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"35\",\"left\":\"15\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":15,\"blur\":25,\"spread\":-5,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=secondary\"},\"jkit_transform_rotate\":{\"unit\":\"px\",\"size\":358,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"133d57a9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Social Studies\",\"header_size\":\"h4\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2905a3bd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1780998b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"1bb97169\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"f1fc8ed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"38\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/portrait-of-happy-caucasian-boy-standing-at-chalkb-2021-09-03-06-28-24-utc-copy.jpg\"},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"35\",\"left\":\"15\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":15,\"blur\":25,\"spread\":-5,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=secondary\"},\"jkit_transform_rotate\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1be70e33\",\"elType\":\"widget\",\"settings\":{\"title\":\"Mathematics \",\"header_size\":\"h4\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"84221db\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"389f3412\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"3147fc34\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"27a107c5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"55\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/woman-learning-english-online-2021-08-26-15-34-41-utc-copy.jpg\"},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"35\",\"left\":\"15\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":15,\"blur\":25,\"spread\":-5,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=secondary\"},\"jkit_transform_rotate\":{\"unit\":\"px\",\"size\":358,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6f699cb3\",\"elType\":\"widget\",\"settings\":{\"title\":\"English Course\",\"header_size\":\"h4\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6e14a87b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"12d35f7c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"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\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"52e2d9dc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"65\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/3-copy.jpg\"},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.69999999999999996,\"sizes\":[]},\"shape_divider_top\":\"tilt\",\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":175,\"sizes\":[]},\"shape_divider_top_flip\":\"yes\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=bb22fe7\",\"background_overlay_color\":\"globals\\/colors?id=bb22fe7\"},\"overflow\":\"hidden\",\"shape_divider_top_height_tablet\":{\"unit\":\"px\",\"size\":69,\"sizes\":[]},\"shape_divider_top_height_mobile\":{\"unit\":\"px\",\"size\":51,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"140\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"f426e2a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42.542999999999999,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"content_position_tablet\":\"center\",\"align_tablet\":\"center\",\"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\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"5a616044\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"23\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/aged-teacher-2021-09-24-03-26-41-utc.jpg\"},\"opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-125\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=dafc007\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"150\",\"bottom\":\"0\",\"left\":\"150\",\"isLinked\":false},\"_margin_mobile\":{\"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},\"_element_width_tablet\":\"auto\",\"_z_index_mobile\":6},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"76aca3b6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"32\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/aged-teacher-2021-09-24-03-26-41-utc-2.png\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-125\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-2,\"unit\":\"px\"},\"_offset_y\":{\"size\":1,\"unit\":\"px\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"150\",\"bottom\":\"0\",\"left\":\"150\",\"isLinked\":false},\"_margin_mobile\":{\"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},\"_z_index_mobile\":7},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6ba18f0a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":57.457000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"75\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1da3bcbb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Preparing Our Children\\u2019s Bright Future\",\"align_tablet\":\"center\",\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1f66d3c5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"29\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/edge2.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":13.539999999999999},\"_position\":\"absolute\",\"_offset_x\":{\"size\":24,\"unit\":\"px\"},\"_offset_y\":{\"size\":-38,\"unit\":\"px\"},\"_z_index\":7,\"_element_width_tablet\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":70.582999999999998},\"_offset_x_tablet\":{\"size\":14,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":-4,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":8,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":12,\"unit\":\"px\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4a9c2692\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec ultrices purus nec sollicitudin eleifend. In hac habitasse platea dictumst.<\\/p>\",\"align_tablet\":\"center\",\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2a5e6eb3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-line-chart-light\",\"library\":\"jkiticon\"},\"view\":\"stacked\",\"title_text\":\"Grade Improvement\",\"description_text\":\" Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"position\":\"left\",\"icon_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=d50cf18\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"primary_color\":\"globals\\/colors?id=7f7112a\",\"description_typography_typography\":\"globals\\/typography?id=f8cdd91\"},\"icon_space_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"text_align_tablet\":\"left\",\"text_align_mobile\":\"center\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_element_width_tablet\":\"auto\",\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"131750b8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-open-book-light\",\"library\":\"jkiticon\"},\"view\":\"stacked\",\"title_text\":\"Exam Preparation\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing.\",\"position\":\"left\",\"secondary_color\":\"#FFFFFF\",\"icon_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Exo 2\",\"title_typography_font_size\":{\"unit\":\"rem\",\"size\":1.6000000000000001,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.2,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2,\"sizes\":[]},\"title_typography_font_weight\":\"800\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=d50cf18\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"primary_color\":\"globals\\/colors?id=dafc007\",\"description_typography_typography\":\"globals\\/typography?id=f8cdd91\"},\"icon_space_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_element_width_tablet\":\"auto\",\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"62288012\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-users\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Social Development\",\"description_text\":\"Donec et massa sit amet augue laoreet venenatis id et urna.\",\"position\":\"left\",\"icon_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=d50cf18\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"primary_color\":\"globals\\/colors?id=0a21634\",\"description_typography_typography\":\"globals\\/typography?id=f8cdd91\"},\"icon_space_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_tablet\":\"auto\",\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"6b0269ef\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"19\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/c1.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.43},\"_position\":\"absolute\",\"_offset_x\":{\"size\":578,\"unit\":\"px\"},\"_offset_y\":{\"size\":-180,\"unit\":\"px\"},\"_z_index\":7,\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":116.93300000000001},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":150.93299999999999},\"_offset_x_tablet\":{\"size\":576,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":-61,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-606,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-475,\"unit\":\"px\"},\"_z_index_mobile\":1,\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"11e683e1\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":\"47\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/boy-at-lesson-2021-09-24-03-25-58-utc-copy.jpg\"},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.81000000000000005,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=5425a2a\"},\"background_position\":\"center center\",\"overflow\":\"hidden\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"62726094\",\"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\":\"7696e562\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our vision is every child is safe, inspired, challenged, empowered.\",\"align\":\"center\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"291cdd84\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"17\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/edge.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":9.5749999999999993},\"_position\":\"absolute\",\"_offset_x\":{\"size\":1129,\"unit\":\"px\"},\"_offset_y\":{\"size\":-59,\"unit\":\"px\"},\"_z_index\":7,\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":52.017000000000003},\"_offset_x_mobile\":{\"size\":249,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-19,\"unit\":\"px\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5405eae3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"15\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/c3.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":8.1790000000000003},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-12,\"unit\":\"px\"},\"_offset_y\":{\"size\":-28,\"unit\":\"px\"},\"_z_index\":7,\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":88.516999999999996},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":130.517},\"_offset_x_tablet\":{\"size\":-60,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":-106,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-60,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":70,\"unit\":\"px\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"35062fd0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Integer efficitur ligula ipsum, at vulputate mi fermentum sit amet. Sed pulvinar rutrum commodo. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean vitae tortor nec lectus mattis congue id sed tortor.<\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"36f886f7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"14\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/c4.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":3.73},\"_position\":\"absolute\",\"_offset_x\":{\"size\":81,\"unit\":\"px\"},\"_offset_y\":{\"size\":91,\"unit\":\"px\"},\"_z_index\":7,\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_offset_x_tablet\":{\"size\":616,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":10,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":101,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":30,\"unit\":\"px\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3cc6830a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"75553c20\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"shape_divider_bottom_flip\":\"yes\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=a00e83d\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"97c1c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_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\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"247f69f0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Programs for excellence\",\"align_tablet\":\"center\",\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"777b3a8c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"19\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/c1.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":22.148},\"_position\":\"absolute\",\"_offset_x\":{\"size\":470,\"unit\":\"px\"},\"_offset_y\":{\"size\":-54,\"unit\":\"px\"},\"_z_index\":7,\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":73.183000000000007},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":39.183},\"_offset_x_tablet\":{\"size\":154,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":249,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-218,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-288,\"unit\":\"px\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1d77a3a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"29\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/edge2.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":15.734},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-44,\"unit\":\"px\"},\"_offset_y\":{\"size\":26,\"unit\":\"px\"},\"_z_index\":7,\"_element_width_tablet\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":63.75},\"_offset_x_tablet\":{\"size\":28,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":2,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-23,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-18,\"unit\":\"px\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"69fbb26b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Mauris at lacus semper, fermentum mi sed, rutrum nibh. Sed gravida elit ligula, sit amet venenatis diam hendrerit iaculis.<\\/p>\",\"align_tablet\":\"center\",\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"80ecc3f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"28\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/c2.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":10.724},\"_position\":\"absolute\",\"_offset_x\":{\"size\":179,\"unit\":\"px\"},\"_offset_y\":{\"size\":408,\"unit\":\"px\"},\"_z_index\":7,\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":42.116999999999997},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":30.117000000000001},\"_offset_x_tablet\":{\"size\":635,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":254,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-31,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":355,\"unit\":\"px\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"36ed7571\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover More\",\"align_tablet\":\"center\",\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"1e716000\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"74e0a882\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"617b3cb8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2156a27f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"40\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/grade.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_border\":\"none\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"5\",\"isLinked\":false},\"__globals__\":{\"_border_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=384fc29\"},\"jkit_transform_rotate\":{\"unit\":\"px\",\"size\":360,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1664fafd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Grade Boost\",\"header_size\":\"h5\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3cbe788b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet.<\\/p>\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=f8cdd91\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"2bb04b8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"41a65060\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"45\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/chart.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_border\":\"none\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"5\",\"isLinked\":false},\"__globals__\":{\"_border_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=98e3e15\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20d3131e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Skill Evaluation\",\"header_size\":\"h5\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"621208f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet.<\\/p>\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=f8cdd91\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7db08f0d\",\"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\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"7f824463\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3657acce\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"50\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/test-exam-sheet.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_border\":\"none\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"5\",\"isLinked\":false},\"__globals__\":{\"_border_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=7f7112a\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"54b44e19\",\"elType\":\"widget\",\"settings\":{\"title\":\"Mock Exam\",\"header_size\":\"h5\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7da043cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet.<\\/p>\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=f8cdd91\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"11b6e1fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"401111e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"54\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/schedule-sheet.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_border\":\"none\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"5\",\"isLinked\":false},\"__globals__\":{\"_border_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=4b29dee\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2b04a0cf\",\"elType\":\"widget\",\"settings\":{\"title\":\"Weekend Class\",\"header_size\":\"h5\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7398c131\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet.<\\/p>\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=f8cdd91\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"67d987bc\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":\"25\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/13-copy.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002,\"sizes\":[]},\"shape_divider_top\":\"tilt\",\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":130,\"sizes\":[]},\"shape_divider_top_flip\":\"yes\",\"shape_divider_bottom\":\"tilt\",\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":180,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"185\",\"right\":\"0\",\"bottom\":\"400\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"shape_divider_top_color\":\"globals\\/colors?id=a00e83d\",\"background_overlay_color\":\"globals\\/colors?id=98e3e15\",\"shape_divider_bottom_color\":\"globals\\/colors?id=50714e7\"},\"overflow\":\"hidden\",\"shape_divider_top_height_tablet\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"shape_divider_bottom_height_tablet\":{\"unit\":\"px\",\"size\":102,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"230\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7e44fc62\",\"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\":\"6fe80e94\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Popular Teacher\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"35cd5615\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"14\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/c4.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":3.73},\"_position\":\"absolute\",\"_offset_x\":{\"size\":1013,\"unit\":\"px\"},\"_offset_y\":{\"size\":57,\"unit\":\"px\"},\"_z_index\":7,\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":20.800000000000001},\"_offset_x_tablet\":{\"size\":624,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":257,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":49,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":134,\"unit\":\"px\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2d8a0fb0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"15\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/c3.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":13.103},\"_position\":\"absolute\",\"_offset_x\":{\"size\":1022,\"unit\":\"px\"},\"_offset_y\":{\"size\":-124,\"unit\":\"px\"},\"_z_index\":7,\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":56.966999999999999},\"_offset_x_tablet\":{\"size\":602,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":269,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-75,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":67,\"unit\":\"px\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6bf8d6c4\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=50714e7\"}},\"elements\":[{\"id\":\"172efaaa\",\"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\":\"2628b693\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"-285\",\"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\":\"75\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f9c10ed\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"34\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/Acanthus-black-white-02-copy.png\"},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.050000000000000003,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":25,\"blur\":30,\"spread\":-10,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"25\",\"bottom\":\"40\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=5425a2a\",\"border_color\":\"globals\\/colors?id=secondary\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true}},\"elements\":[{\"id\":\"5bfef58d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"30\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/pp1.jpg\"},\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":20,\"blur\":20,\"spread\":-10,\"color\":\"rgba(0, 0, 0, 0.09)\"},\"_margin\":{\"unit\":\"%\",\"top\":\"-37\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"-63\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_mask_image\":{\"id\":\"52\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/hex2.png\"},\"width_tablet\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"18\",\"left\":\"9\",\"isLinked\":false},\"jkit_transform_rotate\":{\"unit\":\"px\",\"size\":356,\"sizes\":[]},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"536734fe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Harry Smith\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7d2eebfe\",\"elType\":\"widget\",\"settings\":{\"title\":\"English Teacher\",\"header_size\":\"h5\",\"align\":\"center\",\"_margin\":{\"unit\":\"%\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=24b2df3\",\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ed8dd0d\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"__globals__\":{\"stars_color\":\"globals\\/colors?id=3c09f21\"}},\"elements\":[],\"widgetType\":\"star-rating\"},{\"id\":\"f044e69\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0\\\" Lorem ipsum dolor sit amet, consectetur adipiscing elit. Suspendisse est neque, ultrices at enim vitae, mattis consequat dui.\\\"<\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=e64be90\",\"typography_typography\":\"globals\\/typography?id=35188cd\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"20688c95\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact\",\"align\":\"center\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=53ec359\",\"button_background_hover_color\":\"globals\\/colors?id=4b29dee\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"4f7656f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"34\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/Acanthus-black-white-02-copy.png\"},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.050000000000000003,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":25,\"blur\":30,\"spread\":-10,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"25\",\"bottom\":\"40\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=0a21634\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"7\",\"bottom\":\"0\",\"left\":\"7\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":300,\"background_overlay_position\":\"center left\"},\"elements\":[{\"id\":\"3249624e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"39\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/pp2.jpg\"},\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":20,\"blur\":20,\"spread\":-10,\"color\":\"rgba(0, 0, 0, 0.09)\"},\"_margin\":{\"unit\":\"%\",\"top\":\"-37\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"-63\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_mask_image\":{\"id\":\"52\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/hex2.png\"},\"width_tablet\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"18\",\"left\":\"9\",\"isLinked\":false},\"jkit_transform_rotate\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b736f11\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gregory Warren\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15dc9be4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Social Teacher\",\"header_size\":\"h5\",\"align\":\"center\",\"_margin\":{\"unit\":\"%\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=24b2df3\",\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2960b3d4\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"__globals__\":{\"stars_color\":\"globals\\/colors?id=3c09f21\"}},\"elements\":[],\"widgetType\":\"star-rating\"},{\"id\":\"25715d57\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0\\\" Lorem ipsum dolor sit amet, consectetur adipiscing elit. Suspendisse est neque, ultrices at enim vitae, mattis consequat dui.\\\"<\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=e64be90\",\"typography_typography\":\"globals\\/typography?id=35188cd\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6ca6010a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact\",\"align\":\"center\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=5425a2a\",\"button_background_hover_color\":\"globals\\/colors?id=7f7112a\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"2302c129\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"34\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/Acanthus-black-white-02-copy.png\"},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.050000000000000003,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":25,\"blur\":30,\"spread\":-10,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"25\",\"bottom\":\"40\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=8eb8d4a\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"14\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":600},\"elements\":[{\"id\":\"40edaa36\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"44\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/pp3.jpg\"},\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":20,\"blur\":20,\"spread\":-10,\"color\":\"rgba(0, 0, 0, 0.09)\"},\"_margin\":{\"unit\":\"%\",\"top\":\"-37\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"-63\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_mask_image\":{\"id\":\"52\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/hex2.png\"},\"width_tablet\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"18\",\"left\":\"9\",\"isLinked\":false},\"jkit_transform_rotate\":{\"unit\":\"px\",\"size\":356,\"sizes\":[]},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"62850e01\",\"elType\":\"widget\",\"settings\":{\"title\":\"Peter Wong\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4e5605ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"Math Teacher\",\"header_size\":\"h5\",\"align\":\"center\",\"_margin\":{\"unit\":\"%\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=24b2df3\",\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5934810d\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"__globals__\":{\"stars_color\":\"globals\\/colors?id=3c09f21\"}},\"elements\":[],\"widgetType\":\"star-rating\"},{\"id\":\"727b7370\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0\\\" Lorem ipsum dolor sit amet, consectetur adipiscing elit. Suspendisse est neque, ultrices at enim vitae, mattis consequat dui.\\\"<\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=e64be90\",\"typography_typography\":\"globals\\/typography?id=35188cd\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4f267b20\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact\",\"align\":\"center\",\"__globals__\":[]},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2f080c83\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"75\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"20\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=50714e7\"},\"overflow\":\"hidden\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"125\",\"left\":\"20\",\"isLinked\":false},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"24d69b05\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"_inline_size_tablet\":100,\"_inline_size_mobile\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"6c54f0ff\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"11a2b2dc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":12,\"blur\":12,\"spread\":-6,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=bb22fe7\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3a4926e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"62\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/logoipsum-265.png\"},\"width_mobile\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"5c24e6af\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":12,\"blur\":12,\"spread\":-6,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=80e8ddb\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3d7a7b11\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"66\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/logoipsum-264.png\"},\"width_mobile\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2c33e824\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":12,\"blur\":12,\"spread\":-6,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=d38674d\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1b8ef368\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"69\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/logoipsum-262.png\"},\"width_mobile\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2c7d601d\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"32658876\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":12,\"blur\":12,\"spread\":-6,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=d38674d\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"133f4fcb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"74\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/logoipsum-261.png\"},\"width_mobile\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"23bf024c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":12,\"blur\":12,\"spread\":-6,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=a00e83d\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"4d4c89b1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"76\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/logoipsum-259.png\"},\"width_mobile\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"304b5aa6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":12,\"blur\":12,\"spread\":-6,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=80e8ddb\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"69f80618\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"80\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/logoipsum-254.png\"},\"width_mobile\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"502a525a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"867aa3c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Trusted Partners\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"align_tablet\":\"center\",\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6fcba7bd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Donec hendrerit nibh in lectus molestie, id bibendum orci hendrerit. Curabitur euismod ante finibus nibh suscipit, vitae vehicula eros venenatis.<\\/p>\",\"align_tablet\":\"center\",\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"28f55b55\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"25\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/13-copy.jpg\"},\"background_repeat\":\"repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002,\"sizes\":[]},\"shape_divider_top\":\"tilt\",\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":123,\"sizes\":[]},\"shape_divider_top_flip\":\"yes\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=0a21634\",\"shape_divider_top_color\":\"globals\\/colors?id=50714e7\"},\"shape_divider_top_height_tablet\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"16713d98\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"28ce1d88\",\"elType\":\"widget\",\"settings\":{\"title\":\"Join Our Education center Now\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"},\"align_tablet\":\"center\",\"_margin_mobile\":{\"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},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2cb72972\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"28\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/c2.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":37.046999999999997},\"_position\":\"absolute\",\"_offset_x\":{\"size\":508,\"unit\":\"px\"},\"_offset_y\":{\"size\":-54,\"unit\":\"px\"},\"_z_index\":7,\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":89.066999999999993},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":30.067},\"_offset_x_tablet\":{\"size\":94,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":252,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-60,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":28,\"unit\":\"px\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"26068e28\",\"elType\":\"widget\",\"settings\":{\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"},\"align_tablet\":\"center\",\"_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},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"324ca56a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Sign Up Now\",\"align\":\"left\",\"_z_index\":9,\"__globals__\":{\"background_color\":\"globals\\/colors?id=5425a2a\",\"button_background_hover_color\":\"globals\\/colors?id=7f7112a\"},\"align_tablet\":\"center\",\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"74253f20\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"26\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/edge3.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":18.638000000000002},\"_offset_x\":{\"size\":172,\"unit\":\"px\"},\"_offset_y\":{\"size\":331,\"unit\":\"px\"},\"_z_index\":7,\"_margin\":{\"unit\":\"%\",\"top\":\"-60\",\"right\":\"45\",\"bottom\":\"0\",\"left\":\"-45\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":39,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3f4d1f73\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"-150\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"50\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-160\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"42320bd1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"46\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/cute-elementary-kids-with-books-at-school-2022-12-16-18-15-57-utc-copy.jpg\"},\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":\"51\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/liki.png\"},\"width_tablet\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":88,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3e131936\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"57\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/cute-elementary-kids-with-books-at-school-2022-12-16-18-15-57-utc2.png\"},\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_position\":\"absolute\",\"width_tablet\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":88,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(787,165,'_elementor_page_assets','a:1:{s:6:\"styles\";a:54:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";i:34;s:12:\"e-animations\";i:35;s:12:\"e-animations\";i:36;s:12:\"e-animations\";i:37;s:12:\"e-animations\";i:38;s:12:\"e-animations\";i:39;s:12:\"e-animations\";i:40;s:12:\"e-animations\";i:41;s:12:\"e-animations\";i:42;s:12:\"e-animations\";i:43;s:12:\"e-animations\";i:44;s:12:\"e-animations\";i:45;s:12:\"e-animations\";i:46;s:12:\"e-animations\";i:47;s:12:\"e-animations\";i:48;s:12:\"e-animations\";i:49;s:12:\"e-animations\";i:50;s:12:\"e-animations\";i:51;s:12:\"e-animations\";i:52;s:12:\"e-animations\";i:53;s:12:\"e-animations\";}}'),(790,166,'_wp_page_template','elementor_header_footer'),(791,166,'_elementor_edit_mode','builder'),(792,166,'_elementor_template_type','wp-page'),(793,166,'_elementor_version','3.15.3'),(794,166,'_elementor_data','[{\"id\":\"1b43d4a4\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"7\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/2-copy.jpg\"},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"shape_divider_bottom\":\"tilt\",\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":225,\"sizes\":[]},\"shape_divider_bottom_flip\":\"yes\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"0\",\"bottom\":\"00\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.55000000000000004,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=ff9d88d\",\"shape_divider_bottom_color\":\"globals\\/colors?id=a00e83d\"},\"overflow\":\"hidden\",\"shape_divider_bottom_height_tablet\":{\"unit\":\"px\",\"size\":105,\"sizes\":[]},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"130\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"20\",\"bottom\":\"130\",\"left\":\"20\",\"isLinked\":false},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"5a2e5ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"73c21425\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Smart  \",\"sg_title_focused\":\"Learning\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_typography_content_typography_typography\":\"custom\",\"st_title_typography_content_typography_font_family\":\"Mulish\",\"st_title_typography_content_typography_font_size\":{\"unit\":\"rem\",\"size\":8.5,\"sizes\":[]},\"st_title_typography_content_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":4.7999999999999998,\"sizes\":[]},\"st_title_typography_content_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":3.7000000000000002,\"sizes\":[]},\"st_title_typography_content_typography_font_weight\":\"800\",\"st_title_typography_content_typography_text_transform\":\"capitalize\",\"st_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"st_title_typography_content_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=4244abd\",\"st_focused_typography_content_typography_typography\":\"globals\\/typography?id=d65c9cc\",\"st_focused_color_responsive\":\"globals\\/colors?id=secondary\",\"st_title_color_responsive\":\"globals\\/colors?id=secondary\"},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_general_alignment_responsive_tablet\":\"center\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"},{\"id\":\"6a57c977\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Study \",\"sg_title_focused\":\"Easily\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_typography_content_typography_typography\":\"custom\",\"st_title_typography_content_typography_font_family\":\"Mulish\",\"st_title_typography_content_typography_font_size\":{\"unit\":\"rem\",\"size\":8.5,\"sizes\":[]},\"st_title_typography_content_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":4.7999999999999998,\"sizes\":[]},\"st_title_typography_content_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":3.7000000000000002,\"sizes\":[]},\"st_title_typography_content_typography_font_weight\":\"800\",\"st_title_typography_content_typography_text_transform\":\"capitalize\",\"st_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"st_title_typography_content_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=4244abd\",\"st_focused_typography_content_typography_typography\":\"globals\\/typography?id=d65c9cc\",\"st_focused_color_responsive\":\"globals\\/colors?id=secondary\",\"st_title_color_responsive\":\"globals\\/colors?id=secondary\"},\"_margin\":{\"unit\":\"%\",\"top\":\"-7\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"-6\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_general_alignment_responsive_tablet\":\"center\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"},{\"id\":\"3087a342\",\"elType\":\"widget\",\"settings\":{\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"},\"align_tablet\":\"center\",\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3a0c81f4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Check It Out\",\"align_tablet\":\"center\",\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"3b3b1623\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"-115\",\"right\":\"-50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-75\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7f89b368\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"13\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/boy3.png\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"-85\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_position\":\"absolute\",\"_z_index\":2,\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-40\",\"bottom\":\"0\",\"left\":\"-40\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b0d8b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"15\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/c3.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":14.5},\"_position\":\"absolute\",\"_offset_x\":{\"size\":88,\"unit\":\"px\"},\"_offset_y\":{\"size\":22,\"unit\":\"px\"},\"_z_index\":7,\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":33.216999999999999},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":21.216999999999999},\"_offset_x_tablet\":{\"size\":111,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":272,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":100,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":75,\"unit\":\"px\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"478271ab\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"17\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/edge.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":14.5},\"_position\":\"absolute\",\"_offset_x\":{\"size\":521,\"unit\":\"px\"},\"_offset_y\":{\"size\":116,\"unit\":\"px\"},\"_z_index\":7,\"_element_width_tablet\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":78.216999999999999},\"_offset_x_tablet\":{\"size\":534,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":203,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":103,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":382,\"unit\":\"px\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e73906\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"19\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/c1.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32.997},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-11,\"unit\":\"px\"},\"_offset_y\":{\"size\":426,\"unit\":\"px\"},\"_z_index\":7,\"_element_width_tablet\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":415.06700000000001},\"_offset_x_tablet\":{\"size\":-241,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":-256,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":410,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":327,\"unit\":\"px\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4a051f2a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"28\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/c2.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":6.9939999999999998},\"_position\":\"absolute\",\"_offset_x\":{\"size\":539,\"unit\":\"px\"},\"_offset_y\":{\"size\":140,\"unit\":\"px\"},\"_z_index\":7,\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":44.332999999999998},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":91.332999999999998},\"_offset_x_tablet\":{\"size\":545,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":196,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":124,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-13,\"unit\":\"px\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1673b95c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"35\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/little-boy-is-having-online-lessons-by-using-lapto-2022-02-03-17-43-51-utc-copy.jpg\"},\"image_border_border\":\"none\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"image_box_shadow_box_shadow\":{\"horizontal\":100,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.09)\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"-85\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1,\"_background_background\":\"classic\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":\"41\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/liki3.png\"},\"_mask_position\":\"top right\",\"__globals__\":{\"_background_color\":\"\",\"image_border_color\":\"globals\\/colors?id=secondary\"},\"width_tablet\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-40\",\"bottom\":\"0\",\"left\":\"-40\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f1771ce\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"280\",\"left\":\"0\",\"isLinked\":false},\"shape_divider_bottom\":\"tilt\",\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=a00e83d\"},\"overflow\":\"hidden\",\"shape_divider_bottom_height_tablet\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"170\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b6d584b\",\"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\":\"6032aede\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"14\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/c4.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":3.875},\"_position\":\"absolute\",\"_offset_x\":{\"size\":951,\"unit\":\"px\"},\"_offset_y\":{\"size\":33,\"unit\":\"px\"},\"_z_index\":7,\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":36.732999999999997},\"_offset_x_tablet\":{\"size\":614,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":34,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":37,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":80,\"unit\":\"px\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7ba2bee1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"29\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/edge2.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":6.6630000000000003},\"_position\":\"absolute\",\"_offset_x\":{\"size\":325,\"unit\":\"px\"},\"_offset_y\":{\"size\":-43,\"unit\":\"px\"},\"_z_index\":7,\"_offset_x_tablet\":{\"size\":116,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-19,\"unit\":\"px\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"639ecddb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Primary Courses\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6cbb0273\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":175,\"sizes\":[]},\"shape_divider_bottom_flip\":\"yes\",\"__globals__\":{\"shape_divider_bottom_color\":\"globals\\/colors?id=bb22fe7\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7003617b\",\"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\":\"33d7d2f0\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"%\",\"top\":\"-20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"-53\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6768445a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"785c9c90\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"48\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/kids-taking-exam-in-school-2022-06-29-19-26-45-utc-copy.jpg\"},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"35\",\"left\":\"15\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":15,\"blur\":25,\"spread\":-5,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=secondary\"},\"jkit_transform_rotate\":{\"unit\":\"px\",\"size\":358,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"133d57a9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Social Studies\",\"header_size\":\"h4\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2905a3bd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1780998b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"1bb97169\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"f1fc8ed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"38\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/portrait-of-happy-caucasian-boy-standing-at-chalkb-2021-09-03-06-28-24-utc-copy.jpg\"},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"35\",\"left\":\"15\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":15,\"blur\":25,\"spread\":-5,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=secondary\"},\"jkit_transform_rotate\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1be70e33\",\"elType\":\"widget\",\"settings\":{\"title\":\"Mathematics \",\"header_size\":\"h4\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"84221db\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"389f3412\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"3147fc34\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"27a107c5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"55\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/woman-learning-english-online-2021-08-26-15-34-41-utc-copy.jpg\"},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"35\",\"left\":\"15\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":15,\"blur\":25,\"spread\":-5,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=secondary\"},\"jkit_transform_rotate\":{\"unit\":\"px\",\"size\":358,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6f699cb3\",\"elType\":\"widget\",\"settings\":{\"title\":\"English Course\",\"header_size\":\"h4\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6e14a87b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"12d35f7c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"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\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"52e2d9dc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"65\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/3-copy.jpg\"},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.69999999999999996,\"sizes\":[]},\"shape_divider_top\":\"tilt\",\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":175,\"sizes\":[]},\"shape_divider_top_flip\":\"yes\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=bb22fe7\",\"background_overlay_color\":\"globals\\/colors?id=bb22fe7\"},\"overflow\":\"hidden\",\"shape_divider_top_height_tablet\":{\"unit\":\"px\",\"size\":69,\"sizes\":[]},\"shape_divider_top_height_mobile\":{\"unit\":\"px\",\"size\":51,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"140\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"f426e2a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42.542999999999999,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"content_position_tablet\":\"center\",\"align_tablet\":\"center\",\"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\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"5a616044\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"23\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/aged-teacher-2021-09-24-03-26-41-utc.jpg\"},\"opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-125\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=dafc007\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"150\",\"bottom\":\"0\",\"left\":\"150\",\"isLinked\":false},\"_margin_mobile\":{\"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},\"_element_width_tablet\":\"auto\",\"_z_index_mobile\":6},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"76aca3b6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"32\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/aged-teacher-2021-09-24-03-26-41-utc-2.png\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-125\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-2,\"unit\":\"px\"},\"_offset_y\":{\"size\":1,\"unit\":\"px\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"150\",\"bottom\":\"0\",\"left\":\"150\",\"isLinked\":false},\"_margin_mobile\":{\"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},\"_z_index_mobile\":7},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6ba18f0a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":57.457000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"75\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1da3bcbb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Preparing Our Children\\u2019s Bright Future\",\"align_tablet\":\"center\",\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1f66d3c5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"29\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/edge2.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":13.539999999999999},\"_position\":\"absolute\",\"_offset_x\":{\"size\":24,\"unit\":\"px\"},\"_offset_y\":{\"size\":-38,\"unit\":\"px\"},\"_z_index\":7,\"_element_width_tablet\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":70.582999999999998},\"_offset_x_tablet\":{\"size\":14,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":-4,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":8,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":12,\"unit\":\"px\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4a9c2692\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec ultrices purus nec sollicitudin eleifend. In hac habitasse platea dictumst.<\\/p>\",\"align_tablet\":\"center\",\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2a5e6eb3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-line-chart-light\",\"library\":\"jkiticon\"},\"view\":\"stacked\",\"title_text\":\"Grade Improvement\",\"description_text\":\" Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"position\":\"left\",\"icon_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=d50cf18\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"primary_color\":\"globals\\/colors?id=7f7112a\",\"description_typography_typography\":\"globals\\/typography?id=f8cdd91\"},\"icon_space_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"text_align_tablet\":\"left\",\"text_align_mobile\":\"center\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_element_width_tablet\":\"auto\",\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"131750b8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-open-book-light\",\"library\":\"jkiticon\"},\"view\":\"stacked\",\"title_text\":\"Exam Preparation\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing.\",\"position\":\"left\",\"secondary_color\":\"#FFFFFF\",\"icon_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Exo 2\",\"title_typography_font_size\":{\"unit\":\"rem\",\"size\":1.6000000000000001,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.2,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2,\"sizes\":[]},\"title_typography_font_weight\":\"800\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=d50cf18\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"primary_color\":\"globals\\/colors?id=dafc007\",\"description_typography_typography\":\"globals\\/typography?id=f8cdd91\"},\"icon_space_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_element_width_tablet\":\"auto\",\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"62288012\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-users\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Social Development\",\"description_text\":\"Donec et massa sit amet augue laoreet venenatis id et urna.\",\"position\":\"left\",\"icon_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=d50cf18\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"primary_color\":\"globals\\/colors?id=0a21634\",\"description_typography_typography\":\"globals\\/typography?id=f8cdd91\"},\"icon_space_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_tablet\":\"auto\",\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"6b0269ef\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"19\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/c1.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.43},\"_position\":\"absolute\",\"_offset_x\":{\"size\":578,\"unit\":\"px\"},\"_offset_y\":{\"size\":-180,\"unit\":\"px\"},\"_z_index\":7,\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":116.93300000000001},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":150.93299999999999},\"_offset_x_tablet\":{\"size\":576,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":-61,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-606,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-475,\"unit\":\"px\"},\"_z_index_mobile\":1,\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"11e683e1\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":\"47\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/boy-at-lesson-2021-09-24-03-25-58-utc-copy.jpg\"},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.81000000000000005,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=5425a2a\"},\"background_position\":\"center center\",\"overflow\":\"hidden\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"62726094\",\"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\":\"7696e562\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our vision is every child is safe, inspired, challenged, empowered.\",\"align\":\"center\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"291cdd84\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"17\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/edge.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":9.5749999999999993},\"_position\":\"absolute\",\"_offset_x\":{\"size\":1129,\"unit\":\"px\"},\"_offset_y\":{\"size\":-59,\"unit\":\"px\"},\"_z_index\":7,\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":52.017000000000003},\"_offset_x_mobile\":{\"size\":249,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-19,\"unit\":\"px\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5405eae3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"15\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/c3.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":8.1790000000000003},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-12,\"unit\":\"px\"},\"_offset_y\":{\"size\":-28,\"unit\":\"px\"},\"_z_index\":7,\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":88.516999999999996},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":130.517},\"_offset_x_tablet\":{\"size\":-60,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":-106,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-60,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":70,\"unit\":\"px\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"35062fd0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Integer efficitur ligula ipsum, at vulputate mi fermentum sit amet. Sed pulvinar rutrum commodo. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean vitae tortor nec lectus mattis congue id sed tortor.<\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"36f886f7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"14\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/c4.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":3.73},\"_position\":\"absolute\",\"_offset_x\":{\"size\":81,\"unit\":\"px\"},\"_offset_y\":{\"size\":91,\"unit\":\"px\"},\"_z_index\":7,\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_offset_x_tablet\":{\"size\":616,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":10,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":101,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":30,\"unit\":\"px\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3cc6830a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"75553c20\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"shape_divider_bottom_flip\":\"yes\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=a00e83d\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"97c1c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_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\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"247f69f0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Programs for excellence\",\"align_tablet\":\"center\",\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"777b3a8c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"19\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/c1.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":22.148},\"_position\":\"absolute\",\"_offset_x\":{\"size\":470,\"unit\":\"px\"},\"_offset_y\":{\"size\":-54,\"unit\":\"px\"},\"_z_index\":7,\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":73.183000000000007},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":39.183},\"_offset_x_tablet\":{\"size\":154,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":249,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-218,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-288,\"unit\":\"px\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1d77a3a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"29\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/edge2.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":15.734},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-44,\"unit\":\"px\"},\"_offset_y\":{\"size\":26,\"unit\":\"px\"},\"_z_index\":7,\"_element_width_tablet\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":63.75},\"_offset_x_tablet\":{\"size\":28,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":2,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-23,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-18,\"unit\":\"px\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"69fbb26b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Mauris at lacus semper, fermentum mi sed, rutrum nibh. Sed gravida elit ligula, sit amet venenatis diam hendrerit iaculis.<\\/p>\",\"align_tablet\":\"center\",\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"80ecc3f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"28\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/c2.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":10.724},\"_position\":\"absolute\",\"_offset_x\":{\"size\":179,\"unit\":\"px\"},\"_offset_y\":{\"size\":408,\"unit\":\"px\"},\"_z_index\":7,\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":42.116999999999997},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":30.117000000000001},\"_offset_x_tablet\":{\"size\":635,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":254,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-31,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":355,\"unit\":\"px\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"36ed7571\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover More\",\"align_tablet\":\"center\",\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"1e716000\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"74e0a882\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"617b3cb8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2156a27f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"40\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/grade.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_border\":\"none\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"5\",\"isLinked\":false},\"__globals__\":{\"_border_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=384fc29\"},\"jkit_transform_rotate\":{\"unit\":\"px\",\"size\":360,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1664fafd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Grade Boost\",\"header_size\":\"h5\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3cbe788b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet.<\\/p>\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=f8cdd91\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"2bb04b8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"41a65060\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"45\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/chart.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_border\":\"none\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"5\",\"isLinked\":false},\"__globals__\":{\"_border_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=98e3e15\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20d3131e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Skill Evaluation\",\"header_size\":\"h5\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"621208f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet.<\\/p>\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=f8cdd91\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7db08f0d\",\"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\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"7f824463\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3657acce\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"50\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/test-exam-sheet.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_border\":\"none\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"5\",\"isLinked\":false},\"__globals__\":{\"_border_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=7f7112a\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"54b44e19\",\"elType\":\"widget\",\"settings\":{\"title\":\"Mock Exam\",\"header_size\":\"h5\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7da043cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet.<\\/p>\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=f8cdd91\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"11b6e1fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"401111e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"54\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/schedule-sheet.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_border\":\"none\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"5\",\"isLinked\":false},\"__globals__\":{\"_border_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=4b29dee\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2b04a0cf\",\"elType\":\"widget\",\"settings\":{\"title\":\"Weekend Class\",\"header_size\":\"h5\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7398c131\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet.<\\/p>\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=f8cdd91\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"67d987bc\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":\"25\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/13-copy.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002,\"sizes\":[]},\"shape_divider_top\":\"tilt\",\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":130,\"sizes\":[]},\"shape_divider_top_flip\":\"yes\",\"shape_divider_bottom\":\"tilt\",\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":180,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"185\",\"right\":\"0\",\"bottom\":\"400\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"shape_divider_top_color\":\"globals\\/colors?id=a00e83d\",\"background_overlay_color\":\"globals\\/colors?id=98e3e15\",\"shape_divider_bottom_color\":\"globals\\/colors?id=50714e7\"},\"overflow\":\"hidden\",\"shape_divider_top_height_tablet\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"shape_divider_bottom_height_tablet\":{\"unit\":\"px\",\"size\":102,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"230\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7e44fc62\",\"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\":\"6fe80e94\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Popular Teacher\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"35cd5615\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"14\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/c4.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":3.73},\"_position\":\"absolute\",\"_offset_x\":{\"size\":1013,\"unit\":\"px\"},\"_offset_y\":{\"size\":57,\"unit\":\"px\"},\"_z_index\":7,\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":20.800000000000001},\"_offset_x_tablet\":{\"size\":624,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":257,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":49,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":134,\"unit\":\"px\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2d8a0fb0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"15\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/c3.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":13.103},\"_position\":\"absolute\",\"_offset_x\":{\"size\":1022,\"unit\":\"px\"},\"_offset_y\":{\"size\":-124,\"unit\":\"px\"},\"_z_index\":7,\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":56.966999999999999},\"_offset_x_tablet\":{\"size\":602,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":269,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-75,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":67,\"unit\":\"px\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6bf8d6c4\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=50714e7\"}},\"elements\":[{\"id\":\"172efaaa\",\"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\":\"2628b693\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"-285\",\"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\":\"75\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f9c10ed\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"34\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/Acanthus-black-white-02-copy.png\"},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.050000000000000003,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":25,\"blur\":30,\"spread\":-10,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"25\",\"bottom\":\"40\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=5425a2a\",\"border_color\":\"globals\\/colors?id=secondary\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true}},\"elements\":[{\"id\":\"5bfef58d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"30\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/pp1.jpg\"},\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":20,\"blur\":20,\"spread\":-10,\"color\":\"rgba(0, 0, 0, 0.09)\"},\"_margin\":{\"unit\":\"%\",\"top\":\"-37\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"-63\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_mask_image\":{\"id\":\"52\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/hex2.png\"},\"width_tablet\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"18\",\"left\":\"9\",\"isLinked\":false},\"jkit_transform_rotate\":{\"unit\":\"px\",\"size\":356,\"sizes\":[]},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"536734fe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Harry Smith\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7d2eebfe\",\"elType\":\"widget\",\"settings\":{\"title\":\"English Teacher\",\"header_size\":\"h5\",\"align\":\"center\",\"_margin\":{\"unit\":\"%\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=24b2df3\",\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ed8dd0d\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"__globals__\":{\"stars_color\":\"globals\\/colors?id=3c09f21\"}},\"elements\":[],\"widgetType\":\"star-rating\"},{\"id\":\"f044e69\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0\\\" Lorem ipsum dolor sit amet, consectetur adipiscing elit. Suspendisse est neque, ultrices at enim vitae, mattis consequat dui.\\\"<\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=e64be90\",\"typography_typography\":\"globals\\/typography?id=35188cd\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"20688c95\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact\",\"align\":\"center\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=53ec359\",\"button_background_hover_color\":\"globals\\/colors?id=4b29dee\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"4f7656f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"34\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/Acanthus-black-white-02-copy.png\"},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.050000000000000003,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":25,\"blur\":30,\"spread\":-10,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"25\",\"bottom\":\"40\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=0a21634\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"7\",\"bottom\":\"0\",\"left\":\"7\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":300,\"background_overlay_position\":\"center left\"},\"elements\":[{\"id\":\"3249624e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"39\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/pp2.jpg\"},\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":20,\"blur\":20,\"spread\":-10,\"color\":\"rgba(0, 0, 0, 0.09)\"},\"_margin\":{\"unit\":\"%\",\"top\":\"-37\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"-63\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_mask_image\":{\"id\":\"52\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/hex2.png\"},\"width_tablet\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"18\",\"left\":\"9\",\"isLinked\":false},\"jkit_transform_rotate\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b736f11\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gregory Warren\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15dc9be4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Social Teacher\",\"header_size\":\"h5\",\"align\":\"center\",\"_margin\":{\"unit\":\"%\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=24b2df3\",\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2960b3d4\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"__globals__\":{\"stars_color\":\"globals\\/colors?id=3c09f21\"}},\"elements\":[],\"widgetType\":\"star-rating\"},{\"id\":\"25715d57\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0\\\" Lorem ipsum dolor sit amet, consectetur adipiscing elit. Suspendisse est neque, ultrices at enim vitae, mattis consequat dui.\\\"<\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=e64be90\",\"typography_typography\":\"globals\\/typography?id=35188cd\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6ca6010a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact\",\"align\":\"center\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=5425a2a\",\"button_background_hover_color\":\"globals\\/colors?id=7f7112a\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"2302c129\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"34\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/Acanthus-black-white-02-copy.png\"},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.050000000000000003,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":25,\"blur\":30,\"spread\":-10,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"25\",\"bottom\":\"40\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=8eb8d4a\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"14\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":600},\"elements\":[{\"id\":\"40edaa36\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"44\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/pp3.jpg\"},\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":20,\"blur\":20,\"spread\":-10,\"color\":\"rgba(0, 0, 0, 0.09)\"},\"_margin\":{\"unit\":\"%\",\"top\":\"-37\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"-63\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_mask_image\":{\"id\":\"52\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/hex2.png\"},\"width_tablet\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"18\",\"left\":\"9\",\"isLinked\":false},\"jkit_transform_rotate\":{\"unit\":\"px\",\"size\":356,\"sizes\":[]},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"62850e01\",\"elType\":\"widget\",\"settings\":{\"title\":\"Peter Wong\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4e5605ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"Math Teacher\",\"header_size\":\"h5\",\"align\":\"center\",\"_margin\":{\"unit\":\"%\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=24b2df3\",\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5934810d\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"__globals__\":{\"stars_color\":\"globals\\/colors?id=3c09f21\"}},\"elements\":[],\"widgetType\":\"star-rating\"},{\"id\":\"727b7370\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0\\\" Lorem ipsum dolor sit amet, consectetur adipiscing elit. Suspendisse est neque, ultrices at enim vitae, mattis consequat dui.\\\"<\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=e64be90\",\"typography_typography\":\"globals\\/typography?id=35188cd\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4f267b20\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact\",\"align\":\"center\",\"__globals__\":[]},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2f080c83\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"75\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"20\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=50714e7\"},\"overflow\":\"hidden\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"125\",\"left\":\"20\",\"isLinked\":false},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"24d69b05\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"_inline_size_tablet\":100,\"_inline_size_mobile\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"6c54f0ff\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"11a2b2dc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":12,\"blur\":12,\"spread\":-6,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=bb22fe7\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3a4926e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"62\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/logoipsum-265.png\"},\"width_mobile\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"5c24e6af\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":12,\"blur\":12,\"spread\":-6,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=80e8ddb\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3d7a7b11\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"66\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/logoipsum-264.png\"},\"width_mobile\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2c33e824\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":12,\"blur\":12,\"spread\":-6,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=d38674d\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1b8ef368\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"69\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/logoipsum-262.png\"},\"width_mobile\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2c7d601d\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"32658876\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":12,\"blur\":12,\"spread\":-6,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=d38674d\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"133f4fcb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"74\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/logoipsum-261.png\"},\"width_mobile\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"23bf024c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":12,\"blur\":12,\"spread\":-6,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=a00e83d\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"4d4c89b1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"76\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/logoipsum-259.png\"},\"width_mobile\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"304b5aa6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":12,\"blur\":12,\"spread\":-6,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=80e8ddb\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"69f80618\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"80\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/logoipsum-254.png\"},\"width_mobile\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"502a525a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"867aa3c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Trusted Partners\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"align_tablet\":\"center\",\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6fcba7bd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Donec hendrerit nibh in lectus molestie, id bibendum orci hendrerit. Curabitur euismod ante finibus nibh suscipit, vitae vehicula eros venenatis.<\\/p>\",\"align_tablet\":\"center\",\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"28f55b55\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"25\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/13-copy.jpg\"},\"background_repeat\":\"repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002,\"sizes\":[]},\"shape_divider_top\":\"tilt\",\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":123,\"sizes\":[]},\"shape_divider_top_flip\":\"yes\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=0a21634\",\"shape_divider_top_color\":\"globals\\/colors?id=50714e7\"},\"shape_divider_top_height_tablet\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"16713d98\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"28ce1d88\",\"elType\":\"widget\",\"settings\":{\"title\":\"Join Our Education center Now\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"},\"align_tablet\":\"center\",\"_margin_mobile\":{\"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},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2cb72972\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"28\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/c2.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":37.046999999999997},\"_position\":\"absolute\",\"_offset_x\":{\"size\":508,\"unit\":\"px\"},\"_offset_y\":{\"size\":-54,\"unit\":\"px\"},\"_z_index\":7,\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":89.066999999999993},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":30.067},\"_offset_x_tablet\":{\"size\":94,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":252,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-60,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":28,\"unit\":\"px\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"26068e28\",\"elType\":\"widget\",\"settings\":{\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"},\"align_tablet\":\"center\",\"_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},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"324ca56a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Sign Up Now\",\"align\":\"left\",\"_z_index\":9,\"__globals__\":{\"background_color\":\"globals\\/colors?id=5425a2a\",\"button_background_hover_color\":\"globals\\/colors?id=7f7112a\"},\"align_tablet\":\"center\",\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"74253f20\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"26\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/edge3.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":18.638000000000002},\"_offset_x\":{\"size\":172,\"unit\":\"px\"},\"_offset_y\":{\"size\":331,\"unit\":\"px\"},\"_z_index\":7,\"_margin\":{\"unit\":\"%\",\"top\":\"-60\",\"right\":\"45\",\"bottom\":\"0\",\"left\":\"-45\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":39,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3f4d1f73\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"-150\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"50\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-160\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"42320bd1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"46\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/cute-elementary-kids-with-books-at-school-2022-12-16-18-15-57-utc-copy.jpg\"},\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":\"51\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/liki.png\"},\"width_tablet\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":88,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3e131936\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"57\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/cute-elementary-kids-with-books-at-school-2022-12-16-18-15-57-utc2.png\"},\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_position\":\"absolute\",\"width_tablet\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":88,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(795,166,'_elementor_page_assets','a:1:{s:6:\"styles\";a:54:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";i:34;s:12:\"e-animations\";i:35;s:12:\"e-animations\";i:36;s:12:\"e-animations\";i:37;s:12:\"e-animations\";i:38;s:12:\"e-animations\";i:39;s:12:\"e-animations\";i:40;s:12:\"e-animations\";i:41;s:12:\"e-animations\";i:42;s:12:\"e-animations\";i:43;s:12:\"e-animations\";i:44;s:12:\"e-animations\";i:45;s:12:\"e-animations\";i:46;s:12:\"e-animations\";i:47;s:12:\"e-animations\";i:48;s:12:\"e-animations\";i:49;s:12:\"e-animations\";i:50;s:12:\"e-animations\";i:51;s:12:\"e-animations\";i:52;s:12:\"e-animations\";i:53;s:12:\"e-animations\";}}'),(797,167,'_wp_page_template','elementor_header_footer'),(798,167,'_elementor_edit_mode','builder'),(799,167,'_elementor_template_type','wp-page'),(800,167,'_elementor_version','3.15.3'),(801,167,'_elementor_data','[{\"id\":\"1b43d4a4\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"7\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/2-copy.jpg\"},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"shape_divider_bottom\":\"tilt\",\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":225,\"sizes\":[]},\"shape_divider_bottom_flip\":\"yes\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"0\",\"bottom\":\"00\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.55000000000000004,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=ff9d88d\",\"shape_divider_bottom_color\":\"globals\\/colors?id=a00e83d\"},\"overflow\":\"hidden\",\"shape_divider_bottom_height_tablet\":{\"unit\":\"px\",\"size\":105,\"sizes\":[]},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"130\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"20\",\"bottom\":\"130\",\"left\":\"20\",\"isLinked\":false},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"5a2e5ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"73c21425\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Smart  \",\"sg_title_focused\":\"Learning\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_typography_content_typography_typography\":\"custom\",\"st_title_typography_content_typography_font_family\":\"Mulish\",\"st_title_typography_content_typography_font_size\":{\"unit\":\"rem\",\"size\":8.5,\"sizes\":[]},\"st_title_typography_content_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":4.7999999999999998,\"sizes\":[]},\"st_title_typography_content_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":3.7000000000000002,\"sizes\":[]},\"st_title_typography_content_typography_font_weight\":\"800\",\"st_title_typography_content_typography_text_transform\":\"capitalize\",\"st_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"st_title_typography_content_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=4244abd\",\"st_focused_typography_content_typography_typography\":\"globals\\/typography?id=d65c9cc\",\"st_focused_color_responsive\":\"globals\\/colors?id=secondary\",\"st_title_color_responsive\":\"globals\\/colors?id=secondary\"},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_general_alignment_responsive_tablet\":\"center\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"},{\"id\":\"6a57c977\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Study \",\"sg_title_focused\":\"Easily\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_typography_content_typography_typography\":\"custom\",\"st_title_typography_content_typography_font_family\":\"Mulish\",\"st_title_typography_content_typography_font_size\":{\"unit\":\"rem\",\"size\":8.5,\"sizes\":[]},\"st_title_typography_content_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":4.7999999999999998,\"sizes\":[]},\"st_title_typography_content_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":3.7000000000000002,\"sizes\":[]},\"st_title_typography_content_typography_font_weight\":\"800\",\"st_title_typography_content_typography_text_transform\":\"capitalize\",\"st_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"st_title_typography_content_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=4244abd\",\"st_focused_typography_content_typography_typography\":\"globals\\/typography?id=d65c9cc\",\"st_focused_color_responsive\":\"globals\\/colors?id=secondary\",\"st_title_color_responsive\":\"globals\\/colors?id=secondary\"},\"_margin\":{\"unit\":\"%\",\"top\":\"-7\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"-6\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_general_alignment_responsive_tablet\":\"center\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"},{\"id\":\"3087a342\",\"elType\":\"widget\",\"settings\":{\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"},\"align_tablet\":\"center\",\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3a0c81f4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Check It Out\",\"align_tablet\":\"center\",\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"3b3b1623\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"-115\",\"right\":\"-50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-75\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7f89b368\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"13\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/boy3.png\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"-85\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_position\":\"absolute\",\"_z_index\":2,\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-40\",\"bottom\":\"0\",\"left\":\"-40\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b0d8b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"15\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/c3.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":14.5},\"_position\":\"absolute\",\"_offset_x\":{\"size\":88,\"unit\":\"px\"},\"_offset_y\":{\"size\":22,\"unit\":\"px\"},\"_z_index\":7,\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":33.216999999999999},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":21.216999999999999},\"_offset_x_tablet\":{\"size\":111,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":272,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":100,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":75,\"unit\":\"px\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"478271ab\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"17\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/edge.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":14.5},\"_position\":\"absolute\",\"_offset_x\":{\"size\":521,\"unit\":\"px\"},\"_offset_y\":{\"size\":116,\"unit\":\"px\"},\"_z_index\":7,\"_element_width_tablet\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":78.216999999999999},\"_offset_x_tablet\":{\"size\":534,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":203,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":103,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":382,\"unit\":\"px\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e73906\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"19\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/c1.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32.997},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-11,\"unit\":\"px\"},\"_offset_y\":{\"size\":426,\"unit\":\"px\"},\"_z_index\":7,\"_element_width_tablet\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":415.06700000000001},\"_offset_x_tablet\":{\"size\":-241,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":-256,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":410,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":327,\"unit\":\"px\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4a051f2a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"28\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/c2.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":6.9939999999999998},\"_position\":\"absolute\",\"_offset_x\":{\"size\":539,\"unit\":\"px\"},\"_offset_y\":{\"size\":140,\"unit\":\"px\"},\"_z_index\":7,\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":44.332999999999998},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":91.332999999999998},\"_offset_x_tablet\":{\"size\":545,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":196,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":124,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-13,\"unit\":\"px\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1673b95c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"35\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/little-boy-is-having-online-lessons-by-using-lapto-2022-02-03-17-43-51-utc-copy.jpg\"},\"image_border_border\":\"none\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"image_box_shadow_box_shadow\":{\"horizontal\":100,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.09)\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"-85\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1,\"_background_background\":\"classic\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":\"41\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/liki3.png\"},\"_mask_position\":\"top right\",\"__globals__\":{\"_background_color\":\"\",\"image_border_color\":\"globals\\/colors?id=secondary\"},\"width_tablet\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-40\",\"bottom\":\"0\",\"left\":\"-40\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f1771ce\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"280\",\"left\":\"0\",\"isLinked\":false},\"shape_divider_bottom\":\"tilt\",\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=a00e83d\"},\"overflow\":\"hidden\",\"shape_divider_bottom_height_tablet\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"170\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b6d584b\",\"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\":\"6032aede\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"14\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/c4.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":3.875},\"_position\":\"absolute\",\"_offset_x\":{\"size\":951,\"unit\":\"px\"},\"_offset_y\":{\"size\":33,\"unit\":\"px\"},\"_z_index\":7,\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":36.732999999999997},\"_offset_x_tablet\":{\"size\":614,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":34,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":37,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":80,\"unit\":\"px\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7ba2bee1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"29\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/edge2.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":6.6630000000000003},\"_position\":\"absolute\",\"_offset_x\":{\"size\":325,\"unit\":\"px\"},\"_offset_y\":{\"size\":-43,\"unit\":\"px\"},\"_z_index\":7,\"_offset_x_tablet\":{\"size\":116,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-19,\"unit\":\"px\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"639ecddb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Primary Courses\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6cbb0273\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":175,\"sizes\":[]},\"shape_divider_bottom_flip\":\"yes\",\"__globals__\":{\"shape_divider_bottom_color\":\"globals\\/colors?id=bb22fe7\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7003617b\",\"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\":\"33d7d2f0\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"%\",\"top\":\"-20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"-53\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6768445a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"785c9c90\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"48\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/kids-taking-exam-in-school-2022-06-29-19-26-45-utc-copy.jpg\"},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"35\",\"left\":\"15\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":15,\"blur\":25,\"spread\":-5,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=secondary\"},\"jkit_transform_rotate\":{\"unit\":\"px\",\"size\":358,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"133d57a9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Social Studies\",\"header_size\":\"h4\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2905a3bd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1780998b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"1bb97169\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"f1fc8ed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"38\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/portrait-of-happy-caucasian-boy-standing-at-chalkb-2021-09-03-06-28-24-utc-copy.jpg\"},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"35\",\"left\":\"15\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":15,\"blur\":25,\"spread\":-5,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=secondary\"},\"jkit_transform_rotate\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1be70e33\",\"elType\":\"widget\",\"settings\":{\"title\":\"Mathematics \",\"header_size\":\"h4\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"84221db\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"389f3412\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"3147fc34\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"27a107c5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"55\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/woman-learning-english-online-2021-08-26-15-34-41-utc-copy.jpg\"},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"35\",\"left\":\"15\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":15,\"blur\":25,\"spread\":-5,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=secondary\"},\"jkit_transform_rotate\":{\"unit\":\"px\",\"size\":358,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6f699cb3\",\"elType\":\"widget\",\"settings\":{\"title\":\"English Course\",\"header_size\":\"h4\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6e14a87b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"12d35f7c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"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\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"52e2d9dc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"65\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/3-copy.jpg\"},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.69999999999999996,\"sizes\":[]},\"shape_divider_top\":\"tilt\",\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":175,\"sizes\":[]},\"shape_divider_top_flip\":\"yes\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=bb22fe7\",\"background_overlay_color\":\"globals\\/colors?id=bb22fe7\"},\"overflow\":\"hidden\",\"shape_divider_top_height_tablet\":{\"unit\":\"px\",\"size\":69,\"sizes\":[]},\"shape_divider_top_height_mobile\":{\"unit\":\"px\",\"size\":51,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"140\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"f426e2a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42.542999999999999,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"content_position_tablet\":\"center\",\"align_tablet\":\"center\",\"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\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"5a616044\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"23\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/aged-teacher-2021-09-24-03-26-41-utc.jpg\"},\"opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-125\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=dafc007\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"150\",\"bottom\":\"0\",\"left\":\"150\",\"isLinked\":false},\"_margin_mobile\":{\"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},\"_element_width_tablet\":\"auto\",\"_z_index_mobile\":6},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"76aca3b6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"32\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/aged-teacher-2021-09-24-03-26-41-utc-2.png\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-125\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-2,\"unit\":\"px\"},\"_offset_y\":{\"size\":1,\"unit\":\"px\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"150\",\"bottom\":\"0\",\"left\":\"150\",\"isLinked\":false},\"_margin_mobile\":{\"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},\"_z_index_mobile\":7},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6ba18f0a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":57.457000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"75\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1da3bcbb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Preparing Our Children\\u2019s Bright Future\",\"align_tablet\":\"center\",\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1f66d3c5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"29\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/edge2.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":13.539999999999999},\"_position\":\"absolute\",\"_offset_x\":{\"size\":24,\"unit\":\"px\"},\"_offset_y\":{\"size\":-38,\"unit\":\"px\"},\"_z_index\":7,\"_element_width_tablet\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":70.582999999999998},\"_offset_x_tablet\":{\"size\":14,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":-4,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":8,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":12,\"unit\":\"px\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4a9c2692\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec ultrices purus nec sollicitudin eleifend. In hac habitasse platea dictumst.<\\/p>\",\"align_tablet\":\"center\",\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2a5e6eb3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-line-chart-light\",\"library\":\"jkiticon\"},\"view\":\"stacked\",\"title_text\":\"Grade Improvement\",\"description_text\":\" Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"position\":\"left\",\"icon_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=d50cf18\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"primary_color\":\"globals\\/colors?id=7f7112a\",\"description_typography_typography\":\"globals\\/typography?id=f8cdd91\"},\"icon_space_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"text_align_tablet\":\"left\",\"text_align_mobile\":\"center\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_element_width_tablet\":\"auto\",\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"131750b8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-open-book-light\",\"library\":\"jkiticon\"},\"view\":\"stacked\",\"title_text\":\"Exam Preparation\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing.\",\"position\":\"left\",\"secondary_color\":\"#FFFFFF\",\"icon_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Exo 2\",\"title_typography_font_size\":{\"unit\":\"rem\",\"size\":1.6000000000000001,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.2,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2,\"sizes\":[]},\"title_typography_font_weight\":\"800\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=d50cf18\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"primary_color\":\"globals\\/colors?id=dafc007\",\"description_typography_typography\":\"globals\\/typography?id=f8cdd91\"},\"icon_space_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_element_width_tablet\":\"auto\",\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"62288012\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-users\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Social Development\",\"description_text\":\"Donec et massa sit amet augue laoreet venenatis id et urna.\",\"position\":\"left\",\"icon_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=d50cf18\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"primary_color\":\"globals\\/colors?id=0a21634\",\"description_typography_typography\":\"globals\\/typography?id=f8cdd91\"},\"icon_space_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_tablet\":\"auto\",\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"6b0269ef\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"19\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/c1.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.43},\"_position\":\"absolute\",\"_offset_x\":{\"size\":578,\"unit\":\"px\"},\"_offset_y\":{\"size\":-180,\"unit\":\"px\"},\"_z_index\":7,\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":116.93300000000001},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":150.93299999999999},\"_offset_x_tablet\":{\"size\":576,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":-61,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-606,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-475,\"unit\":\"px\"},\"_z_index_mobile\":1,\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"11e683e1\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":\"47\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/boy-at-lesson-2021-09-24-03-25-58-utc-copy.jpg\"},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.81000000000000005,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=5425a2a\"},\"background_position\":\"center center\",\"overflow\":\"hidden\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"62726094\",\"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\":\"7696e562\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our vision is every child is safe, inspired, challenged, empowered.\",\"align\":\"center\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"291cdd84\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"17\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/edge.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":9.5749999999999993},\"_position\":\"absolute\",\"_offset_x\":{\"size\":1129,\"unit\":\"px\"},\"_offset_y\":{\"size\":-59,\"unit\":\"px\"},\"_z_index\":7,\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":52.017000000000003},\"_offset_x_mobile\":{\"size\":249,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-19,\"unit\":\"px\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5405eae3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"15\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/c3.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":8.1790000000000003},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-12,\"unit\":\"px\"},\"_offset_y\":{\"size\":-28,\"unit\":\"px\"},\"_z_index\":7,\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":88.516999999999996},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":130.517},\"_offset_x_tablet\":{\"size\":-60,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":-106,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-60,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":70,\"unit\":\"px\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"35062fd0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Integer efficitur ligula ipsum, at vulputate mi fermentum sit amet. Sed pulvinar rutrum commodo. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean vitae tortor nec lectus mattis congue id sed tortor.<\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"36f886f7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"14\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/c4.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":3.73},\"_position\":\"absolute\",\"_offset_x\":{\"size\":81,\"unit\":\"px\"},\"_offset_y\":{\"size\":91,\"unit\":\"px\"},\"_z_index\":7,\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_offset_x_tablet\":{\"size\":616,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":10,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":101,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":30,\"unit\":\"px\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3cc6830a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"75553c20\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"shape_divider_bottom_flip\":\"yes\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=a00e83d\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"97c1c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_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\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"247f69f0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Programs for excellence\",\"align_tablet\":\"center\",\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"777b3a8c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"19\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/c1.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":22.148},\"_position\":\"absolute\",\"_offset_x\":{\"size\":470,\"unit\":\"px\"},\"_offset_y\":{\"size\":-54,\"unit\":\"px\"},\"_z_index\":7,\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":73.183000000000007},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":39.183},\"_offset_x_tablet\":{\"size\":154,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":249,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-218,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-288,\"unit\":\"px\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1d77a3a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"29\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/edge2.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":15.734},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-44,\"unit\":\"px\"},\"_offset_y\":{\"size\":26,\"unit\":\"px\"},\"_z_index\":7,\"_element_width_tablet\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":63.75},\"_offset_x_tablet\":{\"size\":28,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":2,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-23,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-18,\"unit\":\"px\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"69fbb26b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Mauris at lacus semper, fermentum mi sed, rutrum nibh. Sed gravida elit ligula, sit amet venenatis diam hendrerit iaculis.<\\/p>\",\"align_tablet\":\"center\",\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"80ecc3f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"28\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/c2.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":10.724},\"_position\":\"absolute\",\"_offset_x\":{\"size\":179,\"unit\":\"px\"},\"_offset_y\":{\"size\":408,\"unit\":\"px\"},\"_z_index\":7,\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":42.116999999999997},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":30.117000000000001},\"_offset_x_tablet\":{\"size\":635,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":254,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-31,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":355,\"unit\":\"px\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"36ed7571\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover More\",\"align_tablet\":\"center\",\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"1e716000\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"74e0a882\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"617b3cb8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2156a27f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"40\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/grade.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_border\":\"none\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"5\",\"isLinked\":false},\"__globals__\":{\"_border_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=384fc29\"},\"jkit_transform_rotate\":{\"unit\":\"px\",\"size\":360,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1664fafd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Grade Boost\",\"header_size\":\"h5\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3cbe788b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet.<\\/p>\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=f8cdd91\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"2bb04b8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"41a65060\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"45\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/chart.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_border\":\"none\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"5\",\"isLinked\":false},\"__globals__\":{\"_border_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=98e3e15\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20d3131e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Skill Evaluation\",\"header_size\":\"h5\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"621208f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet.<\\/p>\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=f8cdd91\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7db08f0d\",\"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\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"7f824463\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3657acce\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"50\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/test-exam-sheet.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_border\":\"none\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"5\",\"isLinked\":false},\"__globals__\":{\"_border_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=7f7112a\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"54b44e19\",\"elType\":\"widget\",\"settings\":{\"title\":\"Mock Exam\",\"header_size\":\"h5\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7da043cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet.<\\/p>\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=f8cdd91\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"11b6e1fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"401111e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"54\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/schedule-sheet.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_border\":\"none\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"5\",\"isLinked\":false},\"__globals__\":{\"_border_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=4b29dee\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2b04a0cf\",\"elType\":\"widget\",\"settings\":{\"title\":\"Weekend Class\",\"header_size\":\"h5\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7398c131\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet.<\\/p>\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=f8cdd91\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"67d987bc\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":\"25\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/13-copy.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002,\"sizes\":[]},\"shape_divider_top\":\"tilt\",\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":130,\"sizes\":[]},\"shape_divider_top_flip\":\"yes\",\"shape_divider_bottom\":\"tilt\",\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":180,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"185\",\"right\":\"0\",\"bottom\":\"400\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"shape_divider_top_color\":\"globals\\/colors?id=a00e83d\",\"background_overlay_color\":\"globals\\/colors?id=98e3e15\",\"shape_divider_bottom_color\":\"globals\\/colors?id=50714e7\"},\"overflow\":\"hidden\",\"shape_divider_top_height_tablet\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"shape_divider_bottom_height_tablet\":{\"unit\":\"px\",\"size\":102,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"230\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7e44fc62\",\"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\":\"6fe80e94\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Popular Teacher\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"35cd5615\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"14\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/c4.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":3.73},\"_position\":\"absolute\",\"_offset_x\":{\"size\":1013,\"unit\":\"px\"},\"_offset_y\":{\"size\":57,\"unit\":\"px\"},\"_z_index\":7,\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":20.800000000000001},\"_offset_x_tablet\":{\"size\":624,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":257,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":49,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":134,\"unit\":\"px\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2d8a0fb0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"15\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/c3.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":13.103},\"_position\":\"absolute\",\"_offset_x\":{\"size\":1022,\"unit\":\"px\"},\"_offset_y\":{\"size\":-124,\"unit\":\"px\"},\"_z_index\":7,\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":56.966999999999999},\"_offset_x_tablet\":{\"size\":602,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":269,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-75,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":67,\"unit\":\"px\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6bf8d6c4\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=50714e7\"}},\"elements\":[{\"id\":\"172efaaa\",\"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\":\"2628b693\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"-285\",\"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\":\"75\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f9c10ed\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"34\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/Acanthus-black-white-02-copy.png\"},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.050000000000000003,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":25,\"blur\":30,\"spread\":-10,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"25\",\"bottom\":\"40\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=5425a2a\",\"border_color\":\"globals\\/colors?id=secondary\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true}},\"elements\":[{\"id\":\"5bfef58d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"30\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/pp1.jpg\"},\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":20,\"blur\":20,\"spread\":-10,\"color\":\"rgba(0, 0, 0, 0.09)\"},\"_margin\":{\"unit\":\"%\",\"top\":\"-37\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"-63\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_mask_image\":{\"id\":\"52\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/hex2.png\"},\"width_tablet\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"18\",\"left\":\"9\",\"isLinked\":false},\"jkit_transform_rotate\":{\"unit\":\"px\",\"size\":356,\"sizes\":[]},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"536734fe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Harry Smith\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7d2eebfe\",\"elType\":\"widget\",\"settings\":{\"title\":\"English Teacher\",\"header_size\":\"h5\",\"align\":\"center\",\"_margin\":{\"unit\":\"%\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=24b2df3\",\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ed8dd0d\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"__globals__\":{\"stars_color\":\"globals\\/colors?id=3c09f21\"}},\"elements\":[],\"widgetType\":\"star-rating\"},{\"id\":\"f044e69\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0\\\" Lorem ipsum dolor sit amet, consectetur adipiscing elit. Suspendisse est neque, ultrices at enim vitae, mattis consequat dui.\\\"<\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=e64be90\",\"typography_typography\":\"globals\\/typography?id=35188cd\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"20688c95\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact\",\"align\":\"center\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=53ec359\",\"button_background_hover_color\":\"globals\\/colors?id=4b29dee\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"4f7656f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"34\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/Acanthus-black-white-02-copy.png\"},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.050000000000000003,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":25,\"blur\":30,\"spread\":-10,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"25\",\"bottom\":\"40\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=0a21634\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"7\",\"bottom\":\"0\",\"left\":\"7\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":300,\"background_overlay_position\":\"center left\"},\"elements\":[{\"id\":\"3249624e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"39\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/pp2.jpg\"},\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":20,\"blur\":20,\"spread\":-10,\"color\":\"rgba(0, 0, 0, 0.09)\"},\"_margin\":{\"unit\":\"%\",\"top\":\"-37\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"-63\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_mask_image\":{\"id\":\"52\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/hex2.png\"},\"width_tablet\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"18\",\"left\":\"9\",\"isLinked\":false},\"jkit_transform_rotate\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b736f11\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gregory Warren\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15dc9be4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Social Teacher\",\"header_size\":\"h5\",\"align\":\"center\",\"_margin\":{\"unit\":\"%\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=24b2df3\",\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2960b3d4\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"__globals__\":{\"stars_color\":\"globals\\/colors?id=3c09f21\"}},\"elements\":[],\"widgetType\":\"star-rating\"},{\"id\":\"25715d57\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0\\\" Lorem ipsum dolor sit amet, consectetur adipiscing elit. Suspendisse est neque, ultrices at enim vitae, mattis consequat dui.\\\"<\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=e64be90\",\"typography_typography\":\"globals\\/typography?id=35188cd\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6ca6010a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact\",\"align\":\"center\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=5425a2a\",\"button_background_hover_color\":\"globals\\/colors?id=7f7112a\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"2302c129\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"34\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/Acanthus-black-white-02-copy.png\"},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.050000000000000003,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":25,\"blur\":30,\"spread\":-10,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"25\",\"bottom\":\"40\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=8eb8d4a\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"14\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":600},\"elements\":[{\"id\":\"40edaa36\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"44\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/pp3.jpg\"},\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":20,\"blur\":20,\"spread\":-10,\"color\":\"rgba(0, 0, 0, 0.09)\"},\"_margin\":{\"unit\":\"%\",\"top\":\"-37\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"-63\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_mask_image\":{\"id\":\"52\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/hex2.png\"},\"width_tablet\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"18\",\"left\":\"9\",\"isLinked\":false},\"jkit_transform_rotate\":{\"unit\":\"px\",\"size\":356,\"sizes\":[]},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"62850e01\",\"elType\":\"widget\",\"settings\":{\"title\":\"Peter Wong\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4e5605ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"Math Teacher\",\"header_size\":\"h5\",\"align\":\"center\",\"_margin\":{\"unit\":\"%\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=24b2df3\",\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5934810d\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"__globals__\":{\"stars_color\":\"globals\\/colors?id=3c09f21\"}},\"elements\":[],\"widgetType\":\"star-rating\"},{\"id\":\"727b7370\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0\\\" Lorem ipsum dolor sit amet, consectetur adipiscing elit. Suspendisse est neque, ultrices at enim vitae, mattis consequat dui.\\\"<\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=e64be90\",\"typography_typography\":\"globals\\/typography?id=35188cd\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4f267b20\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact\",\"align\":\"center\",\"__globals__\":[]},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2f080c83\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"75\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"20\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=50714e7\"},\"overflow\":\"hidden\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"125\",\"left\":\"20\",\"isLinked\":false},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"24d69b05\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"_inline_size_tablet\":100,\"_inline_size_mobile\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"6c54f0ff\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"11a2b2dc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":12,\"blur\":12,\"spread\":-6,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=bb22fe7\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3a4926e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"62\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/logoipsum-265.png\"},\"width_mobile\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"5c24e6af\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":12,\"blur\":12,\"spread\":-6,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=80e8ddb\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3d7a7b11\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"66\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/logoipsum-264.png\"},\"width_mobile\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2c33e824\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":12,\"blur\":12,\"spread\":-6,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=d38674d\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1b8ef368\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"69\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/logoipsum-262.png\"},\"width_mobile\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2c7d601d\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"32658876\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":12,\"blur\":12,\"spread\":-6,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=d38674d\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"133f4fcb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"74\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/logoipsum-261.png\"},\"width_mobile\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"23bf024c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":12,\"blur\":12,\"spread\":-6,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=a00e83d\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"4d4c89b1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"76\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/logoipsum-259.png\"},\"width_mobile\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"304b5aa6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":12,\"blur\":12,\"spread\":-6,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=80e8ddb\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"69f80618\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"80\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/logoipsum-254.png\"},\"width_mobile\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"502a525a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"867aa3c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Trusted Partners\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"align_tablet\":\"center\",\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6fcba7bd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Donec hendrerit nibh in lectus molestie, id bibendum orci hendrerit. Curabitur euismod ante finibus nibh suscipit, vitae vehicula eros venenatis.<\\/p>\",\"align_tablet\":\"center\",\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"28f55b55\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"25\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/13-copy.jpg\"},\"background_repeat\":\"repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002,\"sizes\":[]},\"shape_divider_top\":\"tilt\",\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":123,\"sizes\":[]},\"shape_divider_top_flip\":\"yes\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=0a21634\",\"shape_divider_top_color\":\"globals\\/colors?id=50714e7\"},\"shape_divider_top_height_tablet\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"16713d98\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"28ce1d88\",\"elType\":\"widget\",\"settings\":{\"title\":\"Join Our Education center Now\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"},\"align_tablet\":\"center\",\"_margin_mobile\":{\"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},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2cb72972\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"28\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/c2.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":37.046999999999997},\"_position\":\"absolute\",\"_offset_x\":{\"size\":508,\"unit\":\"px\"},\"_offset_y\":{\"size\":-54,\"unit\":\"px\"},\"_z_index\":7,\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":89.066999999999993},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":30.067},\"_offset_x_tablet\":{\"size\":94,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":252,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-60,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":28,\"unit\":\"px\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"26068e28\",\"elType\":\"widget\",\"settings\":{\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"},\"align_tablet\":\"center\",\"_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},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"324ca56a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Sign Up Now\",\"align\":\"left\",\"_z_index\":9,\"__globals__\":{\"background_color\":\"globals\\/colors?id=5425a2a\",\"button_background_hover_color\":\"globals\\/colors?id=7f7112a\"},\"align_tablet\":\"center\",\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"74253f20\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"26\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/edge3.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":18.638000000000002},\"_offset_x\":{\"size\":172,\"unit\":\"px\"},\"_offset_y\":{\"size\":331,\"unit\":\"px\"},\"_z_index\":7,\"_margin\":{\"unit\":\"%\",\"top\":\"-60\",\"right\":\"45\",\"bottom\":\"0\",\"left\":\"-45\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":39,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3f4d1f73\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"-150\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"50\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-160\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"42320bd1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"46\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/cute-elementary-kids-with-books-at-school-2022-12-16-18-15-57-utc-copy.jpg\"},\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":\"51\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/liki.png\"},\"width_tablet\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":88,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3e131936\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"57\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/cute-elementary-kids-with-books-at-school-2022-12-16-18-15-57-utc2.png\"},\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_position\":\"absolute\",\"width_tablet\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":88,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(802,167,'_elementor_page_assets','a:1:{s:6:\"styles\";a:54:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";i:34;s:12:\"e-animations\";i:35;s:12:\"e-animations\";i:36;s:12:\"e-animations\";i:37;s:12:\"e-animations\";i:38;s:12:\"e-animations\";i:39;s:12:\"e-animations\";i:40;s:12:\"e-animations\";i:41;s:12:\"e-animations\";i:42;s:12:\"e-animations\";i:43;s:12:\"e-animations\";i:44;s:12:\"e-animations\";i:45;s:12:\"e-animations\";i:46;s:12:\"e-animations\";i:47;s:12:\"e-animations\";i:48;s:12:\"e-animations\";i:49;s:12:\"e-animations\";i:50;s:12:\"e-animations\";i:51;s:12:\"e-animations\";i:52;s:12:\"e-animations\";i:53;s:12:\"e-animations\";}}'),(804,168,'_wp_page_template','elementor_header_footer'),(805,168,'_elementor_edit_mode','builder'),(806,168,'_elementor_template_type','wp-page'),(807,168,'_elementor_version','3.15.3');
INSERT INTO `wp_postmeta` VALUES (808,168,'_elementor_data','[{\"id\":\"1b43d4a4\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"7\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/2-copy.jpg\"},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"shape_divider_bottom\":\"tilt\",\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":225,\"sizes\":[]},\"shape_divider_bottom_flip\":\"yes\",\"margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"00\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.55000000000000004,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=ff9d88d\",\"shape_divider_bottom_color\":\"globals\\/colors?id=a00e83d\"},\"overflow\":\"hidden\",\"shape_divider_bottom_height_tablet\":{\"unit\":\"px\",\"size\":105,\"sizes\":[]},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"130\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"20\",\"bottom\":\"130\",\"left\":\"20\",\"isLinked\":false},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"5a2e5ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"73c21425\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Smart  \",\"sg_title_focused\":\"Learning\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_typography_content_typography_typography\":\"custom\",\"st_title_typography_content_typography_font_family\":\"Mulish\",\"st_title_typography_content_typography_font_size\":{\"unit\":\"rem\",\"size\":8.5,\"sizes\":[]},\"st_title_typography_content_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":4.7999999999999998,\"sizes\":[]},\"st_title_typography_content_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":3.7000000000000002,\"sizes\":[]},\"st_title_typography_content_typography_font_weight\":\"800\",\"st_title_typography_content_typography_text_transform\":\"capitalize\",\"st_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"st_title_typography_content_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=4244abd\",\"st_focused_typography_content_typography_typography\":\"globals\\/typography?id=d65c9cc\",\"st_focused_color_responsive\":\"globals\\/colors?id=secondary\",\"st_title_color_responsive\":\"globals\\/colors?id=secondary\"},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_general_alignment_responsive_tablet\":\"center\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"},{\"id\":\"6a57c977\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Study \",\"sg_title_focused\":\"Easily\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_typography_content_typography_typography\":\"custom\",\"st_title_typography_content_typography_font_family\":\"Mulish\",\"st_title_typography_content_typography_font_size\":{\"unit\":\"rem\",\"size\":8.5,\"sizes\":[]},\"st_title_typography_content_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":4.7999999999999998,\"sizes\":[]},\"st_title_typography_content_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":3.7000000000000002,\"sizes\":[]},\"st_title_typography_content_typography_font_weight\":\"800\",\"st_title_typography_content_typography_text_transform\":\"capitalize\",\"st_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"st_title_typography_content_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=4244abd\",\"st_focused_typography_content_typography_typography\":\"globals\\/typography?id=d65c9cc\",\"st_focused_color_responsive\":\"globals\\/colors?id=secondary\",\"st_title_color_responsive\":\"globals\\/colors?id=secondary\"},\"_margin\":{\"unit\":\"%\",\"top\":\"-7\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"-6\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_general_alignment_responsive_tablet\":\"center\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"},{\"id\":\"3087a342\",\"elType\":\"widget\",\"settings\":{\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"},\"align_tablet\":\"center\",\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3a0c81f4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Check It Out\",\"align_tablet\":\"center\",\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"3b3b1623\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"-115\",\"right\":\"-50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-75\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7f89b368\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"13\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/boy3.png\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"-85\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_position\":\"absolute\",\"_z_index\":2,\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-40\",\"bottom\":\"0\",\"left\":\"-40\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b0d8b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"15\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/c3.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":14.5},\"_position\":\"absolute\",\"_offset_x\":{\"size\":88,\"unit\":\"px\"},\"_offset_y\":{\"size\":22,\"unit\":\"px\"},\"_z_index\":7,\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":33.216999999999999},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":21.216999999999999},\"_offset_x_tablet\":{\"size\":111,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":272,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":100,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":75,\"unit\":\"px\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"478271ab\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"17\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/edge.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":14.5},\"_position\":\"absolute\",\"_offset_x\":{\"size\":521,\"unit\":\"px\"},\"_offset_y\":{\"size\":116,\"unit\":\"px\"},\"_z_index\":7,\"_element_width_tablet\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":78.216999999999999},\"_offset_x_tablet\":{\"size\":534,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":203,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":103,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":382,\"unit\":\"px\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e73906\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"19\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/c1.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32.997},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-11,\"unit\":\"px\"},\"_offset_y\":{\"size\":426,\"unit\":\"px\"},\"_z_index\":7,\"_element_width_tablet\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":415.06700000000001},\"_offset_x_tablet\":{\"size\":-241,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":-256,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":410,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":327,\"unit\":\"px\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4a051f2a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"28\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/c2.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":6.9939999999999998},\"_position\":\"absolute\",\"_offset_x\":{\"size\":539,\"unit\":\"px\"},\"_offset_y\":{\"size\":140,\"unit\":\"px\"},\"_z_index\":7,\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":44.332999999999998},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":91.332999999999998},\"_offset_x_tablet\":{\"size\":545,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":196,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":124,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-13,\"unit\":\"px\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1673b95c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"35\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/little-boy-is-having-online-lessons-by-using-lapto-2022-02-03-17-43-51-utc-copy.jpg\"},\"image_border_border\":\"none\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"image_box_shadow_box_shadow\":{\"horizontal\":100,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.09)\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"-85\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1,\"_background_background\":\"classic\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":\"41\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/liki3.png\"},\"_mask_position\":\"top right\",\"__globals__\":{\"_background_color\":\"\",\"image_border_color\":\"globals\\/colors?id=secondary\"},\"width_tablet\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-40\",\"bottom\":\"0\",\"left\":\"-40\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f1771ce\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"280\",\"left\":\"0\",\"isLinked\":false},\"shape_divider_bottom\":\"tilt\",\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=a00e83d\"},\"overflow\":\"hidden\",\"shape_divider_bottom_height_tablet\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"170\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b6d584b\",\"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\":\"6032aede\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"14\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/c4.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":3.875},\"_position\":\"absolute\",\"_offset_x\":{\"size\":951,\"unit\":\"px\"},\"_offset_y\":{\"size\":33,\"unit\":\"px\"},\"_z_index\":7,\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":36.732999999999997},\"_offset_x_tablet\":{\"size\":614,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":34,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":37,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":80,\"unit\":\"px\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7ba2bee1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"29\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/edge2.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":6.6630000000000003},\"_position\":\"absolute\",\"_offset_x\":{\"size\":325,\"unit\":\"px\"},\"_offset_y\":{\"size\":-43,\"unit\":\"px\"},\"_z_index\":7,\"_offset_x_tablet\":{\"size\":116,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-19,\"unit\":\"px\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"639ecddb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Primary Courses\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6cbb0273\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":175,\"sizes\":[]},\"shape_divider_bottom_flip\":\"yes\",\"__globals__\":{\"shape_divider_bottom_color\":\"globals\\/colors?id=bb22fe7\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7003617b\",\"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\":\"33d7d2f0\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"%\",\"top\":\"-20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"-53\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6768445a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"785c9c90\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"48\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/kids-taking-exam-in-school-2022-06-29-19-26-45-utc-copy.jpg\"},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"35\",\"left\":\"15\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":15,\"blur\":25,\"spread\":-5,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=secondary\"},\"jkit_transform_rotate\":{\"unit\":\"px\",\"size\":358,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"133d57a9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Social Studies\",\"header_size\":\"h4\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2905a3bd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1780998b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"1bb97169\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"f1fc8ed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"38\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/portrait-of-happy-caucasian-boy-standing-at-chalkb-2021-09-03-06-28-24-utc-copy.jpg\"},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"35\",\"left\":\"15\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":15,\"blur\":25,\"spread\":-5,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=secondary\"},\"jkit_transform_rotate\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1be70e33\",\"elType\":\"widget\",\"settings\":{\"title\":\"Mathematics \",\"header_size\":\"h4\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"84221db\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"389f3412\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"3147fc34\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"27a107c5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"55\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/woman-learning-english-online-2021-08-26-15-34-41-utc-copy.jpg\"},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"35\",\"left\":\"15\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":15,\"blur\":25,\"spread\":-5,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=secondary\"},\"jkit_transform_rotate\":{\"unit\":\"px\",\"size\":358,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6f699cb3\",\"elType\":\"widget\",\"settings\":{\"title\":\"English Course\",\"header_size\":\"h4\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6e14a87b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"12d35f7c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"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\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"52e2d9dc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"65\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/3-copy.jpg\"},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.69999999999999996,\"sizes\":[]},\"shape_divider_top\":\"tilt\",\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":175,\"sizes\":[]},\"shape_divider_top_flip\":\"yes\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=bb22fe7\",\"background_overlay_color\":\"globals\\/colors?id=bb22fe7\"},\"overflow\":\"hidden\",\"shape_divider_top_height_tablet\":{\"unit\":\"px\",\"size\":69,\"sizes\":[]},\"shape_divider_top_height_mobile\":{\"unit\":\"px\",\"size\":51,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"140\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"f426e2a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42.542999999999999,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"content_position_tablet\":\"center\",\"align_tablet\":\"center\",\"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\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"5a616044\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"23\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/aged-teacher-2021-09-24-03-26-41-utc.jpg\"},\"opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-125\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=dafc007\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"150\",\"bottom\":\"0\",\"left\":\"150\",\"isLinked\":false},\"_margin_mobile\":{\"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},\"_element_width_tablet\":\"auto\",\"_z_index_mobile\":6},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"76aca3b6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"32\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/aged-teacher-2021-09-24-03-26-41-utc-2.png\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-125\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-2,\"unit\":\"px\"},\"_offset_y\":{\"size\":1,\"unit\":\"px\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"150\",\"bottom\":\"0\",\"left\":\"150\",\"isLinked\":false},\"_margin_mobile\":{\"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},\"_z_index_mobile\":7},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6ba18f0a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":57.457000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"75\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1da3bcbb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Preparing Our Children\\u2019s Bright Future\",\"align_tablet\":\"center\",\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1f66d3c5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"29\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/edge2.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":13.539999999999999},\"_position\":\"absolute\",\"_offset_x\":{\"size\":24,\"unit\":\"px\"},\"_offset_y\":{\"size\":-38,\"unit\":\"px\"},\"_z_index\":7,\"_element_width_tablet\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":70.582999999999998},\"_offset_x_tablet\":{\"size\":14,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":-4,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":8,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":12,\"unit\":\"px\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4a9c2692\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec ultrices purus nec sollicitudin eleifend. In hac habitasse platea dictumst.<\\/p>\",\"align_tablet\":\"center\",\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2a5e6eb3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-line-chart-light\",\"library\":\"jkiticon\"},\"view\":\"stacked\",\"title_text\":\"Grade Improvement\",\"description_text\":\" Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"position\":\"left\",\"icon_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=d50cf18\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"primary_color\":\"globals\\/colors?id=7f7112a\",\"description_typography_typography\":\"globals\\/typography?id=f8cdd91\"},\"icon_space_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"text_align_tablet\":\"left\",\"text_align_mobile\":\"center\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_element_width_tablet\":\"auto\",\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"131750b8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-open-book-light\",\"library\":\"jkiticon\"},\"view\":\"stacked\",\"title_text\":\"Exam Preparation\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing.\",\"position\":\"left\",\"secondary_color\":\"#FFFFFF\",\"icon_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Exo 2\",\"title_typography_font_size\":{\"unit\":\"rem\",\"size\":1.6000000000000001,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.2,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2,\"sizes\":[]},\"title_typography_font_weight\":\"800\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=d50cf18\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"primary_color\":\"globals\\/colors?id=dafc007\",\"description_typography_typography\":\"globals\\/typography?id=f8cdd91\"},\"icon_space_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_element_width_tablet\":\"auto\",\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"62288012\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-users\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Social Development\",\"description_text\":\"Donec et massa sit amet augue laoreet venenatis id et urna.\",\"position\":\"left\",\"icon_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=d50cf18\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"primary_color\":\"globals\\/colors?id=0a21634\",\"description_typography_typography\":\"globals\\/typography?id=f8cdd91\"},\"icon_space_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_tablet\":\"auto\",\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"6b0269ef\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"19\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/c1.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.43},\"_position\":\"absolute\",\"_offset_x\":{\"size\":578,\"unit\":\"px\"},\"_offset_y\":{\"size\":-180,\"unit\":\"px\"},\"_z_index\":7,\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":116.93300000000001},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":150.93299999999999},\"_offset_x_tablet\":{\"size\":576,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":-61,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-606,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-475,\"unit\":\"px\"},\"_z_index_mobile\":1,\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"11e683e1\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":\"47\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/boy-at-lesson-2021-09-24-03-25-58-utc-copy.jpg\"},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.81000000000000005,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=5425a2a\"},\"background_position\":\"center center\",\"overflow\":\"hidden\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"62726094\",\"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\":\"7696e562\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our vision is every child is safe, inspired, challenged, empowered.\",\"align\":\"center\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"291cdd84\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"17\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/edge.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":9.5749999999999993},\"_position\":\"absolute\",\"_offset_x\":{\"size\":1129,\"unit\":\"px\"},\"_offset_y\":{\"size\":-59,\"unit\":\"px\"},\"_z_index\":7,\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":52.017000000000003},\"_offset_x_mobile\":{\"size\":249,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-19,\"unit\":\"px\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5405eae3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"15\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/c3.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":8.1790000000000003},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-12,\"unit\":\"px\"},\"_offset_y\":{\"size\":-28,\"unit\":\"px\"},\"_z_index\":7,\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":88.516999999999996},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":130.517},\"_offset_x_tablet\":{\"size\":-60,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":-106,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-60,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":70,\"unit\":\"px\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"35062fd0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Integer efficitur ligula ipsum, at vulputate mi fermentum sit amet. Sed pulvinar rutrum commodo. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean vitae tortor nec lectus mattis congue id sed tortor.<\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"36f886f7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"14\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/c4.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":3.73},\"_position\":\"absolute\",\"_offset_x\":{\"size\":81,\"unit\":\"px\"},\"_offset_y\":{\"size\":91,\"unit\":\"px\"},\"_z_index\":7,\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_offset_x_tablet\":{\"size\":616,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":10,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":101,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":30,\"unit\":\"px\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3cc6830a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"75553c20\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"shape_divider_bottom_flip\":\"yes\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=a00e83d\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"97c1c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_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\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"247f69f0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Programs for excellence\",\"align_tablet\":\"center\",\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"777b3a8c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"19\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/c1.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":22.148},\"_position\":\"absolute\",\"_offset_x\":{\"size\":470,\"unit\":\"px\"},\"_offset_y\":{\"size\":-54,\"unit\":\"px\"},\"_z_index\":7,\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":73.183000000000007},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":39.183},\"_offset_x_tablet\":{\"size\":154,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":249,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-218,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-288,\"unit\":\"px\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1d77a3a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"29\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/edge2.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":15.734},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-44,\"unit\":\"px\"},\"_offset_y\":{\"size\":26,\"unit\":\"px\"},\"_z_index\":7,\"_element_width_tablet\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":63.75},\"_offset_x_tablet\":{\"size\":28,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":2,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-23,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-18,\"unit\":\"px\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"69fbb26b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Mauris at lacus semper, fermentum mi sed, rutrum nibh. Sed gravida elit ligula, sit amet venenatis diam hendrerit iaculis.<\\/p>\",\"align_tablet\":\"center\",\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"80ecc3f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"28\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/c2.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":10.724},\"_position\":\"absolute\",\"_offset_x\":{\"size\":179,\"unit\":\"px\"},\"_offset_y\":{\"size\":408,\"unit\":\"px\"},\"_z_index\":7,\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":42.116999999999997},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":30.117000000000001},\"_offset_x_tablet\":{\"size\":635,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":254,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-31,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":355,\"unit\":\"px\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"36ed7571\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover More\",\"align_tablet\":\"center\",\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"1e716000\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"74e0a882\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"617b3cb8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2156a27f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"40\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/grade.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_border\":\"none\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"5\",\"isLinked\":false},\"__globals__\":{\"_border_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=384fc29\"},\"jkit_transform_rotate\":{\"unit\":\"px\",\"size\":360,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1664fafd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Grade Boost\",\"header_size\":\"h5\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3cbe788b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet.<\\/p>\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=f8cdd91\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"2bb04b8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"41a65060\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"45\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/chart.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_border\":\"none\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"5\",\"isLinked\":false},\"__globals__\":{\"_border_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=98e3e15\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20d3131e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Skill Evaluation\",\"header_size\":\"h5\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"621208f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet.<\\/p>\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=f8cdd91\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7db08f0d\",\"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\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"7f824463\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3657acce\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"50\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/test-exam-sheet.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_border\":\"none\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"5\",\"isLinked\":false},\"__globals__\":{\"_border_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=7f7112a\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"54b44e19\",\"elType\":\"widget\",\"settings\":{\"title\":\"Mock Exam\",\"header_size\":\"h5\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7da043cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet.<\\/p>\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=f8cdd91\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"11b6e1fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"401111e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"54\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/schedule-sheet.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_border\":\"none\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"5\",\"isLinked\":false},\"__globals__\":{\"_border_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=4b29dee\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2b04a0cf\",\"elType\":\"widget\",\"settings\":{\"title\":\"Weekend Class\",\"header_size\":\"h5\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7398c131\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet.<\\/p>\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=f8cdd91\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"67d987bc\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":\"25\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/13-copy.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002,\"sizes\":[]},\"shape_divider_top\":\"tilt\",\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":130,\"sizes\":[]},\"shape_divider_top_flip\":\"yes\",\"shape_divider_bottom\":\"tilt\",\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":180,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"185\",\"right\":\"0\",\"bottom\":\"400\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"shape_divider_top_color\":\"globals\\/colors?id=a00e83d\",\"background_overlay_color\":\"globals\\/colors?id=98e3e15\",\"shape_divider_bottom_color\":\"globals\\/colors?id=50714e7\"},\"overflow\":\"hidden\",\"shape_divider_top_height_tablet\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"shape_divider_bottom_height_tablet\":{\"unit\":\"px\",\"size\":102,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"230\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7e44fc62\",\"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\":\"6fe80e94\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Popular Teacher\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"35cd5615\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"14\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/c4.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":3.73},\"_position\":\"absolute\",\"_offset_x\":{\"size\":1013,\"unit\":\"px\"},\"_offset_y\":{\"size\":57,\"unit\":\"px\"},\"_z_index\":7,\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":20.800000000000001},\"_offset_x_tablet\":{\"size\":624,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":257,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":49,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":134,\"unit\":\"px\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2d8a0fb0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"15\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/c3.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":13.103},\"_position\":\"absolute\",\"_offset_x\":{\"size\":1022,\"unit\":\"px\"},\"_offset_y\":{\"size\":-124,\"unit\":\"px\"},\"_z_index\":7,\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":56.966999999999999},\"_offset_x_tablet\":{\"size\":602,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":269,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-75,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":67,\"unit\":\"px\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6bf8d6c4\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=50714e7\"}},\"elements\":[{\"id\":\"172efaaa\",\"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\":\"2628b693\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"-285\",\"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\":\"75\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f9c10ed\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"34\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/Acanthus-black-white-02-copy.png\"},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.050000000000000003,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":25,\"blur\":30,\"spread\":-10,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"25\",\"bottom\":\"40\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=5425a2a\",\"border_color\":\"globals\\/colors?id=secondary\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true}},\"elements\":[{\"id\":\"5bfef58d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"30\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/pp1.jpg\"},\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":20,\"blur\":20,\"spread\":-10,\"color\":\"rgba(0, 0, 0, 0.09)\"},\"_margin\":{\"unit\":\"%\",\"top\":\"-37\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"-63\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_mask_image\":{\"id\":\"52\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/hex2.png\"},\"width_tablet\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"18\",\"left\":\"9\",\"isLinked\":false},\"jkit_transform_rotate\":{\"unit\":\"px\",\"size\":356,\"sizes\":[]},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"536734fe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Harry Smith\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7d2eebfe\",\"elType\":\"widget\",\"settings\":{\"title\":\"English Teacher\",\"header_size\":\"h5\",\"align\":\"center\",\"_margin\":{\"unit\":\"%\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=24b2df3\",\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ed8dd0d\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"__globals__\":{\"stars_color\":\"globals\\/colors?id=3c09f21\"}},\"elements\":[],\"widgetType\":\"star-rating\"},{\"id\":\"f044e69\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0\\\" Lorem ipsum dolor sit amet, consectetur adipiscing elit. Suspendisse est neque, ultrices at enim vitae, mattis consequat dui.\\\"<\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=e64be90\",\"typography_typography\":\"globals\\/typography?id=35188cd\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"20688c95\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact\",\"align\":\"center\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=53ec359\",\"button_background_hover_color\":\"globals\\/colors?id=4b29dee\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"4f7656f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"34\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/Acanthus-black-white-02-copy.png\"},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.050000000000000003,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":25,\"blur\":30,\"spread\":-10,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"25\",\"bottom\":\"40\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=0a21634\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"7\",\"bottom\":\"0\",\"left\":\"7\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":300,\"background_overlay_position\":\"center left\"},\"elements\":[{\"id\":\"3249624e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"39\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/pp2.jpg\"},\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":20,\"blur\":20,\"spread\":-10,\"color\":\"rgba(0, 0, 0, 0.09)\"},\"_margin\":{\"unit\":\"%\",\"top\":\"-37\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"-63\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_mask_image\":{\"id\":\"52\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/hex2.png\"},\"width_tablet\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"18\",\"left\":\"9\",\"isLinked\":false},\"jkit_transform_rotate\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b736f11\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gregory Warren\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15dc9be4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Social Teacher\",\"header_size\":\"h5\",\"align\":\"center\",\"_margin\":{\"unit\":\"%\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=24b2df3\",\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2960b3d4\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"__globals__\":{\"stars_color\":\"globals\\/colors?id=3c09f21\"}},\"elements\":[],\"widgetType\":\"star-rating\"},{\"id\":\"25715d57\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0\\\" Lorem ipsum dolor sit amet, consectetur adipiscing elit. Suspendisse est neque, ultrices at enim vitae, mattis consequat dui.\\\"<\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=e64be90\",\"typography_typography\":\"globals\\/typography?id=35188cd\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6ca6010a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact\",\"align\":\"center\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=5425a2a\",\"button_background_hover_color\":\"globals\\/colors?id=7f7112a\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"2302c129\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"34\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/Acanthus-black-white-02-copy.png\"},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.050000000000000003,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":25,\"blur\":30,\"spread\":-10,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"25\",\"bottom\":\"40\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=8eb8d4a\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"14\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":600},\"elements\":[{\"id\":\"40edaa36\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"44\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/pp3.jpg\"},\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":20,\"blur\":20,\"spread\":-10,\"color\":\"rgba(0, 0, 0, 0.09)\"},\"_margin\":{\"unit\":\"%\",\"top\":\"-37\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"-63\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_mask_image\":{\"id\":\"52\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/hex2.png\"},\"width_tablet\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"18\",\"left\":\"9\",\"isLinked\":false},\"jkit_transform_rotate\":{\"unit\":\"px\",\"size\":356,\"sizes\":[]},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"62850e01\",\"elType\":\"widget\",\"settings\":{\"title\":\"Peter Wong\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4e5605ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"Math Teacher\",\"header_size\":\"h5\",\"align\":\"center\",\"_margin\":{\"unit\":\"%\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=24b2df3\",\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5934810d\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"__globals__\":{\"stars_color\":\"globals\\/colors?id=3c09f21\"}},\"elements\":[],\"widgetType\":\"star-rating\"},{\"id\":\"727b7370\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0\\\" Lorem ipsum dolor sit amet, consectetur adipiscing elit. Suspendisse est neque, ultrices at enim vitae, mattis consequat dui.\\\"<\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=e64be90\",\"typography_typography\":\"globals\\/typography?id=35188cd\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4f267b20\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact\",\"align\":\"center\",\"__globals__\":[]},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2f080c83\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"75\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"20\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=50714e7\"},\"overflow\":\"hidden\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"125\",\"left\":\"20\",\"isLinked\":false},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"24d69b05\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"_inline_size_tablet\":100,\"_inline_size_mobile\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"6c54f0ff\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"11a2b2dc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":12,\"blur\":12,\"spread\":-6,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=bb22fe7\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3a4926e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"62\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/logoipsum-265.png\"},\"width_mobile\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"5c24e6af\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":12,\"blur\":12,\"spread\":-6,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=80e8ddb\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3d7a7b11\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"66\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/logoipsum-264.png\"},\"width_mobile\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2c33e824\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":12,\"blur\":12,\"spread\":-6,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=d38674d\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1b8ef368\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"69\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/logoipsum-262.png\"},\"width_mobile\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2c7d601d\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"32658876\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":12,\"blur\":12,\"spread\":-6,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=d38674d\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"133f4fcb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"74\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/logoipsum-261.png\"},\"width_mobile\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"23bf024c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":12,\"blur\":12,\"spread\":-6,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=a00e83d\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"4d4c89b1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"76\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/logoipsum-259.png\"},\"width_mobile\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"304b5aa6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":12,\"blur\":12,\"spread\":-6,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=80e8ddb\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"69f80618\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"80\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/logoipsum-254.png\"},\"width_mobile\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"502a525a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"867aa3c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Trusted Partners\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"align_tablet\":\"center\",\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6fcba7bd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Donec hendrerit nibh in lectus molestie, id bibendum orci hendrerit. Curabitur euismod ante finibus nibh suscipit, vitae vehicula eros venenatis.<\\/p>\",\"align_tablet\":\"center\",\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"28f55b55\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"25\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/13-copy.jpg\"},\"background_repeat\":\"repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002,\"sizes\":[]},\"shape_divider_top\":\"tilt\",\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":123,\"sizes\":[]},\"shape_divider_top_flip\":\"yes\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=0a21634\",\"shape_divider_top_color\":\"globals\\/colors?id=50714e7\"},\"shape_divider_top_height_tablet\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"16713d98\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"28ce1d88\",\"elType\":\"widget\",\"settings\":{\"title\":\"Join Our Education center Now\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"},\"align_tablet\":\"center\",\"_margin_mobile\":{\"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},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2cb72972\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"28\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/c2.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":37.046999999999997},\"_position\":\"absolute\",\"_offset_x\":{\"size\":508,\"unit\":\"px\"},\"_offset_y\":{\"size\":-54,\"unit\":\"px\"},\"_z_index\":7,\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":89.066999999999993},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":30.067},\"_offset_x_tablet\":{\"size\":94,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":252,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-60,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":28,\"unit\":\"px\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"26068e28\",\"elType\":\"widget\",\"settings\":{\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"},\"align_tablet\":\"center\",\"_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},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"324ca56a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Sign Up Now\",\"align\":\"left\",\"_z_index\":9,\"__globals__\":{\"background_color\":\"globals\\/colors?id=5425a2a\",\"button_background_hover_color\":\"globals\\/colors?id=7f7112a\"},\"align_tablet\":\"center\",\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"74253f20\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"26\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/edge3.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":18.638000000000002},\"_offset_x\":{\"size\":172,\"unit\":\"px\"},\"_offset_y\":{\"size\":331,\"unit\":\"px\"},\"_z_index\":7,\"_margin\":{\"unit\":\"%\",\"top\":\"-60\",\"right\":\"45\",\"bottom\":\"0\",\"left\":\"-45\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":39,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3f4d1f73\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"-150\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"50\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-160\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"42320bd1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"46\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/cute-elementary-kids-with-books-at-school-2022-12-16-18-15-57-utc-copy.jpg\"},\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":\"51\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/liki.png\"},\"width_tablet\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":88,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3e131936\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"57\",\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/cute-elementary-kids-with-books-at-school-2022-12-16-18-15-57-utc2.png\"},\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_position\":\"absolute\",\"width_tablet\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":88,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(809,168,'_elementor_page_assets','a:1:{s:6:\"styles\";a:54:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";i:34;s:12:\"e-animations\";i:35;s:12:\"e-animations\";i:36;s:12:\"e-animations\";i:37;s:12:\"e-animations\";i:38;s:12:\"e-animations\";i:39;s:12:\"e-animations\";i:40;s:12:\"e-animations\";i:41;s:12:\"e-animations\";i:42;s:12:\"e-animations\";i:43;s:12:\"e-animations\";i:44;s:12:\"e-animations\";i:45;s:12:\"e-animations\";i:46;s:12:\"e-animations\";i:47;s:12:\"e-animations\";i:48;s:12:\"e-animations\";i:49;s:12:\"e-animations\";i:50;s:12:\"e-animations\";i:51;s:12:\"e-animations\";i:52;s:12:\"e-animations\";i:53;s:12:\"e-animations\";}}'),(812,169,'_wp_page_template','elementor_canvas'),(813,169,'_elementor_edit_mode','builder'),(814,169,'_elementor_template_type','wp-post'),(815,169,'_elementor_version','3.15.3'),(816,169,'_elementor_data','[{\"id\":\"7d9566\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-103\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\",\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"globals\\/colors?id=eb507f3\"},\"z_index\":90,\"background_overlay_background\":\"classic\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":37,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"background_overlay_color_b\":\"#FFFFFF00\",\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"-33\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"-11\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5d85d8f1\",\"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},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false}},\"elements\":[{\"id\":\"6cf40c10\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"30\"},\"elements\":[{\"id\":\"2bacd8a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":20,\"content_position_tablet\":\"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},\"_inline_size_mobile\":60},\"elements\":[{\"id\":\"b207c53\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/\\u0938\\u093e\\u0939\\u093f\\u0924\\u094d\\u092f-1.webp\",\"id\":104,\"size\":\"\",\"alt\":\"\\u0938\\u093e\\u0939\\u093f\\u0924\\u094d\\u092f\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"967a5c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":10,\"_inline_size_tablet\":20,\"content_position_tablet\":\"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},\"_inline_size_mobile\":60},\"elements\":[],\"isInner\":true},{\"id\":\"26b280e1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.664000000000001,\"_inline_size_tablet\":80,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":40,\"content_position\":\"center\"},\"elements\":[{\"id\":\"1c150646\",\"elType\":\"widget\",\"settings\":{\"menu\":\"menu1\",\"__globals__\":{\"menu_typography_typography\":\"globals\\/typography?id=779cdfc\",\"color_menu_item\":\"globals\\/colors?id=secondary\",\"color_menu_item_hover\":\"globals\\/colors?id=7f7112a\",\"all_text_color\":\"globals\\/colors?id=e64be90\",\"all_background_color_color\":\"globals\\/colors?id=f2feccc\",\"all_background_hover_color_color\":\"globals\\/colors?id=e64be90\",\"all_border_color\":\"\",\"all_border_hover_color\":\"\",\"all_background_color_color_b\":\"\",\"all_background_hover_color_color_b\":\"globals\\/colors?id=e64be90\",\"all_hover_color\":\"globals\\/colors?id=7f7112a\",\"toggle_color\":\"globals\\/colors?id=secondary\",\"background_color_dropdown_item\":\"globals\\/colors?id=e64be90\",\"color_menu_item_active\":\"globals\\/colors?id=7f7112a\",\"background_color_dropdown_item_hover\":\"\",\"color_dropdown_item_hover\":\"globals\\/colors?id=4b29dee\",\"color_dropdown_item\":\"globals\\/colors?id=primary\",\"dropdown_border_color\":\"globals\\/colors?id=76544c2\",\"color_dropdown_item_active\":\"globals\\/colors?id=7f7112a\"},\"resp_align\":\"right\",\"padding_horizontal_menu_item_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"menu_space_between\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"dropdown_divider_border\":\"none\",\"all_background_color_background\":\"classic\",\"all_background_hover_color_background\":\"classic\",\"all_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"all_background_color_gradient_angle\":{\"unit\":\"deg\",\"size\":130,\"sizes\":[]},\"dropdown_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"menu_space_between_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_horizontal_menu_item_mobile\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"menu_space_between_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"dropdown_border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_dropdown_item_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_horizontal_dropdown_item_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"padding_vertical_dropdown_item_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"menu_typography_font_family\":\"Roboto\",\"color_menu_item\":\"#F0F0F0\",\"background_color_dropdown_item\":\"#202020\",\"toggle_color\":\"#FFFFFF\",\"all_text_color\":\"#F4F9FC\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"23\",\"bottom\":\"14\",\"left\":\"23\",\"isLinked\":false},\"all_background_hover_color_color_stop\":{\"unit\":\"%\",\"size\":66,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"menu_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":0.90000000000000002,\"sizes\":[]},\"menu_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.90000000000000002,\"sizes\":[]},\"menu_typography_font_weight\":\"500\",\"menu_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"menu_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"all_background_color_color_b\":\"#FC3B00\",\"all_background_hover_color_color\":\"#FFFFFF\",\"all_background_hover_color_color_b\":\"#FFFFFF\",\"dropdown_border_width_tablet\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"dropdown_border_width_mobile\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"dropdown_border_radius_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"navmenu_align\":\"right\",\"dropdown\":\"mobile\",\"menu_last_item\":\"cta\",\"dropdown_box_shadow_box_shadow_type\":\"yes\",\"dropdown_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":30,\"blur\":30,\"spread\":-15,\"color\":\"rgba(0, 0, 0, 0.4)\"},\"all_button_box_shadow_box_shadow_type\":\"yes\",\"all_button_box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":10,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":107.182}},\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(817,169,'_elementor_page_assets','a:0:{}'),(819,170,'_wp_page_template','elementor_canvas'),(820,170,'_elementor_edit_mode','builder'),(821,170,'_elementor_template_type','wp-post'),(822,170,'_elementor_version','3.15.3'),(823,170,'_elementor_data','[{\"id\":\"7d9566\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-103\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\",\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"globals\\/colors?id=eb507f3\"},\"z_index\":90,\"background_overlay_background\":\"classic\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":37,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"background_overlay_color_b\":\"#FFFFFF00\",\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"-33\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"-11\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5d85d8f1\",\"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},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false}},\"elements\":[{\"id\":\"6cf40c10\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"30\"},\"elements\":[{\"id\":\"2bacd8a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":20,\"content_position_tablet\":\"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},\"_inline_size_mobile\":60},\"elements\":[{\"id\":\"b207c53\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/\\u0938\\u093e\\u0939\\u093f\\u0924\\u094d\\u092f-1.webp\",\"id\":104,\"size\":\"\",\"alt\":\"\\u0938\\u093e\\u0939\\u093f\\u0924\\u094d\\u092f\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"967a5c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":10,\"_inline_size_tablet\":20,\"content_position_tablet\":\"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},\"_inline_size_mobile\":60},\"elements\":[],\"isInner\":true},{\"id\":\"26b280e1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.664000000000001,\"_inline_size_tablet\":80,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":40,\"content_position\":\"center\"},\"elements\":[{\"id\":\"1c150646\",\"elType\":\"widget\",\"settings\":{\"menu\":\"menu1\",\"__globals__\":{\"menu_typography_typography\":\"globals\\/typography?id=779cdfc\",\"color_menu_item\":\"globals\\/colors?id=secondary\",\"color_menu_item_hover\":\"globals\\/colors?id=7f7112a\",\"all_text_color\":\"globals\\/colors?id=e64be90\",\"all_background_color_color\":\"globals\\/colors?id=f2feccc\",\"all_background_hover_color_color\":\"globals\\/colors?id=e64be90\",\"all_border_color\":\"\",\"all_border_hover_color\":\"\",\"all_background_color_color_b\":\"\",\"all_background_hover_color_color_b\":\"globals\\/colors?id=e64be90\",\"all_hover_color\":\"globals\\/colors?id=7f7112a\",\"toggle_color\":\"globals\\/colors?id=secondary\",\"background_color_dropdown_item\":\"globals\\/colors?id=e64be90\",\"color_menu_item_active\":\"globals\\/colors?id=7f7112a\",\"background_color_dropdown_item_hover\":\"\",\"color_dropdown_item_hover\":\"globals\\/colors?id=4b29dee\",\"color_dropdown_item\":\"globals\\/colors?id=primary\",\"dropdown_border_color\":\"globals\\/colors?id=76544c2\",\"color_dropdown_item_active\":\"globals\\/colors?id=7f7112a\"},\"resp_align\":\"right\",\"padding_horizontal_menu_item_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"menu_space_between\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"dropdown_divider_border\":\"none\",\"all_background_color_background\":\"classic\",\"all_background_hover_color_background\":\"classic\",\"all_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"all_background_color_gradient_angle\":{\"unit\":\"deg\",\"size\":130,\"sizes\":[]},\"dropdown_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"menu_space_between_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_horizontal_menu_item_mobile\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"menu_space_between_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"dropdown_border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_dropdown_item_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_horizontal_dropdown_item_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"padding_vertical_dropdown_item_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"menu_typography_font_family\":\"Roboto\",\"color_menu_item\":\"#F0F0F0\",\"background_color_dropdown_item\":\"#202020\",\"toggle_color\":\"#FFFFFF\",\"all_text_color\":\"#F4F9FC\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"23\",\"bottom\":\"14\",\"left\":\"23\",\"isLinked\":false},\"all_background_hover_color_color_stop\":{\"unit\":\"%\",\"size\":66,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"menu_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":0.90000000000000002,\"sizes\":[]},\"menu_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.90000000000000002,\"sizes\":[]},\"menu_typography_font_weight\":\"500\",\"menu_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"menu_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"all_background_color_color_b\":\"#FC3B00\",\"all_background_hover_color_color\":\"#FFFFFF\",\"all_background_hover_color_color_b\":\"#FFFFFF\",\"dropdown_border_width_tablet\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"dropdown_border_width_mobile\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"dropdown_border_radius_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"navmenu_align\":\"right\",\"dropdown\":\"mobile\",\"menu_last_item\":\"cta\",\"dropdown_box_shadow_box_shadow_type\":\"yes\",\"dropdown_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":30,\"blur\":30,\"spread\":-15,\"color\":\"rgba(0, 0, 0, 0.4)\"},\"all_button_box_shadow_box_shadow_type\":\"yes\",\"all_button_box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":10,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":107.182}},\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(824,170,'_elementor_page_assets','a:0:{}'),(826,171,'_wp_page_template','elementor_canvas'),(827,171,'_elementor_edit_mode','builder'),(828,171,'_elementor_template_type','wp-post'),(829,171,'_elementor_version','3.15.3'),(830,171,'_elementor_data','[{\"id\":\"7d9566\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-103\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\",\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"globals\\/colors?id=eb507f3\"},\"z_index\":90,\"background_overlay_background\":\"classic\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":37,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"background_overlay_color_b\":\"#FFFFFF00\",\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"-33\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"-11\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5d85d8f1\",\"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},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false}},\"elements\":[{\"id\":\"6cf40c10\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"30\"},\"elements\":[{\"id\":\"2bacd8a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":20,\"content_position_tablet\":\"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},\"_inline_size_mobile\":60},\"elements\":[{\"id\":\"b207c53\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/\\u0938\\u093e\\u0939\\u093f\\u0924\\u094d\\u092f-1.webp\",\"id\":104,\"size\":\"\",\"alt\":\"\\u0938\\u093e\\u0939\\u093f\\u0924\\u094d\\u092f\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"967a5c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":10,\"_inline_size_tablet\":20,\"content_position_tablet\":\"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},\"_inline_size_mobile\":60},\"elements\":[],\"isInner\":true},{\"id\":\"26b280e1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.664000000000001,\"_inline_size_tablet\":80,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":40,\"content_position\":\"center\"},\"elements\":[{\"id\":\"1c150646\",\"elType\":\"widget\",\"settings\":{\"menu\":\"menu1\",\"__globals__\":{\"menu_typography_typography\":\"globals\\/typography?id=779cdfc\",\"color_menu_item\":\"globals\\/colors?id=secondary\",\"color_menu_item_hover\":\"globals\\/colors?id=7f7112a\",\"all_text_color\":\"globals\\/colors?id=e64be90\",\"all_background_color_color\":\"globals\\/colors?id=f2feccc\",\"all_background_hover_color_color\":\"globals\\/colors?id=e64be90\",\"all_border_color\":\"\",\"all_border_hover_color\":\"\",\"all_background_color_color_b\":\"\",\"all_background_hover_color_color_b\":\"globals\\/colors?id=e64be90\",\"all_hover_color\":\"globals\\/colors?id=7f7112a\",\"toggle_color\":\"globals\\/colors?id=secondary\",\"background_color_dropdown_item\":\"globals\\/colors?id=e64be90\",\"color_menu_item_active\":\"globals\\/colors?id=7f7112a\",\"background_color_dropdown_item_hover\":\"\",\"color_dropdown_item_hover\":\"globals\\/colors?id=4b29dee\",\"color_dropdown_item\":\"globals\\/colors?id=primary\",\"dropdown_border_color\":\"globals\\/colors?id=76544c2\",\"color_dropdown_item_active\":\"globals\\/colors?id=7f7112a\"},\"resp_align\":\"right\",\"padding_horizontal_menu_item_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"menu_space_between\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"dropdown_divider_border\":\"none\",\"all_background_color_background\":\"classic\",\"all_background_hover_color_background\":\"classic\",\"all_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"all_background_color_gradient_angle\":{\"unit\":\"deg\",\"size\":130,\"sizes\":[]},\"dropdown_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"menu_space_between_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_horizontal_menu_item_mobile\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"menu_space_between_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"dropdown_border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_dropdown_item_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_horizontal_dropdown_item_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"padding_vertical_dropdown_item_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"menu_typography_font_family\":\"Roboto\",\"color_menu_item\":\"#F0F0F0\",\"background_color_dropdown_item\":\"#202020\",\"toggle_color\":\"#FFFFFF\",\"all_text_color\":\"#F4F9FC\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"23\",\"bottom\":\"14\",\"left\":\"23\",\"isLinked\":false},\"all_background_hover_color_color_stop\":{\"unit\":\"%\",\"size\":66,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"menu_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":0.90000000000000002,\"sizes\":[]},\"menu_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.90000000000000002,\"sizes\":[]},\"menu_typography_font_weight\":\"500\",\"menu_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"menu_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"all_background_color_color_b\":\"#FC3B00\",\"all_background_hover_color_color\":\"#FFFFFF\",\"all_background_hover_color_color_b\":\"#FFFFFF\",\"dropdown_border_width_tablet\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"dropdown_border_width_mobile\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"dropdown_border_radius_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"navmenu_align\":\"right\",\"dropdown\":\"mobile\",\"menu_last_item\":\"cta\",\"dropdown_box_shadow_box_shadow_type\":\"yes\",\"dropdown_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":30,\"blur\":30,\"spread\":-15,\"color\":\"rgba(0, 0, 0, 0.4)\"},\"all_button_box_shadow_box_shadow_type\":\"yes\",\"all_button_box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":10,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":107.182}},\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(831,171,'_elementor_page_assets','a:0:{}'),(834,172,'_wp_page_template','elementor_canvas'),(835,172,'_elementor_edit_mode','builder'),(836,172,'_elementor_template_type','wp-post'),(837,172,'_elementor_version','3.15.3'),(838,172,'_elementor_data','[{\"id\":\"7d9566\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-103\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\",\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"globals\\/colors?id=eb507f3\"},\"z_index\":90,\"background_overlay_background\":\"classic\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":37,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"background_overlay_color_b\":\"#FFFFFF00\",\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"-33\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"-11\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5d85d8f1\",\"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},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false}},\"elements\":[{\"id\":\"6cf40c10\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"30\"},\"elements\":[{\"id\":\"2bacd8a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":20,\"content_position_tablet\":\"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},\"_inline_size_mobile\":60},\"elements\":[{\"id\":\"b207c53\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/\\u0938\\u093e\\u0939\\u093f\\u0924\\u094d\\u092f-1.webp\",\"id\":104,\"size\":\"\",\"alt\":\"\\u0938\\u093e\\u0939\\u093f\\u0924\\u094d\\u092f\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"967a5c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":10,\"_inline_size_tablet\":20,\"content_position_tablet\":\"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},\"_inline_size_mobile\":60},\"elements\":[],\"isInner\":true},{\"id\":\"26b280e1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.664000000000001,\"_inline_size_tablet\":80,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":40,\"content_position\":\"center\"},\"elements\":[{\"id\":\"1c150646\",\"elType\":\"widget\",\"settings\":{\"menu\":\"menu1\",\"__globals__\":{\"menu_typography_typography\":\"globals\\/typography?id=779cdfc\",\"color_menu_item\":\"globals\\/colors?id=secondary\",\"color_menu_item_hover\":\"globals\\/colors?id=7f7112a\",\"all_text_color\":\"globals\\/colors?id=e64be90\",\"all_background_color_color\":\"globals\\/colors?id=f2feccc\",\"all_background_hover_color_color\":\"globals\\/colors?id=e64be90\",\"all_border_color\":\"\",\"all_border_hover_color\":\"\",\"all_background_color_color_b\":\"\",\"all_background_hover_color_color_b\":\"globals\\/colors?id=e64be90\",\"all_hover_color\":\"globals\\/colors?id=7f7112a\",\"toggle_color\":\"globals\\/colors?id=secondary\",\"background_color_dropdown_item\":\"globals\\/colors?id=e64be90\",\"color_menu_item_active\":\"globals\\/colors?id=7f7112a\",\"background_color_dropdown_item_hover\":\"\",\"color_dropdown_item_hover\":\"globals\\/colors?id=4b29dee\",\"color_dropdown_item\":\"globals\\/colors?id=primary\",\"dropdown_border_color\":\"globals\\/colors?id=76544c2\",\"color_dropdown_item_active\":\"globals\\/colors?id=7f7112a\"},\"resp_align\":\"right\",\"padding_horizontal_menu_item_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"menu_space_between\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"dropdown_divider_border\":\"none\",\"all_background_color_background\":\"classic\",\"all_background_hover_color_background\":\"classic\",\"all_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"all_background_color_gradient_angle\":{\"unit\":\"deg\",\"size\":130,\"sizes\":[]},\"dropdown_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"menu_space_between_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_horizontal_menu_item_mobile\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"menu_space_between_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"dropdown_border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_dropdown_item_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_horizontal_dropdown_item_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"padding_vertical_dropdown_item_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"menu_typography_font_family\":\"Roboto\",\"color_menu_item\":\"#F0F0F0\",\"background_color_dropdown_item\":\"#202020\",\"toggle_color\":\"#FFFFFF\",\"all_text_color\":\"#F4F9FC\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"23\",\"bottom\":\"14\",\"left\":\"23\",\"isLinked\":false},\"all_background_hover_color_color_stop\":{\"unit\":\"%\",\"size\":66,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"menu_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":0.90000000000000002,\"sizes\":[]},\"menu_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.90000000000000002,\"sizes\":[]},\"menu_typography_font_weight\":\"500\",\"menu_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"menu_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"all_background_color_color_b\":\"#FC3B00\",\"all_background_hover_color_color\":\"#FFFFFF\",\"all_background_hover_color_color_b\":\"#FFFFFF\",\"dropdown_border_width_tablet\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"dropdown_border_width_mobile\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"dropdown_border_radius_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"navmenu_align\":\"right\",\"dropdown\":\"mobile\",\"menu_last_item\":\"cta\",\"dropdown_box_shadow_box_shadow_type\":\"yes\",\"dropdown_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":30,\"blur\":30,\"spread\":-15,\"color\":\"rgba(0, 0, 0, 0.4)\"},\"all_button_box_shadow_box_shadow_type\":\"yes\",\"all_button_box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":10,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":107.182}},\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(839,172,'_elementor_page_assets','a:0:{}'),(841,173,'_wp_page_template','elementor_canvas'),(842,173,'_elementor_edit_mode','builder'),(843,173,'_elementor_template_type','wp-post'),(844,173,'_elementor_version','3.15.3'),(845,173,'_elementor_data','[{\"id\":\"7d9566\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-103\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\",\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"globals\\/colors?id=eb507f3\"},\"z_index\":90,\"background_overlay_background\":\"classic\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":37,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"background_overlay_color_b\":\"#FFFFFF00\",\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"-33\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"-11\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5d85d8f1\",\"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},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false}},\"elements\":[{\"id\":\"6cf40c10\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"30\"},\"elements\":[{\"id\":\"2bacd8a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":20,\"content_position_tablet\":\"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},\"_inline_size_mobile\":60},\"elements\":[{\"id\":\"b207c53\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/\\u0938\\u093e\\u0939\\u093f\\u0924\\u094d\\u092f-1.webp\",\"id\":104,\"size\":\"\",\"alt\":\"\\u0938\\u093e\\u0939\\u093f\\u0924\\u094d\\u092f\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"967a5c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":10,\"_inline_size_tablet\":20,\"content_position_tablet\":\"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},\"_inline_size_mobile\":60},\"elements\":[],\"isInner\":true},{\"id\":\"26b280e1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.664000000000001,\"_inline_size_tablet\":80,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":40,\"content_position\":\"center\"},\"elements\":[{\"id\":\"1c150646\",\"elType\":\"widget\",\"settings\":{\"menu\":\"menu1\",\"__globals__\":{\"menu_typography_typography\":\"globals\\/typography?id=779cdfc\",\"color_menu_item\":\"globals\\/colors?id=secondary\",\"color_menu_item_hover\":\"globals\\/colors?id=7f7112a\",\"all_text_color\":\"globals\\/colors?id=e64be90\",\"all_background_color_color\":\"globals\\/colors?id=f2feccc\",\"all_background_hover_color_color\":\"globals\\/colors?id=e64be90\",\"all_border_color\":\"\",\"all_border_hover_color\":\"\",\"all_background_color_color_b\":\"\",\"all_background_hover_color_color_b\":\"globals\\/colors?id=e64be90\",\"all_hover_color\":\"globals\\/colors?id=7f7112a\",\"toggle_color\":\"globals\\/colors?id=secondary\",\"background_color_dropdown_item\":\"globals\\/colors?id=e64be90\",\"color_menu_item_active\":\"globals\\/colors?id=7f7112a\",\"background_color_dropdown_item_hover\":\"\",\"color_dropdown_item_hover\":\"globals\\/colors?id=4b29dee\",\"color_dropdown_item\":\"globals\\/colors?id=primary\",\"dropdown_border_color\":\"globals\\/colors?id=76544c2\",\"color_dropdown_item_active\":\"globals\\/colors?id=7f7112a\"},\"resp_align\":\"right\",\"padding_horizontal_menu_item_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"menu_space_between\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"dropdown_divider_border\":\"none\",\"all_background_color_background\":\"classic\",\"all_background_hover_color_background\":\"classic\",\"all_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"all_background_color_gradient_angle\":{\"unit\":\"deg\",\"size\":130,\"sizes\":[]},\"dropdown_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"menu_space_between_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_horizontal_menu_item_mobile\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"menu_space_between_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"dropdown_border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_dropdown_item_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_horizontal_dropdown_item_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"padding_vertical_dropdown_item_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"menu_typography_font_family\":\"Roboto\",\"color_menu_item\":\"#F0F0F0\",\"background_color_dropdown_item\":\"#202020\",\"toggle_color\":\"#FFFFFF\",\"all_text_color\":\"#F4F9FC\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"23\",\"bottom\":\"14\",\"left\":\"23\",\"isLinked\":false},\"all_background_hover_color_color_stop\":{\"unit\":\"%\",\"size\":66,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"menu_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":0.90000000000000002,\"sizes\":[]},\"menu_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.90000000000000002,\"sizes\":[]},\"menu_typography_font_weight\":\"500\",\"menu_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"menu_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"all_background_color_color_b\":\"#FC3B00\",\"all_background_hover_color_color\":\"#FFFFFF\",\"all_background_hover_color_color_b\":\"#FFFFFF\",\"dropdown_border_width_tablet\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"dropdown_border_width_mobile\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"dropdown_border_radius_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"navmenu_align\":\"right\",\"dropdown\":\"mobile\",\"menu_last_item\":\"cta\",\"dropdown_box_shadow_box_shadow_type\":\"yes\",\"dropdown_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":30,\"blur\":30,\"spread\":-15,\"color\":\"rgba(0, 0, 0, 0.4)\"},\"all_button_box_shadow_box_shadow_type\":\"yes\",\"all_button_box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":10,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":107.182}},\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(846,173,'_elementor_page_assets','a:0:{}'),(848,174,'_wp_page_template','elementor_canvas'),(849,174,'_elementor_edit_mode','builder'),(850,174,'_elementor_template_type','wp-post'),(851,174,'_elementor_version','3.15.3'),(852,174,'_elementor_data','[{\"id\":\"7d9566\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":0,\"bottom\":\"-103\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\",\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"globals\\/colors?id=eb507f3\"},\"z_index\":90,\"background_overlay_background\":\"classic\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":37,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"background_overlay_color_b\":\"#FFFFFF00\",\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"-33\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"-11\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5d85d8f1\",\"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},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false}},\"elements\":[{\"id\":\"6cf40c10\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"30\"},\"elements\":[{\"id\":\"2bacd8a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":20,\"content_position_tablet\":\"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},\"_inline_size_mobile\":60},\"elements\":[{\"id\":\"b207c53\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/\\u0938\\u093e\\u0939\\u093f\\u0924\\u094d\\u092f-1.webp\",\"id\":104,\"size\":\"\",\"alt\":\"\\u0938\\u093e\\u0939\\u093f\\u0924\\u094d\\u092f\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"967a5c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":10,\"_inline_size_tablet\":20,\"content_position_tablet\":\"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},\"_inline_size_mobile\":60},\"elements\":[],\"isInner\":true},{\"id\":\"26b280e1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.664000000000001,\"_inline_size_tablet\":80,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":40,\"content_position\":\"center\"},\"elements\":[{\"id\":\"1c150646\",\"elType\":\"widget\",\"settings\":{\"menu\":\"menu1\",\"__globals__\":{\"menu_typography_typography\":\"globals\\/typography?id=779cdfc\",\"color_menu_item\":\"globals\\/colors?id=secondary\",\"color_menu_item_hover\":\"globals\\/colors?id=7f7112a\",\"all_text_color\":\"globals\\/colors?id=e64be90\",\"all_background_color_color\":\"globals\\/colors?id=f2feccc\",\"all_background_hover_color_color\":\"globals\\/colors?id=e64be90\",\"all_border_color\":\"\",\"all_border_hover_color\":\"\",\"all_background_color_color_b\":\"\",\"all_background_hover_color_color_b\":\"globals\\/colors?id=e64be90\",\"all_hover_color\":\"globals\\/colors?id=7f7112a\",\"toggle_color\":\"globals\\/colors?id=secondary\",\"background_color_dropdown_item\":\"globals\\/colors?id=e64be90\",\"color_menu_item_active\":\"globals\\/colors?id=7f7112a\",\"background_color_dropdown_item_hover\":\"\",\"color_dropdown_item_hover\":\"globals\\/colors?id=4b29dee\",\"color_dropdown_item\":\"globals\\/colors?id=primary\",\"dropdown_border_color\":\"globals\\/colors?id=76544c2\",\"color_dropdown_item_active\":\"globals\\/colors?id=7f7112a\"},\"resp_align\":\"right\",\"padding_horizontal_menu_item_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"menu_space_between\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"dropdown_divider_border\":\"none\",\"all_background_color_background\":\"classic\",\"all_background_hover_color_background\":\"classic\",\"all_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"all_background_color_gradient_angle\":{\"unit\":\"deg\",\"size\":130,\"sizes\":[]},\"dropdown_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"menu_space_between_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_horizontal_menu_item_mobile\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"menu_space_between_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"dropdown_border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_dropdown_item_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_horizontal_dropdown_item_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"padding_vertical_dropdown_item_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"menu_typography_font_family\":\"Roboto\",\"color_menu_item\":\"#F0F0F0\",\"background_color_dropdown_item\":\"#202020\",\"toggle_color\":\"#FFFFFF\",\"all_text_color\":\"#F4F9FC\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"23\",\"bottom\":\"14\",\"left\":\"23\",\"isLinked\":false},\"all_background_hover_color_color_stop\":{\"unit\":\"%\",\"size\":66,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"menu_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":0.90000000000000002,\"sizes\":[]},\"menu_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.90000000000000002,\"sizes\":[]},\"menu_typography_font_weight\":\"500\",\"menu_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"menu_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"all_background_color_color_b\":\"#FC3B00\",\"all_background_hover_color_color\":\"#FFFFFF\",\"all_background_hover_color_color_b\":\"#FFFFFF\",\"dropdown_border_width_tablet\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"dropdown_border_width_mobile\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"dropdown_border_radius_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"navmenu_align\":\"right\",\"dropdown\":\"mobile\",\"menu_last_item\":\"cta\",\"dropdown_box_shadow_box_shadow_type\":\"yes\",\"dropdown_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":30,\"blur\":30,\"spread\":-15,\"color\":\"rgba(0, 0, 0, 0.4)\"},\"all_button_box_shadow_box_shadow_type\":\"yes\",\"all_button_box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":10,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":107.182}},\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(853,174,'_elementor_page_assets','a:0:{}'),(856,175,'_wp_page_template','elementor_canvas'),(857,175,'_elementor_edit_mode','builder'),(858,175,'_elementor_template_type','wp-post'),(859,175,'_elementor_version','3.15.3'),(860,175,'_elementor_data','[{\"id\":\"7d9566\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":0,\"bottom\":\"-103\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\",\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"globals\\/colors?id=eb507f3\"},\"z_index\":90,\"background_overlay_background\":\"classic\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":37,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"background_overlay_color_b\":\"#FFFFFF00\",\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"-33\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"-11\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5d85d8f1\",\"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},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false}},\"elements\":[{\"id\":\"6cf40c10\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"30\"},\"elements\":[{\"id\":\"2bacd8a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":20,\"content_position_tablet\":\"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},\"_inline_size_mobile\":60},\"elements\":[{\"id\":\"b207c53\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/\\u0938\\u093e\\u0939\\u093f\\u0924\\u094d\\u092f-1.webp\",\"id\":104,\"size\":\"\",\"alt\":\"\\u0938\\u093e\\u0939\\u093f\\u0924\\u094d\\u092f\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"967a5c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":10,\"_inline_size_tablet\":20,\"content_position_tablet\":\"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},\"_inline_size_mobile\":60},\"elements\":[],\"isInner\":true},{\"id\":\"26b280e1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.664000000000001,\"_inline_size_tablet\":80,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":40,\"content_position\":\"center\"},\"elements\":[{\"id\":\"1c150646\",\"elType\":\"widget\",\"settings\":{\"menu\":\"menu1\",\"__globals__\":{\"menu_typography_typography\":\"globals\\/typography?id=779cdfc\",\"color_menu_item\":\"globals\\/colors?id=secondary\",\"color_menu_item_hover\":\"globals\\/colors?id=7f7112a\",\"all_text_color\":\"globals\\/colors?id=e64be90\",\"all_background_color_color\":\"globals\\/colors?id=f2feccc\",\"all_background_hover_color_color\":\"globals\\/colors?id=e64be90\",\"all_border_color\":\"\",\"all_border_hover_color\":\"\",\"all_background_color_color_b\":\"\",\"all_background_hover_color_color_b\":\"globals\\/colors?id=e64be90\",\"all_hover_color\":\"globals\\/colors?id=7f7112a\",\"toggle_color\":\"globals\\/colors?id=secondary\",\"background_color_dropdown_item\":\"globals\\/colors?id=e64be90\",\"color_menu_item_active\":\"globals\\/colors?id=7f7112a\",\"background_color_dropdown_item_hover\":\"\",\"color_dropdown_item_hover\":\"globals\\/colors?id=4b29dee\",\"color_dropdown_item\":\"globals\\/colors?id=primary\",\"dropdown_border_color\":\"globals\\/colors?id=76544c2\",\"color_dropdown_item_active\":\"globals\\/colors?id=7f7112a\"},\"resp_align\":\"right\",\"padding_horizontal_menu_item_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"menu_space_between\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"dropdown_divider_border\":\"none\",\"all_background_color_background\":\"classic\",\"all_background_hover_color_background\":\"classic\",\"all_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"all_background_color_gradient_angle\":{\"unit\":\"deg\",\"size\":130,\"sizes\":[]},\"dropdown_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"menu_space_between_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_horizontal_menu_item_mobile\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"menu_space_between_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"dropdown_border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_dropdown_item_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_horizontal_dropdown_item_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"padding_vertical_dropdown_item_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"menu_typography_font_family\":\"Roboto\",\"color_menu_item\":\"#F0F0F0\",\"background_color_dropdown_item\":\"#202020\",\"toggle_color\":\"#FFFFFF\",\"all_text_color\":\"#F4F9FC\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"23\",\"bottom\":\"14\",\"left\":\"23\",\"isLinked\":false},\"all_background_hover_color_color_stop\":{\"unit\":\"%\",\"size\":66,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"menu_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":0.90000000000000002,\"sizes\":[]},\"menu_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.90000000000000002,\"sizes\":[]},\"menu_typography_font_weight\":\"500\",\"menu_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"menu_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"all_background_color_color_b\":\"#FC3B00\",\"all_background_hover_color_color\":\"#FFFFFF\",\"all_background_hover_color_color_b\":\"#FFFFFF\",\"dropdown_border_width_tablet\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"dropdown_border_width_mobile\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"dropdown_border_radius_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"navmenu_align\":\"right\",\"dropdown\":\"mobile\",\"menu_last_item\":\"cta\",\"dropdown_box_shadow_box_shadow_type\":\"yes\",\"dropdown_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":30,\"blur\":30,\"spread\":-15,\"color\":\"rgba(0, 0, 0, 0.4)\"},\"all_button_box_shadow_box_shadow_type\":\"yes\",\"all_button_box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":10,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":107.182}},\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(861,175,'_elementor_page_assets','a:0:{}'),(863,176,'_wp_page_template','elementor_canvas'),(864,176,'_elementor_edit_mode','builder'),(865,176,'_elementor_template_type','wp-post'),(866,176,'_elementor_version','3.15.3'),(867,176,'_elementor_data','[{\"id\":\"7d9566\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":0,\"bottom\":\"-103\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\",\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"globals\\/colors?id=eb507f3\"},\"z_index\":90,\"background_overlay_background\":\"classic\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":37,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"background_overlay_color_b\":\"#FFFFFF00\",\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"-33\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"-11\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5d85d8f1\",\"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},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false}},\"elements\":[{\"id\":\"6cf40c10\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"30\"},\"elements\":[{\"id\":\"2bacd8a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":20,\"content_position_tablet\":\"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},\"_inline_size_mobile\":60},\"elements\":[{\"id\":\"b207c53\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/\\u0938\\u093e\\u0939\\u093f\\u0924\\u094d\\u092f-1.webp\",\"id\":104,\"size\":\"\",\"alt\":\"\\u0938\\u093e\\u0939\\u093f\\u0924\\u094d\\u092f\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"967a5c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":10,\"_inline_size_tablet\":20,\"content_position_tablet\":\"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},\"_inline_size_mobile\":60},\"elements\":[],\"isInner\":true},{\"id\":\"26b280e1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.664000000000001,\"_inline_size_tablet\":80,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":40,\"content_position\":\"center\"},\"elements\":[{\"id\":\"1c150646\",\"elType\":\"widget\",\"settings\":{\"menu\":\"menu1\",\"__globals__\":{\"menu_typography_typography\":\"globals\\/typography?id=779cdfc\",\"color_menu_item\":\"globals\\/colors?id=secondary\",\"color_menu_item_hover\":\"globals\\/colors?id=7f7112a\",\"all_text_color\":\"globals\\/colors?id=e64be90\",\"all_background_color_color\":\"globals\\/colors?id=f2feccc\",\"all_background_hover_color_color\":\"globals\\/colors?id=e64be90\",\"all_border_color\":\"\",\"all_border_hover_color\":\"\",\"all_background_color_color_b\":\"\",\"all_background_hover_color_color_b\":\"globals\\/colors?id=e64be90\",\"all_hover_color\":\"globals\\/colors?id=7f7112a\",\"toggle_color\":\"globals\\/colors?id=secondary\",\"background_color_dropdown_item\":\"globals\\/colors?id=e64be90\",\"color_menu_item_active\":\"globals\\/colors?id=7f7112a\",\"background_color_dropdown_item_hover\":\"\",\"color_dropdown_item_hover\":\"globals\\/colors?id=4b29dee\",\"color_dropdown_item\":\"globals\\/colors?id=primary\",\"dropdown_border_color\":\"globals\\/colors?id=76544c2\",\"color_dropdown_item_active\":\"globals\\/colors?id=7f7112a\"},\"resp_align\":\"right\",\"padding_horizontal_menu_item_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"menu_space_between\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"dropdown_divider_border\":\"none\",\"all_background_color_background\":\"classic\",\"all_background_hover_color_background\":\"classic\",\"all_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"all_background_color_gradient_angle\":{\"unit\":\"deg\",\"size\":130,\"sizes\":[]},\"dropdown_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"menu_space_between_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_horizontal_menu_item_mobile\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"menu_space_between_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"dropdown_border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_dropdown_item_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_horizontal_dropdown_item_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"padding_vertical_dropdown_item_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"menu_typography_font_family\":\"Roboto\",\"color_menu_item\":\"#F0F0F0\",\"background_color_dropdown_item\":\"#202020\",\"toggle_color\":\"#FFFFFF\",\"all_text_color\":\"#F4F9FC\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"23\",\"bottom\":\"14\",\"left\":\"23\",\"isLinked\":false},\"all_background_hover_color_color_stop\":{\"unit\":\"%\",\"size\":66,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"menu_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":0.90000000000000002,\"sizes\":[]},\"menu_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.90000000000000002,\"sizes\":[]},\"menu_typography_font_weight\":\"500\",\"menu_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"menu_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"all_background_color_color_b\":\"#FC3B00\",\"all_background_hover_color_color\":\"#FFFFFF\",\"all_background_hover_color_color_b\":\"#FFFFFF\",\"dropdown_border_width_tablet\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"dropdown_border_width_mobile\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"dropdown_border_radius_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"navmenu_align\":\"right\",\"dropdown\":\"mobile\",\"menu_last_item\":\"cta\",\"dropdown_box_shadow_box_shadow_type\":\"yes\",\"dropdown_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":30,\"blur\":30,\"spread\":-15,\"color\":\"rgba(0, 0, 0, 0.4)\"},\"all_button_box_shadow_box_shadow_type\":\"yes\",\"all_button_box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":10,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":107.182}},\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(868,176,'_elementor_page_assets','a:0:{}'),(870,177,'_wp_page_template','elementor_canvas'),(871,177,'_elementor_edit_mode','builder'),(872,177,'_elementor_template_type','wp-post'),(873,177,'_elementor_version','3.15.3'),(874,177,'_elementor_data','[{\"id\":\"7d9566\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":0,\"bottom\":\"-103\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\",\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"globals\\/colors?id=eb507f3\"},\"z_index\":90,\"background_overlay_background\":\"classic\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":37,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"background_overlay_color_b\":\"#FFFFFF00\",\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"-33\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"-11\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5d85d8f1\",\"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},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false}},\"elements\":[{\"id\":\"6cf40c10\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"30\"},\"elements\":[{\"id\":\"2bacd8a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":20,\"content_position_tablet\":\"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},\"_inline_size_mobile\":60},\"elements\":[{\"id\":\"b207c53\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/\\u0938\\u093e\\u0939\\u093f\\u0924\\u094d\\u092f-1.webp\",\"id\":104,\"size\":\"\",\"alt\":\"\\u0938\\u093e\\u0939\\u093f\\u0924\\u094d\\u092f\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"967a5c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":10,\"_inline_size_tablet\":20,\"content_position_tablet\":\"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},\"_inline_size_mobile\":60},\"elements\":[],\"isInner\":true},{\"id\":\"26b280e1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.664000000000001,\"_inline_size_tablet\":80,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":40,\"content_position\":\"center\"},\"elements\":[{\"id\":\"1c150646\",\"elType\":\"widget\",\"settings\":{\"menu\":\"menu1\",\"__globals__\":{\"menu_typography_typography\":\"globals\\/typography?id=779cdfc\",\"color_menu_item\":\"globals\\/colors?id=secondary\",\"color_menu_item_hover\":\"globals\\/colors?id=7f7112a\",\"all_text_color\":\"globals\\/colors?id=e64be90\",\"all_background_color_color\":\"globals\\/colors?id=f2feccc\",\"all_background_hover_color_color\":\"globals\\/colors?id=e64be90\",\"all_border_color\":\"\",\"all_border_hover_color\":\"\",\"all_background_color_color_b\":\"\",\"all_background_hover_color_color_b\":\"globals\\/colors?id=e64be90\",\"all_hover_color\":\"globals\\/colors?id=7f7112a\",\"toggle_color\":\"globals\\/colors?id=secondary\",\"background_color_dropdown_item\":\"globals\\/colors?id=e64be90\",\"color_menu_item_active\":\"globals\\/colors?id=7f7112a\",\"background_color_dropdown_item_hover\":\"\",\"color_dropdown_item_hover\":\"globals\\/colors?id=4b29dee\",\"color_dropdown_item\":\"globals\\/colors?id=primary\",\"dropdown_border_color\":\"globals\\/colors?id=76544c2\",\"color_dropdown_item_active\":\"globals\\/colors?id=7f7112a\"},\"resp_align\":\"right\",\"padding_horizontal_menu_item_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"menu_space_between\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"dropdown_divider_border\":\"none\",\"all_background_color_background\":\"classic\",\"all_background_hover_color_background\":\"classic\",\"all_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"all_background_color_gradient_angle\":{\"unit\":\"deg\",\"size\":130,\"sizes\":[]},\"dropdown_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"menu_space_between_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_horizontal_menu_item_mobile\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"menu_space_between_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"dropdown_border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_dropdown_item_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_horizontal_dropdown_item_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"padding_vertical_dropdown_item_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"menu_typography_font_family\":\"Roboto\",\"color_menu_item\":\"#F0F0F0\",\"background_color_dropdown_item\":\"#202020\",\"toggle_color\":\"#FFFFFF\",\"all_text_color\":\"#F4F9FC\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"23\",\"bottom\":\"14\",\"left\":\"23\",\"isLinked\":false},\"all_background_hover_color_color_stop\":{\"unit\":\"%\",\"size\":66,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"menu_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":0.90000000000000002,\"sizes\":[]},\"menu_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.90000000000000002,\"sizes\":[]},\"menu_typography_font_weight\":\"500\",\"menu_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"menu_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"all_background_color_color_b\":\"#FC3B00\",\"all_background_hover_color_color\":\"#FFFFFF\",\"all_background_hover_color_color_b\":\"#FFFFFF\",\"dropdown_border_width_tablet\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"dropdown_border_width_mobile\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"dropdown_border_radius_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"navmenu_align\":\"right\",\"dropdown\":\"mobile\",\"menu_last_item\":\"cta\",\"dropdown_box_shadow_box_shadow_type\":\"yes\",\"dropdown_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":30,\"blur\":30,\"spread\":-15,\"color\":\"rgba(0, 0, 0, 0.4)\"},\"all_button_box_shadow_box_shadow_type\":\"yes\",\"all_button_box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":10,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":107.182}},\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(875,177,'_elementor_page_assets','a:0:{}'),(878,178,'_wp_page_template','elementor_canvas'),(879,178,'_elementor_edit_mode','builder'),(880,178,'_elementor_template_type','wp-post'),(881,178,'_elementor_version','3.15.3'),(882,178,'_elementor_data','[{\"id\":\"7d9566\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":0,\"bottom\":\"-103\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\",\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"globals\\/colors?id=eb507f3\"},\"z_index\":90,\"background_overlay_background\":\"classic\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":37,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"background_overlay_color_b\":\"#FFFFFF00\",\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"-33\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"-11\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5d85d8f1\",\"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},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false}},\"elements\":[{\"id\":\"6cf40c10\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"30\"},\"elements\":[{\"id\":\"2bacd8a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":20,\"content_position_tablet\":\"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},\"_inline_size_mobile\":60},\"elements\":[{\"id\":\"b207c53\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/\\u0938\\u093e\\u0939\\u093f\\u0924\\u094d\\u092f-1.webp\",\"id\":104,\"size\":\"\",\"alt\":\"\\u0938\\u093e\\u0939\\u093f\\u0924\\u094d\\u092f\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"967a5c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":10,\"_inline_size_tablet\":20,\"content_position_tablet\":\"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},\"_inline_size_mobile\":60},\"elements\":[],\"isInner\":true},{\"id\":\"26b280e1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.664000000000001,\"_inline_size_tablet\":80,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":40,\"content_position\":\"center\"},\"elements\":[{\"id\":\"1c150646\",\"elType\":\"widget\",\"settings\":{\"menu\":\"menu1\",\"__globals__\":{\"menu_typography_typography\":\"globals\\/typography?id=779cdfc\",\"color_menu_item\":\"globals\\/colors?id=secondary\",\"color_menu_item_hover\":\"globals\\/colors?id=7f7112a\",\"all_text_color\":\"globals\\/colors?id=e64be90\",\"all_background_color_color\":\"globals\\/colors?id=f2feccc\",\"all_background_hover_color_color\":\"globals\\/colors?id=e64be90\",\"all_border_color\":\"\",\"all_border_hover_color\":\"\",\"all_background_color_color_b\":\"\",\"all_background_hover_color_color_b\":\"globals\\/colors?id=e64be90\",\"all_hover_color\":\"globals\\/colors?id=7f7112a\",\"toggle_color\":\"globals\\/colors?id=secondary\",\"background_color_dropdown_item\":\"globals\\/colors?id=e64be90\",\"color_menu_item_active\":\"globals\\/colors?id=7f7112a\",\"background_color_dropdown_item_hover\":\"\",\"color_dropdown_item_hover\":\"globals\\/colors?id=4b29dee\",\"color_dropdown_item\":\"globals\\/colors?id=primary\",\"dropdown_border_color\":\"globals\\/colors?id=76544c2\",\"color_dropdown_item_active\":\"globals\\/colors?id=7f7112a\"},\"resp_align\":\"right\",\"padding_horizontal_menu_item_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"menu_space_between\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"dropdown_divider_border\":\"none\",\"all_background_color_background\":\"classic\",\"all_background_hover_color_background\":\"classic\",\"all_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"all_background_color_gradient_angle\":{\"unit\":\"deg\",\"size\":130,\"sizes\":[]},\"dropdown_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"menu_space_between_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_horizontal_menu_item_mobile\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"menu_space_between_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"dropdown_border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_dropdown_item_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_horizontal_dropdown_item_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"padding_vertical_dropdown_item_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"menu_typography_font_family\":\"Roboto\",\"color_menu_item\":\"#F0F0F0\",\"background_color_dropdown_item\":\"#202020\",\"toggle_color\":\"#FFFFFF\",\"all_text_color\":\"#F4F9FC\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"23\",\"bottom\":\"14\",\"left\":\"23\",\"isLinked\":false},\"all_background_hover_color_color_stop\":{\"unit\":\"%\",\"size\":66,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"menu_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":0.90000000000000002,\"sizes\":[]},\"menu_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.90000000000000002,\"sizes\":[]},\"menu_typography_font_weight\":\"500\",\"menu_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"menu_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"all_background_color_color_b\":\"#FC3B00\",\"all_background_hover_color_color\":\"#FFFFFF\",\"all_background_hover_color_color_b\":\"#FFFFFF\",\"dropdown_border_width_tablet\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"dropdown_border_width_mobile\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"dropdown_border_radius_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"navmenu_align\":\"right\",\"dropdown\":\"mobile\",\"menu_last_item\":\"cta\",\"dropdown_box_shadow_box_shadow_type\":\"yes\",\"dropdown_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":30,\"blur\":30,\"spread\":-15,\"color\":\"rgba(0, 0, 0, 0.4)\"},\"all_button_box_shadow_box_shadow_type\":\"yes\",\"all_button_box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":10,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":107.182}},\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(883,178,'_elementor_page_assets','a:0:{}'),(885,179,'_wp_page_template','elementor_canvas'),(886,179,'_elementor_edit_mode','builder'),(887,179,'_elementor_template_type','wp-post'),(888,179,'_elementor_version','3.15.3'),(889,179,'_elementor_data','[{\"id\":\"7d9566\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":0,\"bottom\":\"-103\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\",\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"globals\\/colors?id=eb507f3\"},\"z_index\":90,\"background_overlay_background\":\"classic\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":37,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"background_overlay_color_b\":\"#FFFFFF00\",\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"-33\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"-11\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5d85d8f1\",\"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},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false}},\"elements\":[{\"id\":\"6cf40c10\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"30\"},\"elements\":[{\"id\":\"2bacd8a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":20,\"content_position_tablet\":\"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},\"_inline_size_mobile\":60},\"elements\":[{\"id\":\"b207c53\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/\\u0938\\u093e\\u0939\\u093f\\u0924\\u094d\\u092f-1.webp\",\"id\":104,\"size\":\"\",\"alt\":\"\\u0938\\u093e\\u0939\\u093f\\u0924\\u094d\\u092f\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"967a5c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":10,\"_inline_size_tablet\":20,\"content_position_tablet\":\"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},\"_inline_size_mobile\":60},\"elements\":[],\"isInner\":true},{\"id\":\"26b280e1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.664000000000001,\"_inline_size_tablet\":80,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":40,\"content_position\":\"center\"},\"elements\":[{\"id\":\"1c150646\",\"elType\":\"widget\",\"settings\":{\"menu\":\"menu1\",\"__globals__\":{\"menu_typography_typography\":\"globals\\/typography?id=779cdfc\",\"color_menu_item\":\"globals\\/colors?id=secondary\",\"color_menu_item_hover\":\"globals\\/colors?id=7f7112a\",\"all_text_color\":\"globals\\/colors?id=e64be90\",\"all_background_color_color\":\"globals\\/colors?id=f2feccc\",\"all_background_hover_color_color\":\"globals\\/colors?id=e64be90\",\"all_border_color\":\"\",\"all_border_hover_color\":\"\",\"all_background_color_color_b\":\"\",\"all_background_hover_color_color_b\":\"globals\\/colors?id=e64be90\",\"all_hover_color\":\"globals\\/colors?id=7f7112a\",\"toggle_color\":\"globals\\/colors?id=secondary\",\"background_color_dropdown_item\":\"globals\\/colors?id=e64be90\",\"color_menu_item_active\":\"globals\\/colors?id=7f7112a\",\"background_color_dropdown_item_hover\":\"\",\"color_dropdown_item_hover\":\"globals\\/colors?id=4b29dee\",\"color_dropdown_item\":\"globals\\/colors?id=primary\",\"dropdown_border_color\":\"globals\\/colors?id=76544c2\",\"color_dropdown_item_active\":\"globals\\/colors?id=7f7112a\"},\"resp_align\":\"right\",\"padding_horizontal_menu_item_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"menu_space_between\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"dropdown_divider_border\":\"none\",\"all_background_color_background\":\"classic\",\"all_background_hover_color_background\":\"classic\",\"all_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"all_background_color_gradient_angle\":{\"unit\":\"deg\",\"size\":130,\"sizes\":[]},\"dropdown_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"menu_space_between_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_horizontal_menu_item_mobile\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"menu_space_between_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"dropdown_border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_dropdown_item_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_horizontal_dropdown_item_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"padding_vertical_dropdown_item_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"menu_typography_font_family\":\"Roboto\",\"color_menu_item\":\"#F0F0F0\",\"background_color_dropdown_item\":\"#202020\",\"toggle_color\":\"#FFFFFF\",\"all_text_color\":\"#F4F9FC\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"23\",\"bottom\":\"14\",\"left\":\"23\",\"isLinked\":false},\"all_background_hover_color_color_stop\":{\"unit\":\"%\",\"size\":66,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"menu_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":0.90000000000000002,\"sizes\":[]},\"menu_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.90000000000000002,\"sizes\":[]},\"menu_typography_font_weight\":\"500\",\"menu_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"menu_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"all_background_color_color_b\":\"#FC3B00\",\"all_background_hover_color_color\":\"#FFFFFF\",\"all_background_hover_color_color_b\":\"#FFFFFF\",\"dropdown_border_width_tablet\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"dropdown_border_width_mobile\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"dropdown_border_radius_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"navmenu_align\":\"right\",\"dropdown\":\"mobile\",\"menu_last_item\":\"cta\",\"dropdown_box_shadow_box_shadow_type\":\"yes\",\"dropdown_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":30,\"blur\":30,\"spread\":-15,\"color\":\"rgba(0, 0, 0, 0.4)\"},\"all_button_box_shadow_box_shadow_type\":\"yes\",\"all_button_box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":10,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":107.182}},\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(890,179,'_elementor_page_assets','a:0:{}'),(892,180,'_wp_page_template','elementor_canvas'),(893,180,'_elementor_edit_mode','builder'),(894,180,'_elementor_template_type','wp-post'),(895,180,'_elementor_version','3.15.3'),(896,180,'_elementor_data','[{\"id\":\"7d9566\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":0,\"bottom\":\"-103\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\",\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"globals\\/colors?id=eb507f3\"},\"z_index\":90,\"background_overlay_background\":\"classic\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":37,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"background_overlay_color_b\":\"#FFFFFF00\",\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"-33\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"-11\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5d85d8f1\",\"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},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false}},\"elements\":[{\"id\":\"6cf40c10\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"30\"},\"elements\":[{\"id\":\"2bacd8a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":20,\"content_position_tablet\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":60},\"elements\":[{\"id\":\"b207c53\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/\\u0938\\u093e\\u0939\\u093f\\u0924\\u094d\\u092f-1.webp\",\"id\":104,\"size\":\"\",\"alt\":\"\\u0938\\u093e\\u0939\\u093f\\u0924\\u094d\\u092f\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"967a5c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":10,\"_inline_size_tablet\":20,\"content_position_tablet\":\"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},\"_inline_size_mobile\":60},\"elements\":[],\"isInner\":true},{\"id\":\"26b280e1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.664000000000001,\"_inline_size_tablet\":80,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":40,\"content_position\":\"center\"},\"elements\":[{\"id\":\"1c150646\",\"elType\":\"widget\",\"settings\":{\"menu\":\"menu1\",\"__globals__\":{\"menu_typography_typography\":\"globals\\/typography?id=779cdfc\",\"color_menu_item\":\"globals\\/colors?id=secondary\",\"color_menu_item_hover\":\"globals\\/colors?id=7f7112a\",\"all_text_color\":\"globals\\/colors?id=e64be90\",\"all_background_color_color\":\"globals\\/colors?id=f2feccc\",\"all_background_hover_color_color\":\"globals\\/colors?id=e64be90\",\"all_border_color\":\"\",\"all_border_hover_color\":\"\",\"all_background_color_color_b\":\"\",\"all_background_hover_color_color_b\":\"globals\\/colors?id=e64be90\",\"all_hover_color\":\"globals\\/colors?id=7f7112a\",\"toggle_color\":\"globals\\/colors?id=secondary\",\"background_color_dropdown_item\":\"globals\\/colors?id=e64be90\",\"color_menu_item_active\":\"globals\\/colors?id=7f7112a\",\"background_color_dropdown_item_hover\":\"\",\"color_dropdown_item_hover\":\"globals\\/colors?id=4b29dee\",\"color_dropdown_item\":\"globals\\/colors?id=primary\",\"dropdown_border_color\":\"globals\\/colors?id=76544c2\",\"color_dropdown_item_active\":\"globals\\/colors?id=7f7112a\"},\"resp_align\":\"right\",\"padding_horizontal_menu_item_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"menu_space_between\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"dropdown_divider_border\":\"none\",\"all_background_color_background\":\"classic\",\"all_background_hover_color_background\":\"classic\",\"all_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"all_background_color_gradient_angle\":{\"unit\":\"deg\",\"size\":130,\"sizes\":[]},\"dropdown_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"menu_space_between_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_horizontal_menu_item_mobile\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"menu_space_between_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"dropdown_border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_dropdown_item_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_horizontal_dropdown_item_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"padding_vertical_dropdown_item_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"menu_typography_font_family\":\"Roboto\",\"color_menu_item\":\"#F0F0F0\",\"background_color_dropdown_item\":\"#202020\",\"toggle_color\":\"#FFFFFF\",\"all_text_color\":\"#F4F9FC\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"23\",\"bottom\":\"14\",\"left\":\"23\",\"isLinked\":false},\"all_background_hover_color_color_stop\":{\"unit\":\"%\",\"size\":66,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"menu_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":0.90000000000000002,\"sizes\":[]},\"menu_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.90000000000000002,\"sizes\":[]},\"menu_typography_font_weight\":\"500\",\"menu_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"menu_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"all_background_color_color_b\":\"#FC3B00\",\"all_background_hover_color_color\":\"#FFFFFF\",\"all_background_hover_color_color_b\":\"#FFFFFF\",\"dropdown_border_width_tablet\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"dropdown_border_width_mobile\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"dropdown_border_radius_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"navmenu_align\":\"right\",\"dropdown\":\"mobile\",\"menu_last_item\":\"cta\",\"dropdown_box_shadow_box_shadow_type\":\"yes\",\"dropdown_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":30,\"blur\":30,\"spread\":-15,\"color\":\"rgba(0, 0, 0, 0.4)\"},\"all_button_box_shadow_box_shadow_type\":\"yes\",\"all_button_box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":10,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":107.182}},\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(897,180,'_elementor_page_assets','a:0:{}'),(900,181,'_wp_page_template','elementor_canvas'),(901,181,'_elementor_edit_mode','builder'),(902,181,'_elementor_template_type','wp-post'),(903,181,'_elementor_version','3.15.3'),(904,181,'_elementor_data','[{\"id\":\"7d9566\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":0,\"bottom\":\"-103\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\",\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"globals\\/colors?id=eb507f3\"},\"z_index\":90,\"background_overlay_background\":\"classic\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":37,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"background_overlay_color_b\":\"#FFFFFF00\",\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"-33\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"-11\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5d85d8f1\",\"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},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false}},\"elements\":[{\"id\":\"6cf40c10\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"30\"},\"elements\":[{\"id\":\"2bacd8a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":20,\"content_position_tablet\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":60},\"elements\":[{\"id\":\"b207c53\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/\\u0938\\u093e\\u0939\\u093f\\u0924\\u094d\\u092f-1.webp\",\"id\":104,\"size\":\"\",\"alt\":\"\\u0938\\u093e\\u0939\\u093f\\u0924\\u094d\\u092f\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"967a5c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":10,\"_inline_size_tablet\":20,\"content_position_tablet\":\"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},\"_inline_size_mobile\":60},\"elements\":[],\"isInner\":true},{\"id\":\"26b280e1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.664000000000001,\"_inline_size_tablet\":80,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":40,\"content_position\":\"center\"},\"elements\":[{\"id\":\"1c150646\",\"elType\":\"widget\",\"settings\":{\"menu\":\"menu1\",\"__globals__\":{\"menu_typography_typography\":\"globals\\/typography?id=779cdfc\",\"color_menu_item\":\"globals\\/colors?id=secondary\",\"color_menu_item_hover\":\"globals\\/colors?id=7f7112a\",\"all_text_color\":\"globals\\/colors?id=e64be90\",\"all_background_color_color\":\"globals\\/colors?id=f2feccc\",\"all_background_hover_color_color\":\"globals\\/colors?id=e64be90\",\"all_border_color\":\"\",\"all_border_hover_color\":\"\",\"all_background_color_color_b\":\"\",\"all_background_hover_color_color_b\":\"globals\\/colors?id=e64be90\",\"all_hover_color\":\"globals\\/colors?id=7f7112a\",\"toggle_color\":\"globals\\/colors?id=secondary\",\"background_color_dropdown_item\":\"globals\\/colors?id=e64be90\",\"color_menu_item_active\":\"globals\\/colors?id=7f7112a\",\"background_color_dropdown_item_hover\":\"\",\"color_dropdown_item_hover\":\"globals\\/colors?id=4b29dee\",\"color_dropdown_item\":\"globals\\/colors?id=primary\",\"dropdown_border_color\":\"globals\\/colors?id=76544c2\",\"color_dropdown_item_active\":\"globals\\/colors?id=7f7112a\"},\"resp_align\":\"right\",\"padding_horizontal_menu_item_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"menu_space_between\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"dropdown_divider_border\":\"none\",\"all_background_color_background\":\"classic\",\"all_background_hover_color_background\":\"classic\",\"all_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"all_background_color_gradient_angle\":{\"unit\":\"deg\",\"size\":130,\"sizes\":[]},\"dropdown_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"menu_space_between_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_horizontal_menu_item_mobile\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"menu_space_between_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"dropdown_border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_dropdown_item_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_horizontal_dropdown_item_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"padding_vertical_dropdown_item_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"menu_typography_font_family\":\"Roboto\",\"color_menu_item\":\"#F0F0F0\",\"background_color_dropdown_item\":\"#202020\",\"toggle_color\":\"#FFFFFF\",\"all_text_color\":\"#F4F9FC\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"23\",\"bottom\":\"14\",\"left\":\"23\",\"isLinked\":false},\"all_background_hover_color_color_stop\":{\"unit\":\"%\",\"size\":66,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"menu_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":0.90000000000000002,\"sizes\":[]},\"menu_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.90000000000000002,\"sizes\":[]},\"menu_typography_font_weight\":\"500\",\"menu_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"menu_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"all_background_color_color_b\":\"#FC3B00\",\"all_background_hover_color_color\":\"#FFFFFF\",\"all_background_hover_color_color_b\":\"#FFFFFF\",\"dropdown_border_width_tablet\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"dropdown_border_width_mobile\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"dropdown_border_radius_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"navmenu_align\":\"right\",\"dropdown\":\"mobile\",\"menu_last_item\":\"cta\",\"dropdown_box_shadow_box_shadow_type\":\"yes\",\"dropdown_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":30,\"blur\":30,\"spread\":-15,\"color\":\"rgba(0, 0, 0, 0.4)\"},\"all_button_box_shadow_box_shadow_type\":\"yes\",\"all_button_box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":10,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":107.182}},\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(905,181,'_elementor_page_assets','a:0:{}'),(907,182,'_wp_page_template','elementor_canvas'),(908,182,'_elementor_edit_mode','builder'),(909,182,'_elementor_template_type','wp-post'),(910,182,'_elementor_version','3.15.3'),(911,182,'_elementor_data','[{\"id\":\"7d9566\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":0,\"bottom\":\"-103\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\",\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"globals\\/colors?id=eb507f3\"},\"z_index\":90,\"background_overlay_background\":\"classic\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":37,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"background_overlay_color_b\":\"#FFFFFF00\",\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"-33\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"-11\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5d85d8f1\",\"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},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false}},\"elements\":[{\"id\":\"6cf40c10\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"30\"},\"elements\":[{\"id\":\"2bacd8a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":20,\"content_position_tablet\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":60},\"elements\":[{\"id\":\"b207c53\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/\\u0938\\u093e\\u0939\\u093f\\u0924\\u094d\\u092f-1.webp\",\"id\":104,\"size\":\"\",\"alt\":\"\\u0938\\u093e\\u0939\\u093f\\u0924\\u094d\\u092f\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"967a5c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":10,\"_inline_size_tablet\":20,\"content_position_tablet\":\"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},\"_inline_size_mobile\":60},\"elements\":[],\"isInner\":true},{\"id\":\"26b280e1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.664000000000001,\"_inline_size_tablet\":80,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":40,\"content_position\":\"center\"},\"elements\":[{\"id\":\"1c150646\",\"elType\":\"widget\",\"settings\":{\"menu\":\"menu1\",\"__globals__\":{\"menu_typography_typography\":\"globals\\/typography?id=779cdfc\",\"color_menu_item\":\"globals\\/colors?id=secondary\",\"color_menu_item_hover\":\"globals\\/colors?id=7f7112a\",\"all_text_color\":\"globals\\/colors?id=e64be90\",\"all_background_color_color\":\"globals\\/colors?id=f2feccc\",\"all_background_hover_color_color\":\"globals\\/colors?id=e64be90\",\"all_border_color\":\"\",\"all_border_hover_color\":\"\",\"all_background_color_color_b\":\"\",\"all_background_hover_color_color_b\":\"globals\\/colors?id=e64be90\",\"all_hover_color\":\"globals\\/colors?id=7f7112a\",\"toggle_color\":\"globals\\/colors?id=secondary\",\"background_color_dropdown_item\":\"globals\\/colors?id=e64be90\",\"color_menu_item_active\":\"globals\\/colors?id=7f7112a\",\"background_color_dropdown_item_hover\":\"\",\"color_dropdown_item_hover\":\"globals\\/colors?id=4b29dee\",\"color_dropdown_item\":\"globals\\/colors?id=primary\",\"dropdown_border_color\":\"globals\\/colors?id=76544c2\",\"color_dropdown_item_active\":\"globals\\/colors?id=7f7112a\"},\"resp_align\":\"right\",\"padding_horizontal_menu_item_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"menu_space_between\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"dropdown_divider_border\":\"none\",\"all_background_color_background\":\"classic\",\"all_background_hover_color_background\":\"classic\",\"all_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"all_background_color_gradient_angle\":{\"unit\":\"deg\",\"size\":130,\"sizes\":[]},\"dropdown_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"menu_space_between_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_horizontal_menu_item_mobile\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"menu_space_between_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"dropdown_border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_dropdown_item_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_horizontal_dropdown_item_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"padding_vertical_dropdown_item_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"menu_typography_font_family\":\"Roboto\",\"color_menu_item\":\"#F0F0F0\",\"background_color_dropdown_item\":\"#202020\",\"toggle_color\":\"#FFFFFF\",\"all_text_color\":\"#F4F9FC\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"23\",\"bottom\":\"14\",\"left\":\"23\",\"isLinked\":false},\"all_background_hover_color_color_stop\":{\"unit\":\"%\",\"size\":66,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"menu_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":0.90000000000000002,\"sizes\":[]},\"menu_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.90000000000000002,\"sizes\":[]},\"menu_typography_font_weight\":\"500\",\"menu_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"menu_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"all_background_color_color_b\":\"#FC3B00\",\"all_background_hover_color_color\":\"#FFFFFF\",\"all_background_hover_color_color_b\":\"#FFFFFF\",\"dropdown_border_width_tablet\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"dropdown_border_width_mobile\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"dropdown_border_radius_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"navmenu_align\":\"right\",\"dropdown\":\"mobile\",\"menu_last_item\":\"cta\",\"dropdown_box_shadow_box_shadow_type\":\"yes\",\"dropdown_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":30,\"blur\":30,\"spread\":-15,\"color\":\"rgba(0, 0, 0, 0.4)\"},\"all_button_box_shadow_box_shadow_type\":\"yes\",\"all_button_box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":10,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":107.182}},\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(912,182,'_elementor_page_assets','a:0:{}'),(914,183,'_wp_page_template','elementor_canvas'),(915,183,'_elementor_edit_mode','builder'),(916,183,'_elementor_template_type','wp-post'),(917,183,'_elementor_version','3.15.3'),(918,183,'_elementor_data','[{\"id\":\"7d9566\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":0,\"bottom\":\"-103\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\",\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"globals\\/colors?id=eb507f3\"},\"z_index\":90,\"background_overlay_background\":\"classic\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":37,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"background_overlay_color_b\":\"#FFFFFF00\",\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"-33\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"-11\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5d85d8f1\",\"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},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false}},\"elements\":[{\"id\":\"6cf40c10\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"30\"},\"elements\":[{\"id\":\"2bacd8a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":20,\"content_position_tablet\":\"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},\"_inline_size_mobile\":60},\"elements\":[{\"id\":\"b207c53\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/\\u0938\\u093e\\u0939\\u093f\\u0924\\u094d\\u092f-1.webp\",\"id\":104,\"size\":\"\",\"alt\":\"\\u0938\\u093e\\u0939\\u093f\\u0924\\u094d\\u092f\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"967a5c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":10,\"_inline_size_tablet\":20,\"content_position_tablet\":\"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},\"_inline_size_mobile\":60},\"elements\":[],\"isInner\":true},{\"id\":\"26b280e1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.664000000000001,\"_inline_size_tablet\":80,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":40,\"content_position\":\"center\"},\"elements\":[{\"id\":\"1c150646\",\"elType\":\"widget\",\"settings\":{\"menu\":\"menu1\",\"__globals__\":{\"menu_typography_typography\":\"globals\\/typography?id=779cdfc\",\"color_menu_item\":\"globals\\/colors?id=secondary\",\"color_menu_item_hover\":\"globals\\/colors?id=7f7112a\",\"all_text_color\":\"globals\\/colors?id=e64be90\",\"all_background_color_color\":\"globals\\/colors?id=f2feccc\",\"all_background_hover_color_color\":\"globals\\/colors?id=e64be90\",\"all_border_color\":\"\",\"all_border_hover_color\":\"\",\"all_background_color_color_b\":\"\",\"all_background_hover_color_color_b\":\"globals\\/colors?id=e64be90\",\"all_hover_color\":\"globals\\/colors?id=7f7112a\",\"toggle_color\":\"globals\\/colors?id=secondary\",\"background_color_dropdown_item\":\"globals\\/colors?id=e64be90\",\"color_menu_item_active\":\"globals\\/colors?id=7f7112a\",\"background_color_dropdown_item_hover\":\"\",\"color_dropdown_item_hover\":\"globals\\/colors?id=4b29dee\",\"color_dropdown_item\":\"globals\\/colors?id=primary\",\"dropdown_border_color\":\"globals\\/colors?id=76544c2\",\"color_dropdown_item_active\":\"globals\\/colors?id=7f7112a\"},\"resp_align\":\"right\",\"padding_horizontal_menu_item_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"menu_space_between\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"dropdown_divider_border\":\"none\",\"all_background_color_background\":\"classic\",\"all_background_hover_color_background\":\"classic\",\"all_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"all_background_color_gradient_angle\":{\"unit\":\"deg\",\"size\":130,\"sizes\":[]},\"dropdown_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"menu_space_between_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_horizontal_menu_item_mobile\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"menu_space_between_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"dropdown_border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_dropdown_item_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_horizontal_dropdown_item_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"padding_vertical_dropdown_item_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"menu_typography_font_family\":\"Roboto\",\"color_menu_item\":\"#F0F0F0\",\"background_color_dropdown_item\":\"#202020\",\"toggle_color\":\"#FFFFFF\",\"all_text_color\":\"#F4F9FC\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"23\",\"bottom\":\"14\",\"left\":\"23\",\"isLinked\":false},\"all_background_hover_color_color_stop\":{\"unit\":\"%\",\"size\":66,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"menu_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":0.90000000000000002,\"sizes\":[]},\"menu_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.90000000000000002,\"sizes\":[]},\"menu_typography_font_weight\":\"500\",\"menu_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"menu_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"all_background_color_color_b\":\"#FC3B00\",\"all_background_hover_color_color\":\"#FFFFFF\",\"all_background_hover_color_color_b\":\"#FFFFFF\",\"dropdown_border_width_tablet\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"dropdown_border_width_mobile\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"dropdown_border_radius_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"navmenu_align\":\"right\",\"dropdown\":\"mobile\",\"menu_last_item\":\"cta\",\"dropdown_box_shadow_box_shadow_type\":\"yes\",\"dropdown_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":30,\"blur\":30,\"spread\":-15,\"color\":\"rgba(0, 0, 0, 0.4)\"},\"all_button_box_shadow_box_shadow_type\":\"yes\",\"all_button_box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":10,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":107.182}},\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(919,183,'_elementor_page_assets','a:0:{}'),(922,184,'_wp_page_template','elementor_canvas'),(923,184,'_elementor_edit_mode','builder'),(924,184,'_elementor_template_type','wp-post'),(925,184,'_elementor_version','3.15.3'),(926,184,'_elementor_data','[{\"id\":\"7d9566\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":0,\"bottom\":\"-103\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\",\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"globals\\/colors?id=eb507f3\"},\"z_index\":90,\"background_overlay_background\":\"classic\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":37,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"background_overlay_color_b\":\"#FFFFFF00\",\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"-33\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"-11\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5d85d8f1\",\"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},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false}},\"elements\":[{\"id\":\"6cf40c10\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"30\"},\"elements\":[{\"id\":\"2bacd8a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":20,\"content_position_tablet\":\"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},\"_inline_size_mobile\":60},\"elements\":[{\"id\":\"b207c53\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/\\u0938\\u093e\\u0939\\u093f\\u0924\\u094d\\u092f-1.webp\",\"id\":104,\"size\":\"\",\"alt\":\"\\u0938\\u093e\\u0939\\u093f\\u0924\\u094d\\u092f\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"967a5c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":10,\"_inline_size_tablet\":20,\"content_position_tablet\":\"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},\"_inline_size_mobile\":60},\"elements\":[],\"isInner\":true},{\"id\":\"26b280e1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.664000000000001,\"_inline_size_tablet\":80,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":40,\"content_position\":\"center\"},\"elements\":[{\"id\":\"1c150646\",\"elType\":\"widget\",\"settings\":{\"menu\":\"menu1\",\"__globals__\":{\"menu_typography_typography\":\"globals\\/typography?id=779cdfc\",\"color_menu_item\":\"globals\\/colors?id=secondary\",\"color_menu_item_hover\":\"globals\\/colors?id=7f7112a\",\"all_text_color\":\"globals\\/colors?id=e64be90\",\"all_background_color_color\":\"globals\\/colors?id=f2feccc\",\"all_background_hover_color_color\":\"globals\\/colors?id=e64be90\",\"all_border_color\":\"\",\"all_border_hover_color\":\"\",\"all_background_color_color_b\":\"\",\"all_background_hover_color_color_b\":\"globals\\/colors?id=e64be90\",\"all_hover_color\":\"globals\\/colors?id=7f7112a\",\"toggle_color\":\"globals\\/colors?id=secondary\",\"background_color_dropdown_item\":\"globals\\/colors?id=e64be90\",\"color_menu_item_active\":\"globals\\/colors?id=7f7112a\",\"background_color_dropdown_item_hover\":\"\",\"color_dropdown_item_hover\":\"globals\\/colors?id=4b29dee\",\"color_dropdown_item\":\"globals\\/colors?id=primary\",\"dropdown_border_color\":\"globals\\/colors?id=76544c2\",\"color_dropdown_item_active\":\"globals\\/colors?id=7f7112a\"},\"resp_align\":\"right\",\"padding_horizontal_menu_item_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"menu_space_between\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"dropdown_divider_border\":\"none\",\"all_background_color_background\":\"classic\",\"all_background_hover_color_background\":\"classic\",\"all_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"all_background_color_gradient_angle\":{\"unit\":\"deg\",\"size\":130,\"sizes\":[]},\"dropdown_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"menu_space_between_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_horizontal_menu_item_mobile\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"menu_space_between_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"dropdown_border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_dropdown_item_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_horizontal_dropdown_item_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"padding_vertical_dropdown_item_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"menu_typography_font_family\":\"Roboto\",\"color_menu_item\":\"#F0F0F0\",\"background_color_dropdown_item\":\"#202020\",\"toggle_color\":\"#FFFFFF\",\"all_text_color\":\"#F4F9FC\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"23\",\"bottom\":\"14\",\"left\":\"23\",\"isLinked\":false},\"all_background_hover_color_color_stop\":{\"unit\":\"%\",\"size\":66,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"menu_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":0.90000000000000002,\"sizes\":[]},\"menu_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.90000000000000002,\"sizes\":[]},\"menu_typography_font_weight\":\"500\",\"menu_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"menu_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"all_background_color_color_b\":\"#FC3B00\",\"all_background_hover_color_color\":\"#FFFFFF\",\"all_background_hover_color_color_b\":\"#FFFFFF\",\"dropdown_border_width_tablet\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"dropdown_border_width_mobile\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"dropdown_border_radius_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"navmenu_align\":\"right\",\"dropdown\":\"mobile\",\"menu_last_item\":\"cta\",\"dropdown_box_shadow_box_shadow_type\":\"yes\",\"dropdown_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":30,\"blur\":30,\"spread\":-15,\"color\":\"rgba(0, 0, 0, 0.4)\"},\"all_button_box_shadow_box_shadow_type\":\"yes\",\"all_button_box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":10,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":107.182}},\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(927,184,'_elementor_page_assets','a:0:{}'),(929,185,'_wp_page_template','elementor_canvas'),(930,185,'_elementor_edit_mode','builder'),(931,185,'_elementor_template_type','wp-post'),(932,185,'_elementor_version','3.15.3'),(933,185,'_elementor_data','[{\"id\":\"7d9566\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":0,\"bottom\":\"-103\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\",\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"globals\\/colors?id=eb507f3\"},\"z_index\":90,\"background_overlay_background\":\"classic\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":37,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"background_overlay_color_b\":\"#FFFFFF00\",\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"-33\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"-11\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5d85d8f1\",\"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},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false}},\"elements\":[{\"id\":\"6cf40c10\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"30\"},\"elements\":[{\"id\":\"2bacd8a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":20,\"content_position_tablet\":\"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},\"_inline_size_mobile\":60},\"elements\":[{\"id\":\"b207c53\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/\\u0938\\u093e\\u0939\\u093f\\u0924\\u094d\\u092f-1.webp\",\"id\":104,\"size\":\"\",\"alt\":\"\\u0938\\u093e\\u0939\\u093f\\u0924\\u094d\\u092f\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"967a5c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":10,\"_inline_size_tablet\":20,\"content_position_tablet\":\"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},\"_inline_size_mobile\":60},\"elements\":[],\"isInner\":true},{\"id\":\"26b280e1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.664000000000001,\"_inline_size_tablet\":80,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":40,\"content_position\":\"center\"},\"elements\":[{\"id\":\"1c150646\",\"elType\":\"widget\",\"settings\":{\"menu\":\"menu1\",\"__globals__\":{\"menu_typography_typography\":\"globals\\/typography?id=779cdfc\",\"color_menu_item\":\"globals\\/colors?id=secondary\",\"color_menu_item_hover\":\"globals\\/colors?id=7f7112a\",\"all_text_color\":\"globals\\/colors?id=e64be90\",\"all_background_color_color\":\"globals\\/colors?id=f2feccc\",\"all_background_hover_color_color\":\"globals\\/colors?id=e64be90\",\"all_border_color\":\"\",\"all_border_hover_color\":\"\",\"all_background_color_color_b\":\"\",\"all_background_hover_color_color_b\":\"globals\\/colors?id=e64be90\",\"all_hover_color\":\"globals\\/colors?id=7f7112a\",\"toggle_color\":\"globals\\/colors?id=secondary\",\"background_color_dropdown_item\":\"globals\\/colors?id=e64be90\",\"color_menu_item_active\":\"globals\\/colors?id=7f7112a\",\"background_color_dropdown_item_hover\":\"\",\"color_dropdown_item_hover\":\"globals\\/colors?id=4b29dee\",\"color_dropdown_item\":\"globals\\/colors?id=primary\",\"dropdown_border_color\":\"globals\\/colors?id=76544c2\",\"color_dropdown_item_active\":\"globals\\/colors?id=7f7112a\"},\"resp_align\":\"right\",\"padding_horizontal_menu_item_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"menu_space_between\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"dropdown_divider_border\":\"none\",\"all_background_color_background\":\"classic\",\"all_background_hover_color_background\":\"classic\",\"all_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"all_background_color_gradient_angle\":{\"unit\":\"deg\",\"size\":130,\"sizes\":[]},\"dropdown_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"menu_space_between_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_horizontal_menu_item_mobile\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"menu_space_between_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"dropdown_border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_dropdown_item_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_horizontal_dropdown_item_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"padding_vertical_dropdown_item_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"menu_typography_font_family\":\"Roboto\",\"color_menu_item\":\"#F0F0F0\",\"background_color_dropdown_item\":\"#202020\",\"toggle_color\":\"#FFFFFF\",\"all_text_color\":\"#F4F9FC\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"23\",\"bottom\":\"14\",\"left\":\"23\",\"isLinked\":false},\"all_background_hover_color_color_stop\":{\"unit\":\"%\",\"size\":66,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"menu_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":0.90000000000000002,\"sizes\":[]},\"menu_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.90000000000000002,\"sizes\":[]},\"menu_typography_font_weight\":\"500\",\"menu_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"menu_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"all_background_color_color_b\":\"#FC3B00\",\"all_background_hover_color_color\":\"#FFFFFF\",\"all_background_hover_color_color_b\":\"#FFFFFF\",\"dropdown_border_width_tablet\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"dropdown_border_width_mobile\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"dropdown_border_radius_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"navmenu_align\":\"right\",\"dropdown\":\"mobile\",\"menu_last_item\":\"cta\",\"dropdown_box_shadow_box_shadow_type\":\"yes\",\"dropdown_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":30,\"blur\":30,\"spread\":-15,\"color\":\"rgba(0, 0, 0, 0.4)\"},\"all_button_box_shadow_box_shadow_type\":\"yes\",\"all_button_box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":10,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":107.182}},\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(934,185,'_elementor_page_assets','a:0:{}'),(936,186,'_wp_page_template','elementor_canvas'),(937,186,'_elementor_edit_mode','builder'),(938,186,'_elementor_template_type','wp-post'),(939,186,'_elementor_version','3.15.3'),(940,186,'_elementor_data','[{\"id\":\"7d9566\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":0,\"bottom\":\"-103\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\",\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"globals\\/colors?id=eb507f3\"},\"z_index\":90,\"background_overlay_background\":\"classic\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":37,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"background_overlay_color_b\":\"#FFFFFF00\",\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"-33\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"-11\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5d85d8f1\",\"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},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false}},\"elements\":[{\"id\":\"6cf40c10\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"30\"},\"elements\":[{\"id\":\"2bacd8a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":20,\"content_position_tablet\":\"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},\"_inline_size_mobile\":60},\"elements\":[{\"id\":\"b207c53\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/\\u0938\\u093e\\u0939\\u093f\\u0924\\u094d\\u092f-1.webp\",\"id\":104,\"size\":\"\",\"alt\":\"\\u0938\\u093e\\u0939\\u093f\\u0924\\u094d\\u092f\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"967a5c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":10,\"_inline_size_tablet\":20,\"content_position_tablet\":\"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},\"_inline_size_mobile\":60},\"elements\":[],\"isInner\":true},{\"id\":\"26b280e1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.664000000000001,\"_inline_size_tablet\":80,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":40,\"content_position\":\"center\"},\"elements\":[{\"id\":\"1c150646\",\"elType\":\"widget\",\"settings\":{\"menu\":\"menu1\",\"__globals__\":{\"menu_typography_typography\":\"globals\\/typography?id=779cdfc\",\"color_menu_item\":\"globals\\/colors?id=secondary\",\"color_menu_item_hover\":\"globals\\/colors?id=7f7112a\",\"all_text_color\":\"globals\\/colors?id=e64be90\",\"all_background_color_color\":\"globals\\/colors?id=f2feccc\",\"all_background_hover_color_color\":\"globals\\/colors?id=e64be90\",\"all_border_color\":\"\",\"all_border_hover_color\":\"\",\"all_background_color_color_b\":\"\",\"all_background_hover_color_color_b\":\"globals\\/colors?id=e64be90\",\"all_hover_color\":\"globals\\/colors?id=7f7112a\",\"toggle_color\":\"globals\\/colors?id=secondary\",\"background_color_dropdown_item\":\"globals\\/colors?id=e64be90\",\"color_menu_item_active\":\"globals\\/colors?id=7f7112a\",\"background_color_dropdown_item_hover\":\"\",\"color_dropdown_item_hover\":\"globals\\/colors?id=4b29dee\",\"color_dropdown_item\":\"globals\\/colors?id=primary\",\"dropdown_border_color\":\"globals\\/colors?id=76544c2\",\"color_dropdown_item_active\":\"globals\\/colors?id=7f7112a\"},\"resp_align\":\"right\",\"padding_horizontal_menu_item_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"menu_space_between\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"dropdown_divider_border\":\"none\",\"all_background_color_background\":\"classic\",\"all_background_hover_color_background\":\"classic\",\"all_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"all_background_color_gradient_angle\":{\"unit\":\"deg\",\"size\":130,\"sizes\":[]},\"dropdown_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"menu_space_between_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_horizontal_menu_item_mobile\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"menu_space_between_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"dropdown_border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_dropdown_item_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_horizontal_dropdown_item_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"padding_vertical_dropdown_item_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"menu_typography_font_family\":\"Roboto\",\"color_menu_item\":\"#F0F0F0\",\"background_color_dropdown_item\":\"#202020\",\"toggle_color\":\"#FFFFFF\",\"all_text_color\":\"#F4F9FC\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"23\",\"bottom\":\"14\",\"left\":\"23\",\"isLinked\":false},\"all_background_hover_color_color_stop\":{\"unit\":\"%\",\"size\":66,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"menu_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":0.90000000000000002,\"sizes\":[]},\"menu_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.90000000000000002,\"sizes\":[]},\"menu_typography_font_weight\":\"500\",\"menu_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"menu_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"all_background_color_color_b\":\"#FC3B00\",\"all_background_hover_color_color\":\"#FFFFFF\",\"all_background_hover_color_color_b\":\"#FFFFFF\",\"dropdown_border_width_tablet\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"dropdown_border_width_mobile\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"dropdown_border_radius_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"navmenu_align\":\"right\",\"dropdown\":\"mobile\",\"menu_last_item\":\"cta\",\"dropdown_box_shadow_box_shadow_type\":\"yes\",\"dropdown_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":30,\"blur\":30,\"spread\":-15,\"color\":\"rgba(0, 0, 0, 0.4)\"},\"all_button_box_shadow_box_shadow_type\":\"yes\",\"all_button_box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":10,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":107.182}},\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(941,186,'_elementor_page_assets','a:0:{}'),(944,187,'_wp_page_template','elementor_canvas'),(945,187,'_elementor_edit_mode','builder'),(946,187,'_elementor_template_type','wp-post'),(947,187,'_elementor_version','3.15.3'),(948,187,'_elementor_data','[{\"id\":\"7d9566\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":0,\"bottom\":\"-103\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\",\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"globals\\/colors?id=eb507f3\"},\"z_index\":90,\"background_overlay_background\":\"classic\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":37,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"background_overlay_color_b\":\"#FFFFFF00\",\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"-33\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"-11\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5d85d8f1\",\"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},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false}},\"elements\":[{\"id\":\"6cf40c10\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"30\"},\"elements\":[{\"id\":\"2bacd8a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":20,\"content_position_tablet\":\"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},\"_inline_size_mobile\":60},\"elements\":[{\"id\":\"b207c53\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/\\u0938\\u093e\\u0939\\u093f\\u0924\\u094d\\u092f-1.webp\",\"id\":104,\"size\":\"\",\"alt\":\"\\u0938\\u093e\\u0939\\u093f\\u0924\\u094d\\u092f\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"967a5c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":10,\"_inline_size_tablet\":20,\"content_position_tablet\":\"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},\"_inline_size_mobile\":60},\"elements\":[],\"isInner\":true},{\"id\":\"26b280e1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.664000000000001,\"_inline_size_tablet\":80,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":40,\"content_position\":\"center\"},\"elements\":[{\"id\":\"1c150646\",\"elType\":\"widget\",\"settings\":{\"menu\":\"menu1\",\"__globals__\":{\"menu_typography_typography\":\"globals\\/typography?id=779cdfc\",\"color_menu_item\":\"globals\\/colors?id=secondary\",\"color_menu_item_hover\":\"globals\\/colors?id=7f7112a\",\"all_text_color\":\"globals\\/colors?id=e64be90\",\"all_background_color_color\":\"globals\\/colors?id=f2feccc\",\"all_background_hover_color_color\":\"globals\\/colors?id=e64be90\",\"all_border_color\":\"\",\"all_border_hover_color\":\"\",\"all_background_color_color_b\":\"\",\"all_background_hover_color_color_b\":\"globals\\/colors?id=e64be90\",\"all_hover_color\":\"globals\\/colors?id=7f7112a\",\"toggle_color\":\"globals\\/colors?id=secondary\",\"background_color_dropdown_item\":\"globals\\/colors?id=e64be90\",\"color_menu_item_active\":\"globals\\/colors?id=7f7112a\",\"background_color_dropdown_item_hover\":\"\",\"color_dropdown_item_hover\":\"globals\\/colors?id=4b29dee\",\"color_dropdown_item\":\"globals\\/colors?id=primary\",\"dropdown_border_color\":\"globals\\/colors?id=76544c2\",\"color_dropdown_item_active\":\"globals\\/colors?id=7f7112a\"},\"resp_align\":\"right\",\"padding_horizontal_menu_item_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"menu_space_between\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"dropdown_divider_border\":\"none\",\"all_background_color_background\":\"classic\",\"all_background_hover_color_background\":\"classic\",\"all_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"all_background_color_gradient_angle\":{\"unit\":\"deg\",\"size\":130,\"sizes\":[]},\"dropdown_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"menu_space_between_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_horizontal_menu_item_mobile\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"menu_space_between_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"dropdown_border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_dropdown_item_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_horizontal_dropdown_item_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"padding_vertical_dropdown_item_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"menu_typography_font_family\":\"Roboto\",\"color_menu_item\":\"#F0F0F0\",\"background_color_dropdown_item\":\"#202020\",\"toggle_color\":\"#FFFFFF\",\"all_text_color\":\"#F4F9FC\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"23\",\"bottom\":\"14\",\"left\":\"23\",\"isLinked\":false},\"all_background_hover_color_color_stop\":{\"unit\":\"%\",\"size\":66,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"menu_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":0.90000000000000002,\"sizes\":[]},\"menu_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.90000000000000002,\"sizes\":[]},\"menu_typography_font_weight\":\"500\",\"menu_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"menu_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"all_background_color_color_b\":\"#FC3B00\",\"all_background_hover_color_color\":\"#FFFFFF\",\"all_background_hover_color_color_b\":\"#FFFFFF\",\"dropdown_border_width_tablet\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"dropdown_border_width_mobile\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"dropdown_border_radius_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"navmenu_align\":\"right\",\"dropdown\":\"mobile\",\"menu_last_item\":\"cta\",\"dropdown_box_shadow_box_shadow_type\":\"yes\",\"dropdown_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":30,\"blur\":30,\"spread\":-15,\"color\":\"rgba(0, 0, 0, 0.4)\"},\"all_button_box_shadow_box_shadow_type\":\"yes\",\"all_button_box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":10,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":107.182}},\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(949,187,'_elementor_page_assets','a:0:{}'),(951,188,'_wp_page_template','elementor_canvas'),(952,188,'_elementor_edit_mode','builder'),(953,188,'_elementor_template_type','wp-post'),(954,188,'_elementor_version','3.15.3'),(955,188,'_elementor_data','[{\"id\":\"7d9566\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":0,\"bottom\":\"-103\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\",\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"globals\\/colors?id=eb507f3\"},\"z_index\":90,\"background_overlay_background\":\"classic\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":37,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"background_overlay_color_b\":\"#FFFFFF00\",\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"-33\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"-11\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5d85d8f1\",\"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},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false}},\"elements\":[{\"id\":\"6cf40c10\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"30\"},\"elements\":[{\"id\":\"2bacd8a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":20,\"content_position_tablet\":\"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},\"_inline_size_mobile\":60},\"elements\":[{\"id\":\"b207c53\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/\\u0938\\u093e\\u0939\\u093f\\u0924\\u094d\\u092f-1.webp\",\"id\":104,\"size\":\"\",\"alt\":\"\\u0938\\u093e\\u0939\\u093f\\u0924\\u094d\\u092f\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"967a5c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":10,\"_inline_size_tablet\":20,\"content_position_tablet\":\"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},\"_inline_size_mobile\":60},\"elements\":[],\"isInner\":true},{\"id\":\"26b280e1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.664000000000001,\"_inline_size_tablet\":80,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":40,\"content_position\":\"center\"},\"elements\":[{\"id\":\"1c150646\",\"elType\":\"widget\",\"settings\":{\"menu\":\"menu1\",\"__globals__\":{\"menu_typography_typography\":\"globals\\/typography?id=779cdfc\",\"color_menu_item\":\"globals\\/colors?id=secondary\",\"color_menu_item_hover\":\"globals\\/colors?id=7f7112a\",\"all_text_color\":\"globals\\/colors?id=e64be90\",\"all_background_color_color\":\"globals\\/colors?id=f2feccc\",\"all_background_hover_color_color\":\"globals\\/colors?id=e64be90\",\"all_border_color\":\"\",\"all_border_hover_color\":\"\",\"all_background_color_color_b\":\"\",\"all_background_hover_color_color_b\":\"globals\\/colors?id=e64be90\",\"all_hover_color\":\"globals\\/colors?id=7f7112a\",\"toggle_color\":\"globals\\/colors?id=secondary\",\"background_color_dropdown_item\":\"globals\\/colors?id=e64be90\",\"color_menu_item_active\":\"globals\\/colors?id=7f7112a\",\"background_color_dropdown_item_hover\":\"\",\"color_dropdown_item_hover\":\"globals\\/colors?id=4b29dee\",\"color_dropdown_item\":\"globals\\/colors?id=primary\",\"dropdown_border_color\":\"globals\\/colors?id=76544c2\",\"color_dropdown_item_active\":\"globals\\/colors?id=7f7112a\"},\"resp_align\":\"right\",\"padding_horizontal_menu_item_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"menu_space_between\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"dropdown_divider_border\":\"none\",\"all_background_color_background\":\"classic\",\"all_background_hover_color_background\":\"classic\",\"all_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"all_background_color_gradient_angle\":{\"unit\":\"deg\",\"size\":130,\"sizes\":[]},\"dropdown_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"menu_space_between_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_horizontal_menu_item_mobile\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"menu_space_between_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"dropdown_border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_dropdown_item_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_horizontal_dropdown_item_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"padding_vertical_dropdown_item_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"menu_typography_font_family\":\"Roboto\",\"color_menu_item\":\"#F0F0F0\",\"background_color_dropdown_item\":\"#202020\",\"toggle_color\":\"#FFFFFF\",\"all_text_color\":\"#F4F9FC\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"23\",\"bottom\":\"14\",\"left\":\"23\",\"isLinked\":false},\"all_background_hover_color_color_stop\":{\"unit\":\"%\",\"size\":66,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"menu_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":0.90000000000000002,\"sizes\":[]},\"menu_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.90000000000000002,\"sizes\":[]},\"menu_typography_font_weight\":\"500\",\"menu_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"menu_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"all_background_color_color_b\":\"#FC3B00\",\"all_background_hover_color_color\":\"#FFFFFF\",\"all_background_hover_color_color_b\":\"#FFFFFF\",\"dropdown_border_width_tablet\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"dropdown_border_width_mobile\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"dropdown_border_radius_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"navmenu_align\":\"right\",\"dropdown\":\"mobile\",\"menu_last_item\":\"cta\",\"dropdown_box_shadow_box_shadow_type\":\"yes\",\"dropdown_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":30,\"blur\":30,\"spread\":-15,\"color\":\"rgba(0, 0, 0, 0.4)\"},\"all_button_box_shadow_box_shadow_type\":\"yes\",\"all_button_box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":10,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":107.182}},\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(956,188,'_elementor_page_assets','a:0:{}'),(958,189,'_wp_page_template','elementor_canvas'),(959,189,'_elementor_edit_mode','builder'),(960,189,'_elementor_template_type','wp-post'),(961,189,'_elementor_version','3.15.3'),(962,189,'_elementor_data','[{\"id\":\"7d9566\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":0,\"bottom\":\"-103\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\",\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"globals\\/colors?id=eb507f3\"},\"z_index\":90,\"background_overlay_background\":\"classic\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":37,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"background_overlay_color_b\":\"#FFFFFF00\",\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"-33\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"-11\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5d85d8f1\",\"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},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false}},\"elements\":[{\"id\":\"6cf40c10\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"30\"},\"elements\":[{\"id\":\"2bacd8a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":20,\"content_position_tablet\":\"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},\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"b207c53\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sahityaonline.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/\\u0938\\u093e\\u0939\\u093f\\u0924\\u094d\\u092f-1.webp\",\"id\":104,\"size\":\"\",\"alt\":\"\\u0938\\u093e\\u0939\\u093f\\u0924\\u094d\\u092f\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"967a5c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":10,\"_inline_size_tablet\":20,\"content_position_tablet\":\"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},\"_inline_size_mobile\":60,\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"isInner\":true},{\"id\":\"26b280e1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.664000000000001,\"_inline_size_tablet\":80,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":40,\"content_position\":\"center\"},\"elements\":[{\"id\":\"1c150646\",\"elType\":\"widget\",\"settings\":{\"menu\":\"menu1\",\"__globals__\":{\"menu_typography_typography\":\"globals\\/typography?id=779cdfc\",\"color_menu_item\":\"globals\\/colors?id=secondary\",\"color_menu_item_hover\":\"globals\\/colors?id=7f7112a\",\"all_text_color\":\"globals\\/colors?id=e64be90\",\"all_background_color_color\":\"globals\\/colors?id=f2feccc\",\"all_background_hover_color_color\":\"globals\\/colors?id=e64be90\",\"all_border_color\":\"\",\"all_border_hover_color\":\"\",\"all_background_color_color_b\":\"\",\"all_background_hover_color_color_b\":\"globals\\/colors?id=e64be90\",\"all_hover_color\":\"globals\\/colors?id=7f7112a\",\"toggle_color\":\"globals\\/colors?id=secondary\",\"background_color_dropdown_item\":\"globals\\/colors?id=e64be90\",\"color_menu_item_active\":\"globals\\/colors?id=7f7112a\",\"background_color_dropdown_item_hover\":\"\",\"color_dropdown_item_hover\":\"globals\\/colors?id=4b29dee\",\"color_dropdown_item\":\"globals\\/colors?id=primary\",\"dropdown_border_color\":\"globals\\/colors?id=76544c2\",\"color_dropdown_item_active\":\"globals\\/colors?id=7f7112a\"},\"resp_align\":\"right\",\"padding_horizontal_menu_item_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"menu_space_between\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"dropdown_divider_border\":\"none\",\"all_background_color_background\":\"classic\",\"all_background_hover_color_background\":\"classic\",\"all_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"all_background_color_gradient_angle\":{\"unit\":\"deg\",\"size\":130,\"sizes\":[]},\"dropdown_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"menu_space_between_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_horizontal_menu_item_mobile\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"menu_space_between_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"dropdown_border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_dropdown_item_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_horizontal_dropdown_item_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"padding_vertical_dropdown_item_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"menu_typography_font_family\":\"Roboto\",\"color_menu_item\":\"#F0F0F0\",\"background_color_dropdown_item\":\"#202020\",\"toggle_color\":\"#FFFFFF\",\"all_text_color\":\"#F4F9FC\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"23\",\"bottom\":\"14\",\"left\":\"23\",\"isLinked\":false},\"all_background_hover_color_color_stop\":{\"unit\":\"%\",\"size\":66,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"menu_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":0.90000000000000002,\"sizes\":[]},\"menu_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.90000000000000002,\"sizes\":[]},\"menu_typography_font_weight\":\"500\",\"menu_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"menu_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"all_background_color_color_b\":\"#FC3B00\",\"all_background_hover_color_color\":\"#FFFFFF\",\"all_background_hover_color_color_b\":\"#FFFFFF\",\"dropdown_border_width_tablet\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"dropdown_border_width_mobile\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"dropdown_border_radius_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"navmenu_align\":\"right\",\"dropdown\":\"mobile\",\"menu_last_item\":\"cta\",\"dropdown_box_shadow_box_shadow_type\":\"yes\",\"dropdown_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":30,\"blur\":30,\"spread\":-15,\"color\":\"rgba(0, 0, 0, 0.4)\"},\"all_button_box_shadow_box_shadow_type\":\"yes\",\"all_button_box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":10,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":107.182}},\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(963,189,'_elementor_page_assets','a:0:{}'),(966,8,'_elementor_css','a:6:{s:4:\"time\";i:1695299981;s:5:\"fonts\";a:6:{i:0;s:6:\"Mulish\";i:2;s:6:\"Roboto\";i:3;s:5:\"Exo 2\";i:10;s:5:\"Inter\";i:19;s:15:\"Vujahday Script\";i:26;s:5:\"Kanit\";}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(967,114,'_elementor_css','a:6:{s:4:\"time\";i:1695299982;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:3:{i:0;s:0:\"\";i:4;s:8:\"jkiticon\";i:6;s:8:\"fa-solid\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(968,92,'_elementor_css','a:6:{s:4:\"time\";i:1695299982;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:2:{i:0;s:8:\"fa-solid\";i:1;s:10:\"fa-regular\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(969,98,'_elementor_css','a:6:{s:4:\"time\";i:1695299982;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:1:{i:0;s:8:\"fa-solid\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}');
/*!40000 ALTER TABLE `wp_postmeta` ENABLE KEYS */;
UNLOCK TABLES;

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

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

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

LOCK TABLES `wp_posts` WRITE;
/*!40000 ALTER TABLE `wp_posts` DISABLE KEYS */;
INSERT INTO `wp_posts` VALUES (1,1,'2023-09-05 06:19:27','2023-09-05 06:19:27','<!-- 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-05 06:19:27','2023-09-05 06:19:27','',0,'https://sahityaonline.in8.cdn-alpha.com/?p=1',0,'post','',1),(2,1,'2023-09-05 06:19:27','2023-09-05 06:19:27','<!-- wp:paragraph -->\n<p>This is an example page. It\'s different from a blog post because it will stay in one place and will show up in your site navigation (in most themes). Most people start with an About page that introduces them to potential site visitors. It might say something like this:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:quote -->\n<blockquote class=\"wp-block-quote\"><p>Hi there! I\'m a bike messenger by day, aspiring actor by night, and this is my website. I live in Los Angeles, have a great dog named Jack, and I like pi&#241;a coladas. (And gettin\' caught in the rain.)</p></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:paragraph -->\n<p>...or something like this:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:quote -->\n<blockquote class=\"wp-block-quote\"><p>The XYZ Doohickey Company was founded in 1971, and has been providing quality doohickeys to the public ever since. Located in Gotham City, XYZ employs over 2,000 people and does all kinds of awesome things for the Gotham community.</p></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:paragraph -->\n<p>As a new WordPress user, you should go to <a href=\"https://sahityaonline.in8.cdn-alpha.com/wp-admin/\">your dashboard</a> to delete this page and create new pages for your content. Have fun!</p>\n<!-- /wp:paragraph -->','Sample Page','','publish','closed','open','','sample-page','','','2023-09-05 06:19:27','2023-09-05 06:19:27','',0,'https://sahityaonline.in8.cdn-alpha.com/?page_id=2',0,'page','',0),(3,1,'2023-09-05 06:19:27','2023-09-05 06:19:27','<!-- wp:heading --><h2>Who we are</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>Our website address is: https://sahityaonline.in8.cdn-alpha.com.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>Comments</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>When visitors leave comments on the site we collect the data shown in the comments form, and also the visitor&#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-05 06:19:27','2023-09-05 06:19:27','',0,'https://sahityaonline.in8.cdn-alpha.com/?page_id=3',0,'page','',0),(4,1,'2023-09-05 08:55:39','0000-00-00 00:00:00','','Auto Draft','','auto-draft','open','open','','','','','2023-09-05 08:55:39','0000-00-00 00:00:00','',0,'https://sahityaonline.in8.cdn-alpha.com/?p=4',0,'post','',0),(5,1,'2023-09-05 14:32:19','2023-09-05 09:02:19','','Default Kit','','publish','closed','closed','','default-kit','','','2023-09-05 14:32:19','2023-09-05 09:02:19','',0,'https://sahityaonline.in8.cdn-alpha.com/?p=5',0,'elementor_library','',0),(6,1,'2023-09-05 14:37:04','2023-09-05 09:07:04','','Lessan','','publish','closed','closed','','lessan','','','2023-09-05 14:37:04','2023-09-05 09:07:04','',0,'https://sahityaonline.in8.cdn-alpha.com/?envato_tk_import=lessan',0,'envato_tk_import','',0),(7,1,'2023-09-05 14:37:17','2023-09-05 09:07:17','','2-copy.jpg','','inherit','open','closed','','2-copy-jpg','','','2023-09-05 14:37:17','2023-09-05 09:07:17','',0,'https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/2-copy.jpg',0,'attachment','image/jpeg',0),(8,1,'2023-09-05 14:37:18','2023-09-05 09:07:18','','Kit Styles: Lessan','','publish','closed','closed','','global-kit-styles','','','2023-09-05 14:37:20','2023-09-05 09:07:20','',0,'https://sahityaonline.in8.cdn-alpha.com/?elementor_library=global-kit-styles',0,'elementor_library','',0),(9,1,'2023-09-05 14:37:18','2023-09-05 09:07:18','','2-copy.jpg','','inherit','open','closed','','2-copy-jpg-2','','','2023-09-05 14:37:18','2023-09-05 09:07:18','',0,'https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/2-copy-1.jpg',0,'attachment','image/jpeg',0),(10,1,'2023-09-05 14:37:19','2023-09-05 09:07:19','','Global Kit Styles','','inherit','closed','closed','','8-revision-v1','','','2023-09-05 14:37:19','2023-09-05 09:07:19','',8,'https://sahityaonline.in8.cdn-alpha.com/?p=10',0,'revision','',0),(11,1,'2023-09-05 14:37:20','2023-09-05 09:07:20','','Global Kit Styles','','inherit','closed','closed','','8-revision-v1','','','2023-09-05 14:37:20','2023-09-05 09:07:20','',8,'https://sahityaonline.in8.cdn-alpha.com/?p=11',0,'revision','',0),(12,1,'2023-09-05 14:37:20','2023-09-05 09:07:20','','Kit Styles: Lessan','','inherit','closed','closed','','8-revision-v1','','','2023-09-05 14:37:20','2023-09-05 09:07:20','',8,'https://sahityaonline.in8.cdn-alpha.com/?p=12',0,'revision','',0),(13,1,'2023-09-05 14:37:20','2023-09-05 09:07:20','','boy3.png','','inherit','open','closed','','boy3-png','','','2023-09-05 14:37:20','2023-09-05 09:07:20','',0,'https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/boy3.png',0,'attachment','image/png',0),(14,1,'2023-09-05 14:37:23','2023-09-05 09:07:23','','c4.png','','inherit','open','closed','','c4-png','','','2023-09-05 14:37:23','2023-09-05 09:07:23','',0,'https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c4.png',0,'attachment','image/png',0),(15,1,'2023-09-05 14:37:26','2023-09-05 09:07:26','','c3.png','','inherit','open','closed','','c3-png','','','2023-09-05 14:37:26','2023-09-05 09:07:26','',0,'https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c3.png',0,'attachment','image/png',0),(16,1,'2023-09-05 14:37:27','2023-09-05 09:07:27','','c3.png','','inherit','open','closed','','c3-png-2','','','2023-09-05 14:37:27','2023-09-05 09:07:27','',0,'https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c3-1.png',0,'attachment','image/png',0),(17,1,'2023-09-05 14:37:31','2023-09-05 09:07:31','','edge.png','','inherit','open','closed','','edge-png','','','2023-09-05 14:37:31','2023-09-05 09:07:31','',0,'https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge.png',0,'attachment','image/png',0),(18,1,'2023-09-05 14:37:31','2023-09-05 09:07:31','','edge.png','','inherit','open','closed','','edge-png-2','','','2023-09-05 14:37:31','2023-09-05 09:07:31','',0,'https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge-1.png',0,'attachment','image/png',0),(19,1,'2023-09-05 14:37:37','2023-09-05 09:07:37','','c1.png','','inherit','open','closed','','c1-png','','','2023-09-05 14:37:37','2023-09-05 09:07:37','',0,'https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c1.png',0,'attachment','image/png',0),(20,1,'2023-09-05 14:37:38','2023-09-05 09:07:38','','c1.png','','inherit','open','closed','','c1-png-2','','','2023-09-05 14:37:38','2023-09-05 09:07:38','',0,'https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c1-1.png',0,'attachment','image/png',0),(21,1,'2023-09-05 14:37:38','2023-09-05 09:07:38','<label for=\"mf-input-text-79b78045\">\n					${ parent.decodeEntities(`Name`) } 					\n				</label>\n			<input type=\"text\" id=\"mf-input-text-79b78045\" \n				name=\"mf-listing-fname\" \n				placeholder=\"${ parent.decodeEntities(`Your Name...`) } \"\n				onInput=${ parent.handleChange }\n									aria-invalid=${validation.errors[\'mf-listing-fname\'] ? \'true\' : \'false\'}\n					ref=${ el => parent.activateValidation({\"message\":\"This field is required.\",\"minLength\":1,\"maxLength\":\"\",\"type\":\"none\",\"required\":false,\"expression\":\"null\"}, el) }\n							/>\n							<${validation.ErrorMessage}\n					errors=${validation.errors}\n					name=\"mf-listing-fname\"\n					as=${html``}\n					/>\n							<label for=\"mf-input-email-4c0223b2\">\n					${ parent.decodeEntities(`Email`) } 					\n				</label>\n			<input \n				type=\"email\" \n				defaultValue=\"\" \n				class=\"mf-input \" \n				id=\"mf-input-email-4c0223b2\" \n				name=\"mf-email\" \n				placeholder=\"${ parent.decodeEntities(`example@yourmail.com`) } \" \n				onBlur=${parent.handleChange} onFocus=${parent.handleChange} aria-invalid=${validation.errors[\'mf-email\'] ? \'true\' : \'false\' } \n				ref=${el=> parent.activateValidation({\"message\":\"This field is required.\",\"emailMessage\":\"Please enter a valid Email address\",\"minLength\":1,\"maxLength\":\"\",\"type\":\"none\",\"required\":false,\"expression\":\"null\"}, el)}\n							/>\n						<${validation.ErrorMessage} \n				errors=${validation.errors} \n				name=\"mf-email\" \n				as=${html``}\n			/>\n							<label for=\"mf-input-text-4c69732e\">\n					${ parent.decodeEntities(`Subject`) } 					\n				</label>\n			<input\n				type=\"text\"\n				class=\"mf-input \"\n				id=\"mf-input-text-4c69732e\"\n				name=\"mf-text\"\n				placeholder=\"${ parent.decodeEntities(`Title...`) } \"\n									onInput=${parent.handleChange}\n					onBlur=${parent.handleChange}\n					aria-invalid=${validation.errors[\'mf-text\'] ? \'true\' : \'false\'}\n					ref=${el =>{\n												parent.activateValidation({\"message\":\"This field is required.\",\"minLength\":1,\"maxLength\":\"\",\"type\":\"none\",\"required\":false,\"expression\":\"null\"}, el)\n					}}\n								/>\n							<${validation.ErrorMessage}\n					errors=${validation.errors}\n					name=\"mf-text\"\n					as=${html``}\n					/>\n							<label for=\"mf-input-text-area-22024729\">\n					${ parent.decodeEntities(`Message`) } 					\n				</label>\n			<textarea id=\"mf-input-text-area-22024729\"\n				name=\"mf-textarea\" \n				placeholder=\"${ parent.decodeEntities(`Type Here...`) } \"\n				cols=\"30\" rows=\"10\"\n									onInput=${ parent.handleChange }\n					aria-invalid=${validation.errors[\'mf-textarea\'] ? \'true\' : \'false\'}\n					ref=${ el => parent.activateValidation({\"message\":\"This field is required.\",\"minLength\":1,\"maxLength\":\"\",\"type\":\"none\",\"required\":false,\"expression\":\"null\"}, el)}\n								></textarea>\n							<${validation.ErrorMessage}\n					errors=${validation.errors}\n					name=\"mf-textarea\"\n					as=${html``}\n					/>\n							<button type=\"submit\" id=\"\">\n					${ parent.decodeEntities(`Send Now`) } \n				</button>','Contact-Metform','','publish','closed','closed','','contact-metform','','','2023-09-05 14:37:39','2023-09-05 09:07:39','',0,'https://sahityaonline.in8.cdn-alpha.com/?elementor_library=contact-metform',0,'elementor_library','',0),(22,1,'2023-09-05 14:37:39','2023-09-05 09:07:39','<label for=\"mf-input-text-79b78045\">\n					${ parent.decodeEntities(`Name`) } 					\n				</label>\n			<input type=\"text\" id=\"mf-input-text-79b78045\" \n				name=\"mf-listing-fname\" \n				placeholder=\"${ parent.decodeEntities(`Your Name...`) } \"\n				onInput=${ parent.handleChange }\n									aria-invalid=${validation.errors[\'mf-listing-fname\'] ? \'true\' : \'false\'}\n					ref=${ el => parent.activateValidation({\"message\":\"This field is required.\",\"minLength\":1,\"maxLength\":\"\",\"type\":\"none\",\"required\":false,\"expression\":\"null\"}, el) }\n							/>\n							<${validation.ErrorMessage}\n					errors=${validation.errors}\n					name=\"mf-listing-fname\"\n					as=${html``}\n					/>\n							<label for=\"mf-input-email-4c0223b2\">\n					${ parent.decodeEntities(`Email`) } 					\n				</label>\n			<input \n				type=\"email\" \n				defaultValue=\"\" \n				class=\"mf-input \" \n				id=\"mf-input-email-4c0223b2\" \n				name=\"mf-email\" \n				placeholder=\"${ parent.decodeEntities(`example@yourmail.com`) } \" \n				onBlur=${parent.handleChange} onFocus=${parent.handleChange} aria-invalid=${validation.errors[\'mf-email\'] ? \'true\' : \'false\' } \n				ref=${el=> parent.activateValidation({\"message\":\"This field is required.\",\"emailMessage\":\"Please enter a valid Email address\",\"minLength\":1,\"maxLength\":\"\",\"type\":\"none\",\"required\":false,\"expression\":\"null\"}, el)}\n							/>\n						<${validation.ErrorMessage} \n				errors=${validation.errors} \n				name=\"mf-email\" \n				as=${html``}\n			/>\n							<label for=\"mf-input-text-4c69732e\">\n					${ parent.decodeEntities(`Subject`) } 					\n				</label>\n			<input\n				type=\"text\"\n				class=\"mf-input \"\n				id=\"mf-input-text-4c69732e\"\n				name=\"mf-text\"\n				placeholder=\"${ parent.decodeEntities(`Title...`) } \"\n									onInput=${parent.handleChange}\n					onBlur=${parent.handleChange}\n					aria-invalid=${validation.errors[\'mf-text\'] ? \'true\' : \'false\'}\n					ref=${el =>{\n												parent.activateValidation({\"message\":\"This field is required.\",\"minLength\":1,\"maxLength\":\"\",\"type\":\"none\",\"required\":false,\"expression\":\"null\"}, el)\n					}}\n								/>\n							<${validation.ErrorMessage}\n					errors=${validation.errors}\n					name=\"mf-text\"\n					as=${html``}\n					/>\n							<label for=\"mf-input-text-area-22024729\">\n					${ parent.decodeEntities(`Message`) } 					\n				</label>\n			<textarea id=\"mf-input-text-area-22024729\"\n				name=\"mf-textarea\" \n				placeholder=\"${ parent.decodeEntities(`Type Here...`) } \"\n				cols=\"30\" rows=\"10\"\n									onInput=${ parent.handleChange }\n					aria-invalid=${validation.errors[\'mf-textarea\'] ? \'true\' : \'false\'}\n					ref=${ el => parent.activateValidation({\"message\":\"This field is required.\",\"minLength\":1,\"maxLength\":\"\",\"type\":\"none\",\"required\":false,\"expression\":\"null\"}, el)}\n								></textarea>\n							<${validation.ErrorMessage}\n					errors=${validation.errors}\n					name=\"mf-textarea\"\n					as=${html``}\n					/>\n							<button type=\"submit\" id=\"\">\n					${ parent.decodeEntities(`Send Now`) } \n				</button>','Contact-Metform','','inherit','closed','closed','','21-revision-v1','','','2023-09-05 14:37:39','2023-09-05 09:07:39','',21,'https://sahityaonline.in8.cdn-alpha.com/?p=22',0,'revision','',0),(23,1,'2023-09-05 14:37:40','2023-09-05 09:07:40','','aged-teacher-2021-09-24-03-26-41-utc.jpg','','inherit','open','closed','','aged-teacher-2021-09-24-03-26-41-utc-jpg','','','2023-09-05 14:37:40','2023-09-05 09:07:40','',0,'https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/aged-teacher-2021-09-24-03-26-41-utc.jpg',0,'attachment','image/jpeg',0),(24,1,'2023-09-05 14:37:41','2023-09-05 09:07:41','','logo-1.png','','inherit','open','closed','','logo-1-png','','','2023-09-05 14:37:41','2023-09-05 09:07:41','',0,'https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logo-1.png',0,'attachment','image/png',0),(25,1,'2023-09-05 14:37:42','2023-09-05 09:07:42','','13-copy.jpg','','inherit','open','closed','','13-copy-jpg','','','2023-09-05 14:37:42','2023-09-05 09:07:42','',0,'https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/13-copy.jpg',0,'attachment','image/jpeg',0),(26,1,'2023-09-05 14:37:43','2023-09-05 09:07:43','','edge3.png','','inherit','open','closed','','edge3-png','','','2023-09-05 14:37:43','2023-09-05 09:07:43','',0,'https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge3.png',0,'attachment','image/png',0),(27,1,'2023-09-05 14:37:43','2023-09-05 09:07:43','','logo-1.png','','inherit','open','closed','','logo-1-png-2','','','2023-09-05 14:37:43','2023-09-05 09:07:43','',0,'https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logo-1-1.png',0,'attachment','image/png',0),(28,1,'2023-09-05 14:37:44','2023-09-05 09:07:44','','c2.png','','inherit','open','closed','','c2-png','','','2023-09-05 14:37:44','2023-09-05 09:07:44','',0,'https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c2.png',0,'attachment','image/png',0),(29,1,'2023-09-05 14:37:45','2023-09-05 09:07:45','','edge2.png','','inherit','open','closed','','edge2-png','','','2023-09-05 14:37:45','2023-09-05 09:07:45','',0,'https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge2.png',0,'attachment','image/png',0),(30,1,'2023-09-05 14:37:47','2023-09-05 09:07:47','','pp1.jpg','','inherit','open','closed','','pp1-jpg','','','2023-09-05 14:37:47','2023-09-05 09:07:47','',0,'https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/pp1.jpg',0,'attachment','image/jpeg',0),(31,1,'2023-09-05 14:37:47','2023-09-05 09:07:47','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"280\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logo-1.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logo-1.png 815w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logo-1-300x105.png 300w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logo-1-768x269.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis.</p>		\n			<style>/*! elementor - v3.15.0 - 20-08-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><h4>Explore</h4>		\n			<h2>About Us</h2>		\n			<h2>Curriculum </h2>		\n			<h2>Event</h2>		\n			<h4>Further Links</h4>		\n			<h2>Term & Condition</h2>		\n			<h2>Contact Us</h2>		\n			<h2>News</h2>		\n			<h4>Get In Touch</h4>		\n			<link rel=\"stylesheet\" href=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										2443 Oak Ridge Omaha, QA 45065\n									</li>\n								<li>\n										207-8767-452\n									</li>\n								<li>\n										support@site.com\n									</li>\n						</ul>\n		Copyright © [hfe_current_year] [hfe_site_title] | Powered by [hfe_site_title]','Footer','','publish','closed','closed','','footer','','','2023-09-05 14:37:48','2023-09-05 09:07:48','',0,'https://sahityaonline.in8.cdn-alpha.com/?elementor_library=footer',0,'elementor_library','',0),(32,1,'2023-09-05 14:37:48','2023-09-05 09:07:48','','aged-teacher-2021-09-24-03-26-41-utc-2.png','','inherit','open','closed','','aged-teacher-2021-09-24-03-26-41-utc-2-png','','','2023-09-05 14:37:48','2023-09-05 09:07:48','',0,'https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/aged-teacher-2021-09-24-03-26-41-utc-2.png',0,'attachment','image/png',0),(33,1,'2023-09-05 14:37:48','2023-09-05 09:07:48','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"280\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logo-1.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logo-1.png 815w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logo-1-300x105.png 300w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logo-1-768x269.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis.</p>		\n			<style>/*! elementor - v3.15.0 - 20-08-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><h4>Explore</h4>		\n			<h2>About Us</h2>		\n			<h2>Curriculum </h2>		\n			<h2>Event</h2>		\n			<h4>Further Links</h4>		\n			<h2>Term & Condition</h2>		\n			<h2>Contact Us</h2>		\n			<h2>News</h2>		\n			<h4>Get In Touch</h4>		\n			<link rel=\"stylesheet\" href=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										2443 Oak Ridge Omaha, QA 45065\n									</li>\n								<li>\n										207-8767-452\n									</li>\n								<li>\n										support@site.com\n									</li>\n						</ul>\n		Copyright © [hfe_current_year] [hfe_site_title] | Powered by [hfe_site_title]','Footer','','inherit','closed','closed','','31-revision-v1','','','2023-09-05 14:37:48','2023-09-05 09:07:48','',31,'https://sahityaonline.in8.cdn-alpha.com/?p=33',0,'revision','',0),(34,1,'2023-09-05 14:37:48','2023-09-05 09:07:48','','Acanthus-black-white-02-copy.png','','inherit','open','closed','','acanthus-black-white-02-copy-png','','','2023-09-05 14:37:48','2023-09-05 09:07:48','',0,'https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/Acanthus-black-white-02-copy.png',0,'attachment','image/png',0),(35,1,'2023-09-05 14:37:50','2023-09-05 09:07:50','','little-boy-is-having-online-lessons-by-using-lapto-2022-02-03-17-43-51-utc-copy.jpg','','inherit','open','closed','','little-boy-is-having-online-lessons-by-using-lapto-2022-02-03-17-43-51-utc-copy-jpg','','','2023-09-05 14:37:50','2023-09-05 09:07:50','',0,'https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/little-boy-is-having-online-lessons-by-using-lapto-2022-02-03-17-43-51-utc-copy.jpg',0,'attachment','image/jpeg',0),(36,1,'2023-09-05 14:37:50','2023-09-05 09:07:50','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"280\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logo-1.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logo-1.png 815w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logo-1-300x105.png 300w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logo-1-768x269.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Header','','publish','closed','closed','','header','','','2023-09-05 14:37:51','2023-09-05 09:07:51','',0,'https://sahityaonline.in8.cdn-alpha.com/?elementor_library=header',0,'elementor_library','',0),(37,1,'2023-09-05 14:37:51','2023-09-05 09:07:51','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"280\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logo-1.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logo-1.png 815w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logo-1-300x105.png 300w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logo-1-768x269.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Header','','inherit','closed','closed','','36-revision-v1','','','2023-09-05 14:37:51','2023-09-05 09:07:51','',36,'https://sahityaonline.in8.cdn-alpha.com/?p=37',0,'revision','',0),(38,1,'2023-09-05 14:37:55','2023-09-05 09:07:55','','portrait-of-happy-caucasian-boy-standing-at-chalkb-2021-09-03-06-28-24-utc-copy.jpg','','inherit','open','closed','','portrait-of-happy-caucasian-boy-standing-at-chalkb-2021-09-03-06-28-24-utc-copy-jpg','','','2023-09-05 14:37:55','2023-09-05 09:07:55','',0,'https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/portrait-of-happy-caucasian-boy-standing-at-chalkb-2021-09-03-06-28-24-utc-copy.jpg',0,'attachment','image/jpeg',0),(39,1,'2023-09-05 14:37:56','2023-09-05 09:07:56','','pp2.jpg','','inherit','open','closed','','pp2-jpg','','','2023-09-05 14:37:56','2023-09-05 09:07:56','',0,'https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/pp2.jpg',0,'attachment','image/jpeg',0),(40,1,'2023-09-05 14:38:00','2023-09-05 09:08:00','','grade.png','','inherit','open','closed','','grade-png','','','2023-09-05 14:38:00','2023-09-05 09:08:00','',0,'https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/grade.png',0,'attachment','image/png',0),(41,1,'2023-09-05 14:38:00','2023-09-05 09:08:00','','liki3.png','','inherit','open','closed','','liki3-png','','','2023-09-05 14:38:00','2023-09-05 09:08:00','',0,'https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/liki3.png',0,'attachment','image/png',0),(42,1,'2023-09-05 14:38:02','2023-09-05 09:08:02','<style>/*! elementor - v3.15.0 - 20-08-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=\"324\" height=\"287\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge3.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge3.png 324w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge3-300x266.png 300w\" sizes=\"(max-width: 324px) 100vw, 324px\" />															\n															<img width=\"195\" height=\"196\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c1.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c1.png 195w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c1-150x150.png 150w\" sizes=\"(max-width: 195px) 100vw, 195px\" />															\n															<img width=\"184\" height=\"181\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c3.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" />															\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>404</h1>		\n			<h2>Something Is Wrong</h2>		\n		<p>The Page You’re Looking For Was Not Found</p>		\n			<a href=\"#\">\n						Go Back\n					</a>','404','','publish','closed','closed','','404','','','2023-09-05 14:38:03','2023-09-05 09:08:03','',0,'https://sahityaonline.in8.cdn-alpha.com/?elementor_library=404',0,'elementor_library','',0),(43,1,'2023-09-05 14:38:03','2023-09-05 09:08:03','<style>/*! elementor - v3.15.0 - 20-08-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=\"324\" height=\"287\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge3.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge3.png 324w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge3-300x266.png 300w\" sizes=\"(max-width: 324px) 100vw, 324px\" />															\n															<img width=\"195\" height=\"196\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c1.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c1.png 195w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c1-150x150.png 150w\" sizes=\"(max-width: 195px) 100vw, 195px\" />															\n															<img width=\"184\" height=\"181\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c3.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" />															\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>404</h1>		\n			<h2>Something Is Wrong</h2>		\n		<p>The Page You’re Looking For Was Not Found</p>		\n			<a href=\"#\">\n						Go Back\n					</a>','404','','inherit','closed','closed','','42-revision-v1','','','2023-09-05 14:38:03','2023-09-05 09:08:03','',42,'https://sahityaonline.in8.cdn-alpha.com/?p=43',0,'revision','',0),(44,1,'2023-09-05 14:38:04','2023-09-05 09:08:04','','pp3.jpg','','inherit','open','closed','','pp3-jpg','','','2023-09-05 14:38:04','2023-09-05 09:08:04','',0,'https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/pp3.jpg',0,'attachment','image/jpeg',0),(45,1,'2023-09-05 14:38:06','2023-09-05 09:08:06','','chart.png','','inherit','open','closed','','chart-png','','','2023-09-05 14:38:06','2023-09-05 09:08:06','',0,'https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/chart.png',0,'attachment','image/png',0),(46,1,'2023-09-05 14:38:06','2023-09-05 09:08:06','','cute-elementary-kids-with-books-at-school-2022-12-16-18-15-57-utc-copy.jpg','','inherit','open','closed','','cute-elementary-kids-with-books-at-school-2022-12-16-18-15-57-utc-copy-jpg','','','2023-09-05 14:38:06','2023-09-05 09:08:06','',0,'https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/cute-elementary-kids-with-books-at-school-2022-12-16-18-15-57-utc-copy.jpg',0,'attachment','image/jpeg',0),(47,1,'2023-09-05 14:38:08','2023-09-05 09:08:08','','boy-at-lesson-2021-09-24-03-25-58-utc-copy.jpg','','inherit','open','closed','','boy-at-lesson-2021-09-24-03-25-58-utc-copy-jpg','','','2023-09-05 14:38:08','2023-09-05 09:08:08','',0,'https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/boy-at-lesson-2021-09-24-03-25-58-utc-copy.jpg',0,'attachment','image/jpeg',0),(48,1,'2023-09-05 14:38:09','2023-09-05 09:08:09','','kids-taking-exam-in-school-2022-06-29-19-26-45-utc-copy.jpg','','inherit','open','closed','','kids-taking-exam-in-school-2022-06-29-19-26-45-utc-copy-jpg','','','2023-09-05 14:38:09','2023-09-05 09:08:09','',0,'https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/kids-taking-exam-in-school-2022-06-29-19-26-45-utc-copy.jpg',0,'attachment','image/jpeg',0),(49,1,'2023-09-05 14:38:10','2023-09-05 09:08:10','','pp5.jpg','','inherit','open','closed','','pp5-jpg','','','2023-09-05 14:38:10','2023-09-05 09:08:10','',0,'https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/pp5.jpg',0,'attachment','image/jpeg',0),(50,1,'2023-09-05 14:38:11','2023-09-05 09:08:11','','test-exam-sheet.png','','inherit','open','closed','','test-exam-sheet-png','','','2023-09-05 14:38:11','2023-09-05 09:08:11','',0,'https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/test-exam-sheet.png',0,'attachment','image/png',0),(51,1,'2023-09-05 14:38:14','2023-09-05 09:08:14','','liki.png','','inherit','open','closed','','liki-png','','','2023-09-05 14:38:14','2023-09-05 09:08:14','',0,'https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/liki.png',0,'attachment','image/png',0),(52,1,'2023-09-05 14:38:14','2023-09-05 09:08:14','','hex2.png','','inherit','open','closed','','hex2-png','','','2023-09-05 14:38:14','2023-09-05 09:08:14','',0,'https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/hex2.png',0,'attachment','image/png',0),(53,1,'2023-09-05 14:38:17','2023-09-05 09:08:17','','pp4.jpg','','inherit','open','closed','','pp4-jpg','','','2023-09-05 14:38:17','2023-09-05 09:08:17','',0,'https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/pp4.jpg',0,'attachment','image/jpeg',0),(54,1,'2023-09-05 14:38:17','2023-09-05 09:08:17','','schedule-sheet.png','','inherit','open','closed','','schedule-sheet-png','','','2023-09-05 14:38:17','2023-09-05 09:08:17','',0,'https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/schedule-sheet.png',0,'attachment','image/png',0),(55,1,'2023-09-05 14:38:21','2023-09-05 09:08:21','','woman-learning-english-online-2021-08-26-15-34-41-utc-copy.jpg','','inherit','open','closed','','woman-learning-english-online-2021-08-26-15-34-41-utc-copy-jpg','','','2023-09-05 14:38:21','2023-09-05 09:08:21','',0,'https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/woman-learning-english-online-2021-08-26-15-34-41-utc-copy.jpg',0,'attachment','image/jpeg',0),(56,1,'2023-09-05 14:38:22','2023-09-05 09:08:22','','alarm-clock.png','','inherit','open','closed','','alarm-clock-png','','','2023-09-05 14:38:22','2023-09-05 09:08:22','',0,'https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/alarm-clock.png',0,'attachment','image/png',0),(57,1,'2023-09-05 14:38:22','2023-09-05 09:08:22','','cute-elementary-kids-with-books-at-school-2022-12-16-18-15-57-utc2.png','','inherit','open','closed','','cute-elementary-kids-with-books-at-school-2022-12-16-18-15-57-utc2-png','','','2023-09-05 14:38:22','2023-09-05 09:08:22','',0,'https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/cute-elementary-kids-with-books-at-school-2022-12-16-18-15-57-utc2.png',0,'attachment','image/png',0),(58,1,'2023-09-05 14:38:23','2023-09-05 09:08:23','','pp6.jpg','','inherit','open','closed','','pp6-jpg','','','2023-09-05 14:38:23','2023-09-05 09:08:23','',0,'https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/pp6.jpg',0,'attachment','image/jpeg',0),(59,1,'2023-09-05 14:38:26','2023-09-05 09:08:26','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>Contact Us</h1>		\n			<style>/*! elementor - v3.15.0 - 20-08-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=\"183\" height=\"183\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c4.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c4.png 183w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c4-150x150.png 150w\" sizes=\"(max-width: 183px) 100vw, 183px\" />															\n															<img width=\"184\" height=\"181\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c3.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" />															\n															<img width=\"324\" height=\"287\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge.png 324w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge-300x266.png 300w\" sizes=\"(max-width: 324px) 100vw, 324px\" />															\n			<h2>Our Number</h2>		\n			<h4>+6282 4032 567 </h4>		\n			<h2>Email Address</h2>		\n			<h4>example@email.com</h4>		\n			<h2>Our location</h2>		\n			<h4>2443 Oak Ridge Omaha, QA 45065</h4>		\n			<h2>Get in touch</h2>		\n		<p>Nulla nec ligula molestie, pulvinar mi id, vulputate magna. Etiam lobortis velit vitae ante aliquet tincidunt.</p>		\n		<!----------------------------- \n			* controls_data : find the the props passed indie of data attribute\n			* props.SubmitResponseMarkup : contains the markup of error or success message\n			* https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Template_literals\n		--------------------------- -->\n			<style>/*! elementor - v3.15.0 - 20-08-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=London%20Eye%2C%20London%2C%20United%20Kingdom&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"London Eye, London, United Kingdom\"\n					aria-label=\"London Eye, London, United Kingdom\"\n			></iframe>\n			<h2>Join Our Education center Now</h2>		\n															<img width=\"179\" height=\"177\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c2.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" />															\n															<img width=\"183\" height=\"183\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c4.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c4.png 183w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c4-150x150.png 150w\" sizes=\"(max-width: 183px) 100vw, 183px\" />															\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<a href=\"#\">\n						Sign Up Now\n					</a>\n															<img width=\"324\" height=\"287\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge3.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge3.png 324w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge3-300x266.png 300w\" sizes=\"(max-width: 324px) 100vw, 324px\" />															\n															<img width=\"446\" height=\"593\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/cute-elementary-kids-with-books-at-school-2022-12-16-18-15-57-utc-copy.jpg\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/cute-elementary-kids-with-books-at-school-2022-12-16-18-15-57-utc-copy.jpg 446w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/cute-elementary-kids-with-books-at-school-2022-12-16-18-15-57-utc-copy-226x300.jpg 226w\" sizes=\"(max-width: 446px) 100vw, 446px\" />															\n															<img width=\"446\" height=\"593\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/cute-elementary-kids-with-books-at-school-2022-12-16-18-15-57-utc2.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/cute-elementary-kids-with-books-at-school-2022-12-16-18-15-57-utc2.png 446w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/cute-elementary-kids-with-books-at-school-2022-12-16-18-15-57-utc2-226x300.png 226w\" sizes=\"(max-width: 446px) 100vw, 446px\" />','Contact Us','','publish','closed','closed','','contact-us','','','2023-09-05 14:38:28','2023-09-05 09:08:28','',0,'https://sahityaonline.in8.cdn-alpha.com/?elementor_library=contact-us',0,'elementor_library','',0),(60,1,'2023-09-05 14:38:26','2023-09-05 09:08:26','','Diploma.png','','inherit','open','closed','','diploma-png','','','2023-09-05 14:38:26','2023-09-05 09:08:26','',0,'https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/Diploma.png',0,'attachment','image/png',0),(61,1,'2023-09-05 14:38:27','2023-09-05 09:08:27','','elementary-student-learning-in-the-classroom-at-sc-2022-11-16-14-48-06-utc-copy.jpg','','inherit','open','closed','','elementary-student-learning-in-the-classroom-at-sc-2022-11-16-14-48-06-utc-copy-jpg','','','2023-09-05 14:38:27','2023-09-05 09:08:27','',0,'https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/elementary-student-learning-in-the-classroom-at-sc-2022-11-16-14-48-06-utc-copy.jpg',0,'attachment','image/jpeg',0),(62,1,'2023-09-05 14:38:27','2023-09-05 09:08:27','','logoipsum-265.png','','inherit','open','closed','','logoipsum-265-png','','','2023-09-05 14:38:27','2023-09-05 09:08:27','',0,'https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logoipsum-265.png',0,'attachment','image/png',0),(63,1,'2023-09-05 14:38:28','2023-09-05 09:08:28','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>Contact Us</h1>		\n			<style>/*! elementor - v3.15.0 - 20-08-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=\"183\" height=\"183\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c4.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c4.png 183w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c4-150x150.png 150w\" sizes=\"(max-width: 183px) 100vw, 183px\" />															\n															<img width=\"184\" height=\"181\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c3.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" />															\n															<img width=\"324\" height=\"287\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge.png 324w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge-300x266.png 300w\" sizes=\"(max-width: 324px) 100vw, 324px\" />															\n			<h2>Our Number</h2>		\n			<h4>+6282 4032 567 </h4>		\n			<h2>Email Address</h2>		\n			<h4>example@email.com</h4>		\n			<h2>Our location</h2>		\n			<h4>2443 Oak Ridge Omaha, QA 45065</h4>		\n			<h2>Get in touch</h2>		\n		<p>Nulla nec ligula molestie, pulvinar mi id, vulputate magna. Etiam lobortis velit vitae ante aliquet tincidunt.</p>		\n		<!----------------------------- \n			* controls_data : find the the props passed indie of data attribute\n			* props.SubmitResponseMarkup : contains the markup of error or success message\n			* https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Template_literals\n		--------------------------- -->\n			<style>/*! elementor - v3.15.0 - 20-08-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=London%20Eye%2C%20London%2C%20United%20Kingdom&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"London Eye, London, United Kingdom\"\n					aria-label=\"London Eye, London, United Kingdom\"\n			></iframe>\n			<h2>Join Our Education center Now</h2>		\n															<img width=\"179\" height=\"177\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c2.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" />															\n															<img width=\"183\" height=\"183\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c4.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c4.png 183w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c4-150x150.png 150w\" sizes=\"(max-width: 183px) 100vw, 183px\" />															\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<a href=\"#\">\n						Sign Up Now\n					</a>\n															<img width=\"324\" height=\"287\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge3.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge3.png 324w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge3-300x266.png 300w\" sizes=\"(max-width: 324px) 100vw, 324px\" />															\n															<img width=\"446\" height=\"593\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/cute-elementary-kids-with-books-at-school-2022-12-16-18-15-57-utc-copy.jpg\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/cute-elementary-kids-with-books-at-school-2022-12-16-18-15-57-utc-copy.jpg 446w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/cute-elementary-kids-with-books-at-school-2022-12-16-18-15-57-utc-copy-226x300.jpg 226w\" sizes=\"(max-width: 446px) 100vw, 446px\" />															\n															<img width=\"446\" height=\"593\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/cute-elementary-kids-with-books-at-school-2022-12-16-18-15-57-utc2.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/cute-elementary-kids-with-books-at-school-2022-12-16-18-15-57-utc2.png 446w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/cute-elementary-kids-with-books-at-school-2022-12-16-18-15-57-utc2-226x300.png 226w\" sizes=\"(max-width: 446px) 100vw, 446px\" />','Contact Us','','inherit','closed','closed','','59-revision-v1','','','2023-09-05 14:38:28','2023-09-05 09:08:28','',59,'https://sahityaonline.in8.cdn-alpha.com/?p=63',0,'revision','',0),(64,1,'2023-09-05 14:38:31','2023-09-05 09:08:31','','Male-Teacher.png','','inherit','open','closed','','male-teacher-png','','','2023-09-05 14:38:31','2023-09-05 09:08:31','',0,'https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/Male-Teacher.png',0,'attachment','image/png',0),(65,1,'2023-09-05 14:38:31','2023-09-05 09:08:31','','3-copy.jpg','','inherit','open','closed','','3-copy-jpg','','','2023-09-05 14:38:31','2023-09-05 09:08:31','',0,'https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/3-copy.jpg',0,'attachment','image/jpeg',0),(66,1,'2023-09-05 14:38:32','2023-09-05 09:08:32','','logoipsum-264.png','','inherit','open','closed','','logoipsum-264-png','','','2023-09-05 14:38:32','2023-09-05 09:08:32','',0,'https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logoipsum-264.png',0,'attachment','image/png',0),(67,1,'2023-09-05 14:38:35','2023-09-05 09:08:35','','Trophy.png','','inherit','open','closed','','trophy-png','','','2023-09-05 14:38:35','2023-09-05 09:08:35','',0,'https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/Trophy.png',0,'attachment','image/png',0),(68,1,'2023-09-05 14:38:36','2023-09-05 09:08:36','','difficult-exam-in-elementary-school-2021-09-24-02-55-23-utc-copy.jpg','','inherit','open','closed','','difficult-exam-in-elementary-school-2021-09-24-02-55-23-utc-copy-jpg','','','2023-09-05 14:38:36','2023-09-05 09:08:36','',0,'https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/difficult-exam-in-elementary-school-2021-09-24-02-55-23-utc-copy.jpg',0,'attachment','image/jpeg',0),(69,1,'2023-09-05 14:38:36','2023-09-05 09:08:36','','logoipsum-262.png','','inherit','open','closed','','logoipsum-262-png','','','2023-09-05 14:38:36','2023-09-05 09:08:36','',0,'https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logoipsum-262.png',0,'attachment','image/png',0),(70,1,'2023-09-05 14:38:38','2023-09-05 09:08:38','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>Pricing</h1>		\n			<style>/*! elementor - v3.15.0 - 20-08-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=\"183\" height=\"183\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c4.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c4.png 183w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c4-150x150.png 150w\" sizes=\"(max-width: 183px) 100vw, 183px\" />															\n															<img width=\"184\" height=\"181\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c3.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" />															\n															<img width=\"324\" height=\"287\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge.png 324w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge-300x266.png 300w\" sizes=\"(max-width: 324px) 100vw, 324px\" />															\n			<h2>Join Our Membership Program</h2>		\n		<p>Nullam non nisi ut lorem pulvinar hendrerit. Nam sodales in eros eu mollis. Duis rhoncus suscipit purus, eu porta urna aliquet sed. In lacinia massa</p>		\n			<h3>Basic</h3>		\n			<h2>$20.99</h2>		\n			<h3>/ Month</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n			<link rel=\"stylesheet\" href=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										Lorem ipsum dolor sit amet\n									</li>\n								<li>\n										Proin at elit ac lacus molestie\n									</li>\n								<li>\n										Nullam non nisi ut lorem\n									</li>\n								<li>\n										Sed eleifend commodo nibh\n									</li>\n						</ul>\n			<a href=\"#\">\n						Join Now\n					</a>\n			<h3>Standard</h3>		\n			<h2>$45.99</h2>		\n			<h3>/ Month</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n					<ul>\n							<li>\n										Lorem ipsum dolor sit amet\n									</li>\n								<li>\n										Proin at elit ac lacus molestie\n									</li>\n								<li>\n										Nullam non nisi ut lorem\n									</li>\n								<li>\n										Sed eleifend commodo nibh\n									</li>\n						</ul>\n			<a href=\"#\">\n						Join Now\n					</a>\n			<h3>Premium</h3>		\n			<h2>$60.99</h2>		\n			<h3>/ Month</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n					<ul>\n							<li>\n										Lorem ipsum dolor sit amet\n									</li>\n								<li>\n										Proin at elit ac lacus molestie\n									</li>\n								<li>\n										Nullam non nisi ut lorem\n									</li>\n								<li>\n										Sed eleifend commodo nibh\n									</li>\n						</ul>\n			<a href=\"#\">\n						Join Now\n					</a>\n			<h2>Join Our Education center Now</h2>		\n															<img width=\"179\" height=\"177\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c2.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" />															\n															<img width=\"183\" height=\"183\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c4.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c4.png 183w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c4-150x150.png 150w\" sizes=\"(max-width: 183px) 100vw, 183px\" />															\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<a href=\"#\">\n						Sign Up Now\n					</a>\n															<img width=\"324\" height=\"287\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge3.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge3.png 324w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge3-300x266.png 300w\" sizes=\"(max-width: 324px) 100vw, 324px\" />															\n															<img width=\"446\" height=\"593\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/cute-elementary-kids-with-books-at-school-2022-12-16-18-15-57-utc-copy.jpg\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/cute-elementary-kids-with-books-at-school-2022-12-16-18-15-57-utc-copy.jpg 446w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/cute-elementary-kids-with-books-at-school-2022-12-16-18-15-57-utc-copy-226x300.jpg 226w\" sizes=\"(max-width: 446px) 100vw, 446px\" />															\n															<img width=\"446\" height=\"593\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/cute-elementary-kids-with-books-at-school-2022-12-16-18-15-57-utc2.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/cute-elementary-kids-with-books-at-school-2022-12-16-18-15-57-utc2.png 446w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/cute-elementary-kids-with-books-at-school-2022-12-16-18-15-57-utc2-226x300.png 226w\" sizes=\"(max-width: 446px) 100vw, 446px\" />','Pricing','','publish','closed','closed','','pricing','','','2023-09-05 14:38:39','2023-09-05 09:08:39','',0,'https://sahityaonline.in8.cdn-alpha.com/?elementor_library=pricing',0,'elementor_library','',0),(71,1,'2023-09-05 14:38:39','2023-09-05 09:08:39','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>Pricing</h1>		\n			<style>/*! elementor - v3.15.0 - 20-08-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=\"183\" height=\"183\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c4.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c4.png 183w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c4-150x150.png 150w\" sizes=\"(max-width: 183px) 100vw, 183px\" />															\n															<img width=\"184\" height=\"181\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c3.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" />															\n															<img width=\"324\" height=\"287\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge.png 324w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge-300x266.png 300w\" sizes=\"(max-width: 324px) 100vw, 324px\" />															\n			<h2>Join Our Membership Program</h2>		\n		<p>Nullam non nisi ut lorem pulvinar hendrerit. Nam sodales in eros eu mollis. Duis rhoncus suscipit purus, eu porta urna aliquet sed. In lacinia massa</p>		\n			<h3>Basic</h3>		\n			<h2>$20.99</h2>		\n			<h3>/ Month</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n			<link rel=\"stylesheet\" href=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										Lorem ipsum dolor sit amet\n									</li>\n								<li>\n										Proin at elit ac lacus molestie\n									</li>\n								<li>\n										Nullam non nisi ut lorem\n									</li>\n								<li>\n										Sed eleifend commodo nibh\n									</li>\n						</ul>\n			<a href=\"#\">\n						Join Now\n					</a>\n			<h3>Standard</h3>		\n			<h2>$45.99</h2>		\n			<h3>/ Month</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n					<ul>\n							<li>\n										Lorem ipsum dolor sit amet\n									</li>\n								<li>\n										Proin at elit ac lacus molestie\n									</li>\n								<li>\n										Nullam non nisi ut lorem\n									</li>\n								<li>\n										Sed eleifend commodo nibh\n									</li>\n						</ul>\n			<a href=\"#\">\n						Join Now\n					</a>\n			<h3>Premium</h3>		\n			<h2>$60.99</h2>		\n			<h3>/ Month</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n					<ul>\n							<li>\n										Lorem ipsum dolor sit amet\n									</li>\n								<li>\n										Proin at elit ac lacus molestie\n									</li>\n								<li>\n										Nullam non nisi ut lorem\n									</li>\n								<li>\n										Sed eleifend commodo nibh\n									</li>\n						</ul>\n			<a href=\"#\">\n						Join Now\n					</a>\n			<h2>Join Our Education center Now</h2>		\n															<img width=\"179\" height=\"177\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c2.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" />															\n															<img width=\"183\" height=\"183\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c4.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c4.png 183w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c4-150x150.png 150w\" sizes=\"(max-width: 183px) 100vw, 183px\" />															\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<a href=\"#\">\n						Sign Up Now\n					</a>\n															<img width=\"324\" height=\"287\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge3.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge3.png 324w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge3-300x266.png 300w\" sizes=\"(max-width: 324px) 100vw, 324px\" />															\n															<img width=\"446\" height=\"593\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/cute-elementary-kids-with-books-at-school-2022-12-16-18-15-57-utc-copy.jpg\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/cute-elementary-kids-with-books-at-school-2022-12-16-18-15-57-utc-copy.jpg 446w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/cute-elementary-kids-with-books-at-school-2022-12-16-18-15-57-utc-copy-226x300.jpg 226w\" sizes=\"(max-width: 446px) 100vw, 446px\" />															\n															<img width=\"446\" height=\"593\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/cute-elementary-kids-with-books-at-school-2022-12-16-18-15-57-utc2.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/cute-elementary-kids-with-books-at-school-2022-12-16-18-15-57-utc2.png 446w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/cute-elementary-kids-with-books-at-school-2022-12-16-18-15-57-utc2-226x300.png 226w\" sizes=\"(max-width: 446px) 100vw, 446px\" />','Pricing','','inherit','closed','closed','','70-revision-v1','','','2023-09-05 14:38:39','2023-09-05 09:08:39','',70,'https://sahityaonline.in8.cdn-alpha.com/?p=71',0,'revision','',0),(72,1,'2023-09-05 14:38:39','2023-09-05 09:08:39','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>Blog</h1>		\n			<style>/*! elementor - v3.15.0 - 20-08-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=\"183\" height=\"183\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c4.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c4.png 183w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c4-150x150.png 150w\" sizes=\"(max-width: 183px) 100vw, 183px\" />															\n															<img width=\"184\" height=\"181\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c3.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" />															\n															<img width=\"324\" height=\"287\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge.png 324w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge-300x266.png 300w\" sizes=\"(max-width: 324px) 100vw, 324px\" />															\n			<h2>Articles & Stories</h2>		\n															<img width=\"184\" height=\"181\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c3.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" />															\n													<!-- .elementskit-entry-header END -->\n																					<h2>\n					<a href=\"https://sahityaonline.in8.cdn-alpha.com/hello-world/\">\n						Hello world!					</a>\n				</h2>\n																																										<p>Welcome to WordPress. This is your first post. Edit or delete it, then start writing!</p>\n                                                                            <a href=\"https://sahityaonline.in8.cdn-alpha.com/hello-world/\" >\n                                                                                    read more                                         </a>\n                                                    <!-- .elementskit-post-body END -->\n															<img width=\"195\" height=\"196\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c1.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c1.png 195w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c1-150x150.png 150w\" sizes=\"(max-width: 195px) 100vw, 195px\" />															\n			<h2>Join Our Education center Now</h2>		\n															<img width=\"179\" height=\"177\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c2.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" />															\n															<img width=\"183\" height=\"183\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c4.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c4.png 183w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c4-150x150.png 150w\" sizes=\"(max-width: 183px) 100vw, 183px\" />															\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<a href=\"#\">\n						Sign Up Now\n					</a>\n															<img width=\"324\" height=\"287\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge3.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge3.png 324w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge3-300x266.png 300w\" sizes=\"(max-width: 324px) 100vw, 324px\" />															\n															<img width=\"446\" height=\"593\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/cute-elementary-kids-with-books-at-school-2022-12-16-18-15-57-utc-copy.jpg\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/cute-elementary-kids-with-books-at-school-2022-12-16-18-15-57-utc-copy.jpg 446w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/cute-elementary-kids-with-books-at-school-2022-12-16-18-15-57-utc-copy-226x300.jpg 226w\" sizes=\"(max-width: 446px) 100vw, 446px\" />															\n															<img width=\"446\" height=\"593\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/cute-elementary-kids-with-books-at-school-2022-12-16-18-15-57-utc2.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/cute-elementary-kids-with-books-at-school-2022-12-16-18-15-57-utc2.png 446w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/cute-elementary-kids-with-books-at-school-2022-12-16-18-15-57-utc2-226x300.png 226w\" sizes=\"(max-width: 446px) 100vw, 446px\" />','Blog','','publish','closed','closed','','blog','','','2023-09-05 14:38:40','2023-09-05 09:08:40','',0,'https://sahityaonline.in8.cdn-alpha.com/?elementor_library=blog',0,'elementor_library','',0),(73,1,'2023-09-05 14:38:40','2023-09-05 09:08:40','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>Blog</h1>		\n			<style>/*! elementor - v3.15.0 - 20-08-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=\"183\" height=\"183\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c4.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c4.png 183w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c4-150x150.png 150w\" sizes=\"(max-width: 183px) 100vw, 183px\" />															\n															<img width=\"184\" height=\"181\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c3.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" />															\n															<img width=\"324\" height=\"287\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge.png 324w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge-300x266.png 300w\" sizes=\"(max-width: 324px) 100vw, 324px\" />															\n			<h2>Articles & Stories</h2>		\n															<img width=\"184\" height=\"181\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c3.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" />															\n													<!-- .elementskit-entry-header END -->\n																					<h2>\n					<a href=\"https://sahityaonline.in8.cdn-alpha.com/hello-world/\">\n						Hello world!					</a>\n				</h2>\n																																										<p>Welcome to WordPress. This is your first post. Edit or delete it, then start writing!</p>\n                                                                            <a href=\"https://sahityaonline.in8.cdn-alpha.com/hello-world/\" >\n                                                                                    read more                                         </a>\n                                                    <!-- .elementskit-post-body END -->\n															<img width=\"195\" height=\"196\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c1.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c1.png 195w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c1-150x150.png 150w\" sizes=\"(max-width: 195px) 100vw, 195px\" />															\n			<h2>Join Our Education center Now</h2>		\n															<img width=\"179\" height=\"177\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c2.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" />															\n															<img width=\"183\" height=\"183\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c4.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c4.png 183w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c4-150x150.png 150w\" sizes=\"(max-width: 183px) 100vw, 183px\" />															\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<a href=\"#\">\n						Sign Up Now\n					</a>\n															<img width=\"324\" height=\"287\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge3.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge3.png 324w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge3-300x266.png 300w\" sizes=\"(max-width: 324px) 100vw, 324px\" />															\n															<img width=\"446\" height=\"593\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/cute-elementary-kids-with-books-at-school-2022-12-16-18-15-57-utc-copy.jpg\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/cute-elementary-kids-with-books-at-school-2022-12-16-18-15-57-utc-copy.jpg 446w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/cute-elementary-kids-with-books-at-school-2022-12-16-18-15-57-utc-copy-226x300.jpg 226w\" sizes=\"(max-width: 446px) 100vw, 446px\" />															\n															<img width=\"446\" height=\"593\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/cute-elementary-kids-with-books-at-school-2022-12-16-18-15-57-utc2.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/cute-elementary-kids-with-books-at-school-2022-12-16-18-15-57-utc2.png 446w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/cute-elementary-kids-with-books-at-school-2022-12-16-18-15-57-utc2-226x300.png 226w\" sizes=\"(max-width: 446px) 100vw, 446px\" />','Blog','','inherit','closed','closed','','72-revision-v1','','','2023-09-05 14:38:40','2023-09-05 09:08:40','',72,'https://sahityaonline.in8.cdn-alpha.com/?p=73',0,'revision','',0),(74,1,'2023-09-05 14:38:42','2023-09-05 09:08:42','','logoipsum-261.png','','inherit','open','closed','','logoipsum-261-png','','','2023-09-05 14:38:42','2023-09-05 09:08:42','',0,'https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logoipsum-261.png',0,'attachment','image/png',0),(75,1,'2023-09-05 14:38:43','2023-09-05 09:08:43','','logoipsum-261.png','','inherit','open','closed','','logoipsum-261-png-2','','','2023-09-05 14:38:43','2023-09-05 09:08:43','',0,'https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logoipsum-261-1.png',0,'attachment','image/png',0),(76,1,'2023-09-05 14:38:46','2023-09-05 09:08:46','','logoipsum-259.png','','inherit','open','closed','','logoipsum-259-png','','','2023-09-05 14:38:46','2023-09-05 09:08:46','',0,'https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logoipsum-259.png',0,'attachment','image/png',0),(77,1,'2023-09-05 14:38:47','2023-09-05 09:08:47','','logoipsum-259.png','','inherit','open','closed','','logoipsum-259-png-2','','','2023-09-05 14:38:47','2023-09-05 09:08:47','',0,'https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logoipsum-259-1.png',0,'attachment','image/png',0),(78,1,'2023-09-05 14:38:48','2023-09-05 09:08:48','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>Class-Detail</h1>		\n			<style>/*! elementor - v3.15.0 - 20-08-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=\"183\" height=\"183\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c4.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c4.png 183w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c4-150x150.png 150w\" sizes=\"(max-width: 183px) 100vw, 183px\" />															\n															<img width=\"184\" height=\"181\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c3.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" />															\n															<img width=\"324\" height=\"287\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge.png 324w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge-300x266.png 300w\" sizes=\"(max-width: 324px) 100vw, 324px\" />															\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>		\n															<img width=\"184\" height=\"181\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c3.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" />															\n			<h2>Mathematic  Class</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam vitae iaculis lorem, non finibus arcu. Nullam sed ligula sapien. Aliquam vulputate justo sem, nec tincidunt odio gravida vitae. Nunc porta finibus pellentesque.</p><p>Vestibulum ipsum elit, condimentum vitae dapibus vel, interdum in urna. Aliquam semper vitae lacus eu elementum. </p><p>Etiam cursus commodo ante vitae faucibus. Aliquam faucibus, mauris ut aliquet dignissim, turpis ipsum efficitur dui, quis efficitur tellus magna non metus. Fusce tempus justo nisi, non varius justo aliquet quis. Phasellus interdum lectus mattis mauris suscipit ultrices. Phasellus ac vulputate lectus. Nunc sit amet dapibus odio, nec aliquam sem. Etiam pretium mollis nulla, ac ultrices leo tincidunt vitae.</p>		\n			<h5>Group 1 Schedule </h5>		\n			<link rel=\"stylesheet\" href=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										Friday,       11am-6pm\n									</li>\n								<li>\n										Saturday,  10am-7pm\n									</li>\n								<li>\n										Sunday,   11am-5pm\n									</li>\n						</ul>\n			<h5>Group 2 Schedule </h5>		\n					<ul>\n							<li>\n										Monday,       11am-6pm\n									</li>\n								<li>\n										Tuesday,  10am-7pm\n									</li>\n								<li>\n										Wednesday,   11am-5pm\n									</li>\n						</ul>\n															<img width=\"800\" height=\"800\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/pp3.jpg\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/pp3.jpg 800w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/pp3-300x300.jpg 300w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/pp3-150x150.jpg 150w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/pp3-768x768.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h5>Peter Wong</h5>		\n			<h5>Math Teacher</h5>		\n			<h2>Join Our Education center Now</h2>		\n															<img width=\"179\" height=\"177\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c2.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" />															\n															<img width=\"183\" height=\"183\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c4.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c4.png 183w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c4-150x150.png 150w\" sizes=\"(max-width: 183px) 100vw, 183px\" />															\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<a href=\"#\">\n						Sign Up Now\n					</a>\n															<img width=\"324\" height=\"287\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge3.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge3.png 324w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge3-300x266.png 300w\" sizes=\"(max-width: 324px) 100vw, 324px\" />															\n															<img width=\"446\" height=\"593\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/cute-elementary-kids-with-books-at-school-2022-12-16-18-15-57-utc-copy.jpg\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/cute-elementary-kids-with-books-at-school-2022-12-16-18-15-57-utc-copy.jpg 446w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/cute-elementary-kids-with-books-at-school-2022-12-16-18-15-57-utc-copy-226x300.jpg 226w\" sizes=\"(max-width: 446px) 100vw, 446px\" />															\n															<img width=\"446\" height=\"593\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/cute-elementary-kids-with-books-at-school-2022-12-16-18-15-57-utc2.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/cute-elementary-kids-with-books-at-school-2022-12-16-18-15-57-utc2.png 446w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/cute-elementary-kids-with-books-at-school-2022-12-16-18-15-57-utc2-226x300.png 226w\" sizes=\"(max-width: 446px) 100vw, 446px\" />','Class-Detail','','publish','closed','closed','','class-detail','','','2023-09-05 14:38:49','2023-09-05 09:08:49','',0,'https://sahityaonline.in8.cdn-alpha.com/?elementor_library=class-detail',0,'elementor_library','',0),(79,1,'2023-09-05 14:38:49','2023-09-05 09:08:49','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>Class-Detail</h1>		\n			<style>/*! elementor - v3.15.0 - 20-08-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=\"183\" height=\"183\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c4.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c4.png 183w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c4-150x150.png 150w\" sizes=\"(max-width: 183px) 100vw, 183px\" />															\n															<img width=\"184\" height=\"181\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c3.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" />															\n															<img width=\"324\" height=\"287\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge.png 324w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge-300x266.png 300w\" sizes=\"(max-width: 324px) 100vw, 324px\" />															\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>		\n															<img width=\"184\" height=\"181\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c3.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" />															\n			<h2>Mathematic  Class</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam vitae iaculis lorem, non finibus arcu. Nullam sed ligula sapien. Aliquam vulputate justo sem, nec tincidunt odio gravida vitae. Nunc porta finibus pellentesque.</p><p>Vestibulum ipsum elit, condimentum vitae dapibus vel, interdum in urna. Aliquam semper vitae lacus eu elementum. </p><p>Etiam cursus commodo ante vitae faucibus. Aliquam faucibus, mauris ut aliquet dignissim, turpis ipsum efficitur dui, quis efficitur tellus magna non metus. Fusce tempus justo nisi, non varius justo aliquet quis. Phasellus interdum lectus mattis mauris suscipit ultrices. Phasellus ac vulputate lectus. Nunc sit amet dapibus odio, nec aliquam sem. Etiam pretium mollis nulla, ac ultrices leo tincidunt vitae.</p>		\n			<h5>Group 1 Schedule </h5>		\n			<link rel=\"stylesheet\" href=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										Friday,       11am-6pm\n									</li>\n								<li>\n										Saturday,  10am-7pm\n									</li>\n								<li>\n										Sunday,   11am-5pm\n									</li>\n						</ul>\n			<h5>Group 2 Schedule </h5>		\n					<ul>\n							<li>\n										Monday,       11am-6pm\n									</li>\n								<li>\n										Tuesday,  10am-7pm\n									</li>\n								<li>\n										Wednesday,   11am-5pm\n									</li>\n						</ul>\n															<img width=\"800\" height=\"800\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/pp3.jpg\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/pp3.jpg 800w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/pp3-300x300.jpg 300w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/pp3-150x150.jpg 150w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/pp3-768x768.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h5>Peter Wong</h5>		\n			<h5>Math Teacher</h5>		\n			<h2>Join Our Education center Now</h2>		\n															<img width=\"179\" height=\"177\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c2.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" />															\n															<img width=\"183\" height=\"183\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c4.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c4.png 183w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c4-150x150.png 150w\" sizes=\"(max-width: 183px) 100vw, 183px\" />															\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<a href=\"#\">\n						Sign Up Now\n					</a>\n															<img width=\"324\" height=\"287\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge3.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge3.png 324w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge3-300x266.png 300w\" sizes=\"(max-width: 324px) 100vw, 324px\" />															\n															<img width=\"446\" height=\"593\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/cute-elementary-kids-with-books-at-school-2022-12-16-18-15-57-utc-copy.jpg\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/cute-elementary-kids-with-books-at-school-2022-12-16-18-15-57-utc-copy.jpg 446w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/cute-elementary-kids-with-books-at-school-2022-12-16-18-15-57-utc-copy-226x300.jpg 226w\" sizes=\"(max-width: 446px) 100vw, 446px\" />															\n															<img width=\"446\" height=\"593\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/cute-elementary-kids-with-books-at-school-2022-12-16-18-15-57-utc2.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/cute-elementary-kids-with-books-at-school-2022-12-16-18-15-57-utc2.png 446w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/cute-elementary-kids-with-books-at-school-2022-12-16-18-15-57-utc2-226x300.png 226w\" sizes=\"(max-width: 446px) 100vw, 446px\" />','Class-Detail','','inherit','closed','closed','','78-revision-v1','','','2023-09-05 14:38:49','2023-09-05 09:08:49','',78,'https://sahityaonline.in8.cdn-alpha.com/?p=79',0,'revision','',0),(80,1,'2023-09-05 14:38:50','2023-09-05 09:08:50','','logoipsum-254.png','','inherit','open','closed','','logoipsum-254-png','','','2023-09-05 14:38:50','2023-09-05 09:08:50','',0,'https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logoipsum-254.png',0,'attachment','image/png',0),(81,1,'2023-09-05 14:38:51','2023-09-05 09:08:51','','logoipsum-254.png','','inherit','open','closed','','logoipsum-254-png-2','','','2023-09-05 14:38:51','2023-09-05 09:08:51','',0,'https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logoipsum-254-1.png',0,'attachment','image/png',0),(82,1,'2023-09-05 14:39:00','2023-09-05 09:09:00','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>Service</h1>		\n			<style>/*! elementor - v3.15.0 - 20-08-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=\"183\" height=\"183\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c4.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c4.png 183w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c4-150x150.png 150w\" sizes=\"(max-width: 183px) 100vw, 183px\" />															\n															<img width=\"184\" height=\"181\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c3.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" />															\n															<img width=\"324\" height=\"287\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge.png 324w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge-300x266.png 300w\" sizes=\"(max-width: 324px) 100vw, 324px\" />															\n			<h2>Our Programs for excellence</h2>		\n															<img width=\"195\" height=\"196\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c1.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c1.png 195w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c1-150x150.png 150w\" sizes=\"(max-width: 195px) 100vw, 195px\" />															\n															<img width=\"324\" height=\"287\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge2.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge2.png 324w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge2-300x266.png 300w\" sizes=\"(max-width: 324px) 100vw, 324px\" />															\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Mauris at lacus semper, fermentum mi sed, rutrum nibh. Sed gravida elit ligula, sit amet venenatis diam hendrerit iaculis.</p>		\n															<img width=\"179\" height=\"177\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c2.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" />															\n			<a href=\"#\">\n						Discover More\n					</a>\n															<img width=\"255\" height=\"255\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/grade.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/grade.png 255w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/grade-150x150.png 150w\" sizes=\"(max-width: 255px) 100vw, 255px\" />															\n			<h5>Grade Boost</h5>		\n		<p>Lorem ipsum dolor sit amet.</p>		\n															<img width=\"255\" height=\"255\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/chart.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/chart.png 255w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/chart-150x150.png 150w\" sizes=\"(max-width: 255px) 100vw, 255px\" />															\n			<h5>Skill Evaluation</h5>		\n		<p>Lorem ipsum dolor sit amet.</p>		\n															<img width=\"255\" height=\"255\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/test-exam-sheet.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/test-exam-sheet.png 255w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/test-exam-sheet-150x150.png 150w\" sizes=\"(max-width: 255px) 100vw, 255px\" />															\n			<h5>Mock Exam</h5>		\n		<p>Lorem ipsum dolor sit amet.</p>		\n															<img width=\"255\" height=\"255\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/schedule-sheet.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/schedule-sheet.png 255w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/schedule-sheet-150x150.png 150w\" sizes=\"(max-width: 255px) 100vw, 255px\" />															\n			<h5>Weekend Class</h5>		\n		<p>Lorem ipsum dolor sit amet.</p>		\n			<h2>Why Choose Us</h2>		\n															<img width=\"201\" height=\"200\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/alarm-clock.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/alarm-clock.png 201w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/alarm-clock-150x150.png 150w\" sizes=\"(max-width: 201px) 100vw, 201px\" />															\n			<h5>Timely Schedule</h5>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec.</p>		\n															<img width=\"201\" height=\"201\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/Diploma.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/Diploma.png 201w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/Diploma-150x150.png 150w\" sizes=\"(max-width: 201px) 100vw, 201px\" />															\n			<h5>Course Certication</h5>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec.</p>		\n															<img width=\"201\" height=\"201\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/Male-Teacher.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/Male-Teacher.png 201w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/Male-Teacher-150x150.png 150w\" sizes=\"(max-width: 201px) 100vw, 201px\" />															\n			<h5>Certified Teacher</h5>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec.</p>		\n															<img width=\"201\" height=\"201\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/Trophy.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/Trophy.png 201w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/Trophy-150x150.png 150w\" sizes=\"(max-width: 201px) 100vw, 201px\" />															\n			<h5>High Prestige</h5>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec.</p>		\n			<h2>Join Our Education center Now</h2>		\n															<img width=\"179\" height=\"177\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c2.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" />															\n															<img width=\"183\" height=\"183\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c4.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c4.png 183w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c4-150x150.png 150w\" sizes=\"(max-width: 183px) 100vw, 183px\" />															\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<a href=\"#\">\n						Sign Up Now\n					</a>\n															<img width=\"324\" height=\"287\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge3.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge3.png 324w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge3-300x266.png 300w\" sizes=\"(max-width: 324px) 100vw, 324px\" />															\n															<img width=\"446\" height=\"593\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/cute-elementary-kids-with-books-at-school-2022-12-16-18-15-57-utc-copy.jpg\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/cute-elementary-kids-with-books-at-school-2022-12-16-18-15-57-utc-copy.jpg 446w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/cute-elementary-kids-with-books-at-school-2022-12-16-18-15-57-utc-copy-226x300.jpg 226w\" sizes=\"(max-width: 446px) 100vw, 446px\" />															\n															<img width=\"446\" height=\"593\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/cute-elementary-kids-with-books-at-school-2022-12-16-18-15-57-utc2.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/cute-elementary-kids-with-books-at-school-2022-12-16-18-15-57-utc2.png 446w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/cute-elementary-kids-with-books-at-school-2022-12-16-18-15-57-utc2-226x300.png 226w\" sizes=\"(max-width: 446px) 100vw, 446px\" />','Service','','publish','closed','closed','','service','','','2023-09-05 14:39:01','2023-09-05 09:09:01','',0,'https://sahityaonline.in8.cdn-alpha.com/?elementor_library=service',0,'elementor_library','',0),(83,1,'2023-09-05 14:39:01','2023-09-05 09:09:01','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>Service</h1>		\n			<style>/*! elementor - v3.15.0 - 20-08-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=\"183\" height=\"183\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c4.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c4.png 183w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c4-150x150.png 150w\" sizes=\"(max-width: 183px) 100vw, 183px\" />															\n															<img width=\"184\" height=\"181\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c3.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" />															\n															<img width=\"324\" height=\"287\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge.png 324w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge-300x266.png 300w\" sizes=\"(max-width: 324px) 100vw, 324px\" />															\n			<h2>Our Programs for excellence</h2>		\n															<img width=\"195\" height=\"196\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c1.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c1.png 195w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c1-150x150.png 150w\" sizes=\"(max-width: 195px) 100vw, 195px\" />															\n															<img width=\"324\" height=\"287\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge2.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge2.png 324w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge2-300x266.png 300w\" sizes=\"(max-width: 324px) 100vw, 324px\" />															\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Mauris at lacus semper, fermentum mi sed, rutrum nibh. Sed gravida elit ligula, sit amet venenatis diam hendrerit iaculis.</p>		\n															<img width=\"179\" height=\"177\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c2.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" />															\n			<a href=\"#\">\n						Discover More\n					</a>\n															<img width=\"255\" height=\"255\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/grade.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/grade.png 255w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/grade-150x150.png 150w\" sizes=\"(max-width: 255px) 100vw, 255px\" />															\n			<h5>Grade Boost</h5>		\n		<p>Lorem ipsum dolor sit amet.</p>		\n															<img width=\"255\" height=\"255\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/chart.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/chart.png 255w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/chart-150x150.png 150w\" sizes=\"(max-width: 255px) 100vw, 255px\" />															\n			<h5>Skill Evaluation</h5>		\n		<p>Lorem ipsum dolor sit amet.</p>		\n															<img width=\"255\" height=\"255\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/test-exam-sheet.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/test-exam-sheet.png 255w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/test-exam-sheet-150x150.png 150w\" sizes=\"(max-width: 255px) 100vw, 255px\" />															\n			<h5>Mock Exam</h5>		\n		<p>Lorem ipsum dolor sit amet.</p>		\n															<img width=\"255\" height=\"255\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/schedule-sheet.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/schedule-sheet.png 255w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/schedule-sheet-150x150.png 150w\" sizes=\"(max-width: 255px) 100vw, 255px\" />															\n			<h5>Weekend Class</h5>		\n		<p>Lorem ipsum dolor sit amet.</p>		\n			<h2>Why Choose Us</h2>		\n															<img width=\"201\" height=\"200\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/alarm-clock.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/alarm-clock.png 201w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/alarm-clock-150x150.png 150w\" sizes=\"(max-width: 201px) 100vw, 201px\" />															\n			<h5>Timely Schedule</h5>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec.</p>		\n															<img width=\"201\" height=\"201\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/Diploma.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/Diploma.png 201w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/Diploma-150x150.png 150w\" sizes=\"(max-width: 201px) 100vw, 201px\" />															\n			<h5>Course Certication</h5>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec.</p>		\n															<img width=\"201\" height=\"201\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/Male-Teacher.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/Male-Teacher.png 201w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/Male-Teacher-150x150.png 150w\" sizes=\"(max-width: 201px) 100vw, 201px\" />															\n			<h5>Certified Teacher</h5>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec.</p>		\n															<img width=\"201\" height=\"201\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/Trophy.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/Trophy.png 201w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/Trophy-150x150.png 150w\" sizes=\"(max-width: 201px) 100vw, 201px\" />															\n			<h5>High Prestige</h5>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec.</p>		\n			<h2>Join Our Education center Now</h2>		\n															<img width=\"179\" height=\"177\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c2.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" />															\n															<img width=\"183\" height=\"183\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c4.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c4.png 183w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c4-150x150.png 150w\" sizes=\"(max-width: 183px) 100vw, 183px\" />															\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<a href=\"#\">\n						Sign Up Now\n					</a>\n															<img width=\"324\" height=\"287\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge3.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge3.png 324w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge3-300x266.png 300w\" sizes=\"(max-width: 324px) 100vw, 324px\" />															\n															<img width=\"446\" height=\"593\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/cute-elementary-kids-with-books-at-school-2022-12-16-18-15-57-utc-copy.jpg\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/cute-elementary-kids-with-books-at-school-2022-12-16-18-15-57-utc-copy.jpg 446w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/cute-elementary-kids-with-books-at-school-2022-12-16-18-15-57-utc-copy-226x300.jpg 226w\" sizes=\"(max-width: 446px) 100vw, 446px\" />															\n															<img width=\"446\" height=\"593\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/cute-elementary-kids-with-books-at-school-2022-12-16-18-15-57-utc2.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/cute-elementary-kids-with-books-at-school-2022-12-16-18-15-57-utc2.png 446w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/cute-elementary-kids-with-books-at-school-2022-12-16-18-15-57-utc2-226x300.png 226w\" sizes=\"(max-width: 446px) 100vw, 446px\" />','Service','','inherit','closed','closed','','82-revision-v1','','','2023-09-05 14:39:01','2023-09-05 09:09:01','',82,'https://sahityaonline.in8.cdn-alpha.com/?p=83',0,'revision','',0),(84,1,'2023-09-05 14:39:09','2023-09-05 09:09:09','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>About Us</h1>		\n			<style>/*! elementor - v3.15.0 - 20-08-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=\"183\" height=\"183\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c4.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c4.png 183w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c4-150x150.png 150w\" sizes=\"(max-width: 183px) 100vw, 183px\" />															\n															<img width=\"184\" height=\"181\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c3.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" />															\n															<img width=\"324\" height=\"287\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge.png 324w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge-300x266.png 300w\" sizes=\"(max-width: 324px) 100vw, 324px\" />															\n															<img width=\"600\" height=\"748\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/aged-teacher-2021-09-24-03-26-41-utc.jpg\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/aged-teacher-2021-09-24-03-26-41-utc.jpg 600w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/aged-teacher-2021-09-24-03-26-41-utc-241x300.jpg 241w\" sizes=\"(max-width: 600px) 100vw, 600px\" />															\n															<img width=\"600\" height=\"748\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/aged-teacher-2021-09-24-03-26-41-utc-2.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/aged-teacher-2021-09-24-03-26-41-utc-2.png 600w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/aged-teacher-2021-09-24-03-26-41-utc-2-241x300.png 241w\" sizes=\"(max-width: 600px) 100vw, 600px\" />															\n			<h2>Preparing Our Children’s Bright Future</h2>		\n															<img width=\"324\" height=\"287\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge2.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge2.png 324w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge2-300x266.png 300w\" sizes=\"(max-width: 324px) 100vw, 324px\" />															\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec ultrices purus nec sollicitudin eleifend. In hac habitasse platea dictumst.</p>		\n			<link rel=\"stylesheet\" href=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<h3>\n						Grade Improvement					\n				</h3>\n									<p>\n						 Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n				<h3>\n						Exam Preparation					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing.					</p>\n				<h3>\n						Social Development					\n				</h3>\n									<p>\n						Donec et massa sit amet augue laoreet venenatis id et urna.					</p>\n															<img width=\"195\" height=\"196\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c1.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c1.png 195w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c1-150x150.png 150w\" sizes=\"(max-width: 195px) 100vw, 195px\" />															\n			<h2>Our vision is every child is safe, inspired, challenged, empowered.</h2>		\n															<img width=\"324\" height=\"287\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge.png 324w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge-300x266.png 300w\" sizes=\"(max-width: 324px) 100vw, 324px\" />															\n															<img width=\"184\" height=\"181\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c3.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" />															\n		<p>Integer efficitur ligula ipsum, at vulputate mi fermentum sit amet. Sed pulvinar rutrum commodo. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean vitae tortor nec lectus mattis congue id sed tortor.</p>		\n															<img width=\"183\" height=\"183\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c4.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c4.png 183w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c4-150x150.png 150w\" sizes=\"(max-width: 183px) 100vw, 183px\" />															\n			<a href=\"#\">\n						Learn More\n					</a>\n															<img width=\"700\" height=\"171\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logoipsum-265.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logoipsum-265.png 700w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logoipsum-265-300x73.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />															\n															<img width=\"708\" height=\"171\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logoipsum-264.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logoipsum-264.png 708w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logoipsum-264-300x72.png 300w\" sizes=\"(max-width: 708px) 100vw, 708px\" />															\n															<img width=\"708\" height=\"171\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logoipsum-262.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logoipsum-262.png 708w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logoipsum-262-300x72.png 300w\" sizes=\"(max-width: 708px) 100vw, 708px\" />															\n															<img width=\"696\" height=\"171\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logoipsum-261.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logoipsum-261.png 696w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logoipsum-261-300x74.png 300w\" sizes=\"(max-width: 696px) 100vw, 696px\" />															\n															<img width=\"642\" height=\"113\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logoipsum-259.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logoipsum-259.png 642w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logoipsum-259-300x53.png 300w\" sizes=\"(max-width: 642px) 100vw, 642px\" />															\n															<img width=\"717\" height=\"167\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logoipsum-254.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logoipsum-254.png 717w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logoipsum-254-300x70.png 300w\" sizes=\"(max-width: 717px) 100vw, 717px\" />															\n			<h2>Our Trusted Partners</h2>		\n		<p>Donec hendrerit nibh in lectus molestie, id bibendum orci hendrerit. Curabitur euismod ante finibus nibh suscipit, vitae vehicula eros venenatis.</p>		\n			<h2>Join Our Education center Now</h2>		\n															<img width=\"179\" height=\"177\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c2.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" />															\n															<img width=\"183\" height=\"183\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c4.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c4.png 183w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c4-150x150.png 150w\" sizes=\"(max-width: 183px) 100vw, 183px\" />															\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<a href=\"#\">\n						Sign Up Now\n					</a>\n															<img width=\"324\" height=\"287\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge3.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge3.png 324w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge3-300x266.png 300w\" sizes=\"(max-width: 324px) 100vw, 324px\" />															\n															<img width=\"446\" height=\"593\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/cute-elementary-kids-with-books-at-school-2022-12-16-18-15-57-utc-copy.jpg\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/cute-elementary-kids-with-books-at-school-2022-12-16-18-15-57-utc-copy.jpg 446w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/cute-elementary-kids-with-books-at-school-2022-12-16-18-15-57-utc-copy-226x300.jpg 226w\" sizes=\"(max-width: 446px) 100vw, 446px\" />															\n															<img width=\"446\" height=\"593\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/cute-elementary-kids-with-books-at-school-2022-12-16-18-15-57-utc2.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/cute-elementary-kids-with-books-at-school-2022-12-16-18-15-57-utc2.png 446w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/cute-elementary-kids-with-books-at-school-2022-12-16-18-15-57-utc2-226x300.png 226w\" sizes=\"(max-width: 446px) 100vw, 446px\" />','About Us','','publish','closed','closed','','about-us','','','2023-09-05 14:39:10','2023-09-05 09:09:10','',0,'https://sahityaonline.in8.cdn-alpha.com/?elementor_library=about-us',0,'elementor_library','',0),(85,1,'2023-09-05 14:39:11','2023-09-05 09:09:11','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>Teacher</h1>		\n			<style>/*! elementor - v3.15.0 - 20-08-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=\"183\" height=\"183\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c4.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c4.png 183w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c4-150x150.png 150w\" sizes=\"(max-width: 183px) 100vw, 183px\" />															\n															<img width=\"184\" height=\"181\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c3.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" />															\n															<img width=\"324\" height=\"287\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge.png 324w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge-300x266.png 300w\" sizes=\"(max-width: 324px) 100vw, 324px\" />															\n			<h2>Meet our certified teacher</h2>		\n			<img src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/pp1.jpg\"  alt=\"Harry Smith\">\n                <h2>Harry Smith</h2>\n                <p>English Teacher</p>\n                <ul><li><a href=\"https://facebook.com\"  ></a></li><li><a href=\"https://twitter.com\"  ></a></li><li><a href=\"https://pinterest.com\"  ></a></li></ul>\n			<img src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/pp2.jpg\"  alt=\"Gregory Warren\">\n                <h2>Gregory Warren</h2>\n                <p>Social Teacher</p>\n                <ul><li><a href=\"https://facebook.com\"  ></a></li><li><a href=\"https://twitter.com\"  ></a></li><li><a href=\"https://pinterest.com\"  ></a></li></ul>\n			<img src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/pp3.jpg\"  alt=\"Peter wong\">\n                <h2>Peter wong</h2>\n                <p>Math Teacher</p>\n                <ul><li><a href=\"https://facebook.com\"  ></a></li><li><a href=\"https://twitter.com\"  ></a></li><li><a href=\"https://pinterest.com\"  ></a></li></ul>\n			<img src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/pp5.jpg\"  alt=\"Jimmy Smith\">\n                <h2>Jimmy Smith</h2>\n                <p>English Teacher</p>\n                <ul><li><a href=\"https://facebook.com\"  ></a></li><li><a href=\"https://twitter.com\"  ></a></li><li><a href=\"https://pinterest.com\"  ></a></li></ul>\n			<img src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/pp4.jpg\"  alt=\"Edward Connor\">\n                <h2>Edward Connor</h2>\n                <p>Math Teacher</p>\n                <ul><li><a href=\"https://facebook.com\"  ></a></li><li><a href=\"https://twitter.com\"  ></a></li><li><a href=\"https://pinterest.com\"  ></a></li></ul>\n			<img src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/pp6.jpg\"  alt=\"Betty Clarke\">\n                <h2>Betty Clarke</h2>\n                <p>Social Teacher</p>\n                <ul><li><a href=\"https://facebook.com\"  ></a></li><li><a href=\"https://twitter.com\"  ></a></li><li><a href=\"https://pinterest.com\"  ></a></li></ul>\n															<img width=\"184\" height=\"181\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c3.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" />															\n															<img width=\"700\" height=\"171\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logoipsum-265.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logoipsum-265.png 700w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logoipsum-265-300x73.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />															\n															<img width=\"708\" height=\"171\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logoipsum-264.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logoipsum-264.png 708w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logoipsum-264-300x72.png 300w\" sizes=\"(max-width: 708px) 100vw, 708px\" />															\n															<img width=\"708\" height=\"171\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logoipsum-262.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logoipsum-262.png 708w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logoipsum-262-300x72.png 300w\" sizes=\"(max-width: 708px) 100vw, 708px\" />															\n															<img width=\"696\" height=\"171\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logoipsum-261.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logoipsum-261.png 696w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logoipsum-261-300x74.png 300w\" sizes=\"(max-width: 696px) 100vw, 696px\" />															\n															<img width=\"642\" height=\"113\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logoipsum-259.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logoipsum-259.png 642w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logoipsum-259-300x53.png 300w\" sizes=\"(max-width: 642px) 100vw, 642px\" />															\n															<img width=\"717\" height=\"167\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logoipsum-254.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logoipsum-254.png 717w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logoipsum-254-300x70.png 300w\" sizes=\"(max-width: 717px) 100vw, 717px\" />															\n			<h2>Our Trusted Partners</h2>		\n		<p>Donec hendrerit nibh in lectus molestie, id bibendum orci hendrerit. Curabitur euismod ante finibus nibh suscipit, vitae vehicula eros venenatis.</p>		\n			<h2>Join Our Education center Now</h2>		\n															<img width=\"179\" height=\"177\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c2.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" />															\n															<img width=\"183\" height=\"183\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c4.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c4.png 183w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c4-150x150.png 150w\" sizes=\"(max-width: 183px) 100vw, 183px\" />															\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<a href=\"#\">\n						Sign Up Now\n					</a>\n															<img width=\"324\" height=\"287\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge3.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge3.png 324w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge3-300x266.png 300w\" sizes=\"(max-width: 324px) 100vw, 324px\" />															\n															<img width=\"446\" height=\"593\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/cute-elementary-kids-with-books-at-school-2022-12-16-18-15-57-utc-copy.jpg\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/cute-elementary-kids-with-books-at-school-2022-12-16-18-15-57-utc-copy.jpg 446w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/cute-elementary-kids-with-books-at-school-2022-12-16-18-15-57-utc-copy-226x300.jpg 226w\" sizes=\"(max-width: 446px) 100vw, 446px\" />															\n															<img width=\"446\" height=\"593\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/cute-elementary-kids-with-books-at-school-2022-12-16-18-15-57-utc2.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/cute-elementary-kids-with-books-at-school-2022-12-16-18-15-57-utc2.png 446w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/cute-elementary-kids-with-books-at-school-2022-12-16-18-15-57-utc2-226x300.png 226w\" sizes=\"(max-width: 446px) 100vw, 446px\" />','Teacher','','publish','closed','closed','','teacher','','','2023-09-05 14:39:12','2023-09-05 09:09:12','',0,'https://sahityaonline.in8.cdn-alpha.com/?elementor_library=teacher',0,'elementor_library','',0),(86,1,'2023-09-05 14:39:10','2023-09-05 09:09:10','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>About Us</h1>		\n			<style>/*! elementor - v3.15.0 - 20-08-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=\"183\" height=\"183\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c4.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c4.png 183w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c4-150x150.png 150w\" sizes=\"(max-width: 183px) 100vw, 183px\" />															\n															<img width=\"184\" height=\"181\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c3.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" />															\n															<img width=\"324\" height=\"287\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge.png 324w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge-300x266.png 300w\" sizes=\"(max-width: 324px) 100vw, 324px\" />															\n															<img width=\"600\" height=\"748\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/aged-teacher-2021-09-24-03-26-41-utc.jpg\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/aged-teacher-2021-09-24-03-26-41-utc.jpg 600w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/aged-teacher-2021-09-24-03-26-41-utc-241x300.jpg 241w\" sizes=\"(max-width: 600px) 100vw, 600px\" />															\n															<img width=\"600\" height=\"748\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/aged-teacher-2021-09-24-03-26-41-utc-2.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/aged-teacher-2021-09-24-03-26-41-utc-2.png 600w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/aged-teacher-2021-09-24-03-26-41-utc-2-241x300.png 241w\" sizes=\"(max-width: 600px) 100vw, 600px\" />															\n			<h2>Preparing Our Children’s Bright Future</h2>		\n															<img width=\"324\" height=\"287\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge2.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge2.png 324w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge2-300x266.png 300w\" sizes=\"(max-width: 324px) 100vw, 324px\" />															\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec ultrices purus nec sollicitudin eleifend. In hac habitasse platea dictumst.</p>		\n			<link rel=\"stylesheet\" href=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<h3>\n						Grade Improvement					\n				</h3>\n									<p>\n						 Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n				<h3>\n						Exam Preparation					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing.					</p>\n				<h3>\n						Social Development					\n				</h3>\n									<p>\n						Donec et massa sit amet augue laoreet venenatis id et urna.					</p>\n															<img width=\"195\" height=\"196\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c1.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c1.png 195w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c1-150x150.png 150w\" sizes=\"(max-width: 195px) 100vw, 195px\" />															\n			<h2>Our vision is every child is safe, inspired, challenged, empowered.</h2>		\n															<img width=\"324\" height=\"287\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge.png 324w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge-300x266.png 300w\" sizes=\"(max-width: 324px) 100vw, 324px\" />															\n															<img width=\"184\" height=\"181\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c3.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" />															\n		<p>Integer efficitur ligula ipsum, at vulputate mi fermentum sit amet. Sed pulvinar rutrum commodo. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean vitae tortor nec lectus mattis congue id sed tortor.</p>		\n															<img width=\"183\" height=\"183\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c4.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c4.png 183w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c4-150x150.png 150w\" sizes=\"(max-width: 183px) 100vw, 183px\" />															\n			<a href=\"#\">\n						Learn More\n					</a>\n															<img width=\"700\" height=\"171\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logoipsum-265.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logoipsum-265.png 700w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logoipsum-265-300x73.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />															\n															<img width=\"708\" height=\"171\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logoipsum-264.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logoipsum-264.png 708w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logoipsum-264-300x72.png 300w\" sizes=\"(max-width: 708px) 100vw, 708px\" />															\n															<img width=\"708\" height=\"171\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logoipsum-262.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logoipsum-262.png 708w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logoipsum-262-300x72.png 300w\" sizes=\"(max-width: 708px) 100vw, 708px\" />															\n															<img width=\"696\" height=\"171\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logoipsum-261.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logoipsum-261.png 696w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logoipsum-261-300x74.png 300w\" sizes=\"(max-width: 696px) 100vw, 696px\" />															\n															<img width=\"642\" height=\"113\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logoipsum-259.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logoipsum-259.png 642w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logoipsum-259-300x53.png 300w\" sizes=\"(max-width: 642px) 100vw, 642px\" />															\n															<img width=\"717\" height=\"167\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logoipsum-254.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logoipsum-254.png 717w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logoipsum-254-300x70.png 300w\" sizes=\"(max-width: 717px) 100vw, 717px\" />															\n			<h2>Our Trusted Partners</h2>		\n		<p>Donec hendrerit nibh in lectus molestie, id bibendum orci hendrerit. Curabitur euismod ante finibus nibh suscipit, vitae vehicula eros venenatis.</p>		\n			<h2>Join Our Education center Now</h2>		\n															<img width=\"179\" height=\"177\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c2.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" />															\n															<img width=\"183\" height=\"183\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c4.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c4.png 183w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c4-150x150.png 150w\" sizes=\"(max-width: 183px) 100vw, 183px\" />															\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<a href=\"#\">\n						Sign Up Now\n					</a>\n															<img width=\"324\" height=\"287\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge3.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge3.png 324w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge3-300x266.png 300w\" sizes=\"(max-width: 324px) 100vw, 324px\" />															\n															<img width=\"446\" height=\"593\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/cute-elementary-kids-with-books-at-school-2022-12-16-18-15-57-utc-copy.jpg\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/cute-elementary-kids-with-books-at-school-2022-12-16-18-15-57-utc-copy.jpg 446w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/cute-elementary-kids-with-books-at-school-2022-12-16-18-15-57-utc-copy-226x300.jpg 226w\" sizes=\"(max-width: 446px) 100vw, 446px\" />															\n															<img width=\"446\" height=\"593\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/cute-elementary-kids-with-books-at-school-2022-12-16-18-15-57-utc2.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/cute-elementary-kids-with-books-at-school-2022-12-16-18-15-57-utc2.png 446w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/cute-elementary-kids-with-books-at-school-2022-12-16-18-15-57-utc2-226x300.png 226w\" sizes=\"(max-width: 446px) 100vw, 446px\" />','About Us','','inherit','closed','closed','','84-revision-v1','','','2023-09-05 14:39:10','2023-09-05 09:09:10','',84,'https://sahityaonline.in8.cdn-alpha.com/?p=86',0,'revision','',0),(87,1,'2023-09-05 14:39:12','2023-09-05 09:09:12','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>Teacher</h1>		\n			<style>/*! elementor - v3.15.0 - 20-08-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=\"183\" height=\"183\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c4.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c4.png 183w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c4-150x150.png 150w\" sizes=\"(max-width: 183px) 100vw, 183px\" />															\n															<img width=\"184\" height=\"181\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c3.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" />															\n															<img width=\"324\" height=\"287\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge.png 324w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge-300x266.png 300w\" sizes=\"(max-width: 324px) 100vw, 324px\" />															\n			<h2>Meet our certified teacher</h2>		\n			<img src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/pp1.jpg\"  alt=\"Harry Smith\">\n                <h2>Harry Smith</h2>\n                <p>English Teacher</p>\n                <ul><li><a href=\"https://facebook.com\"  ></a></li><li><a href=\"https://twitter.com\"  ></a></li><li><a href=\"https://pinterest.com\"  ></a></li></ul>\n			<img src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/pp2.jpg\"  alt=\"Gregory Warren\">\n                <h2>Gregory Warren</h2>\n                <p>Social Teacher</p>\n                <ul><li><a href=\"https://facebook.com\"  ></a></li><li><a href=\"https://twitter.com\"  ></a></li><li><a href=\"https://pinterest.com\"  ></a></li></ul>\n			<img src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/pp3.jpg\"  alt=\"Peter wong\">\n                <h2>Peter wong</h2>\n                <p>Math Teacher</p>\n                <ul><li><a href=\"https://facebook.com\"  ></a></li><li><a href=\"https://twitter.com\"  ></a></li><li><a href=\"https://pinterest.com\"  ></a></li></ul>\n			<img src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/pp5.jpg\"  alt=\"Jimmy Smith\">\n                <h2>Jimmy Smith</h2>\n                <p>English Teacher</p>\n                <ul><li><a href=\"https://facebook.com\"  ></a></li><li><a href=\"https://twitter.com\"  ></a></li><li><a href=\"https://pinterest.com\"  ></a></li></ul>\n			<img src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/pp4.jpg\"  alt=\"Edward Connor\">\n                <h2>Edward Connor</h2>\n                <p>Math Teacher</p>\n                <ul><li><a href=\"https://facebook.com\"  ></a></li><li><a href=\"https://twitter.com\"  ></a></li><li><a href=\"https://pinterest.com\"  ></a></li></ul>\n			<img src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/pp6.jpg\"  alt=\"Betty Clarke\">\n                <h2>Betty Clarke</h2>\n                <p>Social Teacher</p>\n                <ul><li><a href=\"https://facebook.com\"  ></a></li><li><a href=\"https://twitter.com\"  ></a></li><li><a href=\"https://pinterest.com\"  ></a></li></ul>\n															<img width=\"184\" height=\"181\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c3.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" />															\n															<img width=\"700\" height=\"171\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logoipsum-265.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logoipsum-265.png 700w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logoipsum-265-300x73.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />															\n															<img width=\"708\" height=\"171\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logoipsum-264.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logoipsum-264.png 708w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logoipsum-264-300x72.png 300w\" sizes=\"(max-width: 708px) 100vw, 708px\" />															\n															<img width=\"708\" height=\"171\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logoipsum-262.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logoipsum-262.png 708w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logoipsum-262-300x72.png 300w\" sizes=\"(max-width: 708px) 100vw, 708px\" />															\n															<img width=\"696\" height=\"171\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logoipsum-261.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logoipsum-261.png 696w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logoipsum-261-300x74.png 300w\" sizes=\"(max-width: 696px) 100vw, 696px\" />															\n															<img width=\"642\" height=\"113\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logoipsum-259.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logoipsum-259.png 642w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logoipsum-259-300x53.png 300w\" sizes=\"(max-width: 642px) 100vw, 642px\" />															\n															<img width=\"717\" height=\"167\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logoipsum-254.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logoipsum-254.png 717w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logoipsum-254-300x70.png 300w\" sizes=\"(max-width: 717px) 100vw, 717px\" />															\n			<h2>Our Trusted Partners</h2>		\n		<p>Donec hendrerit nibh in lectus molestie, id bibendum orci hendrerit. Curabitur euismod ante finibus nibh suscipit, vitae vehicula eros venenatis.</p>		\n			<h2>Join Our Education center Now</h2>		\n															<img width=\"179\" height=\"177\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c2.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" />															\n															<img width=\"183\" height=\"183\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c4.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c4.png 183w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c4-150x150.png 150w\" sizes=\"(max-width: 183px) 100vw, 183px\" />															\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<a href=\"#\">\n						Sign Up Now\n					</a>\n															<img width=\"324\" height=\"287\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge3.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge3.png 324w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge3-300x266.png 300w\" sizes=\"(max-width: 324px) 100vw, 324px\" />															\n															<img width=\"446\" height=\"593\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/cute-elementary-kids-with-books-at-school-2022-12-16-18-15-57-utc-copy.jpg\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/cute-elementary-kids-with-books-at-school-2022-12-16-18-15-57-utc-copy.jpg 446w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/cute-elementary-kids-with-books-at-school-2022-12-16-18-15-57-utc-copy-226x300.jpg 226w\" sizes=\"(max-width: 446px) 100vw, 446px\" />															\n															<img width=\"446\" height=\"593\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/cute-elementary-kids-with-books-at-school-2022-12-16-18-15-57-utc2.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/cute-elementary-kids-with-books-at-school-2022-12-16-18-15-57-utc2.png 446w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/cute-elementary-kids-with-books-at-school-2022-12-16-18-15-57-utc2-226x300.png 226w\" sizes=\"(max-width: 446px) 100vw, 446px\" />','Teacher','','inherit','closed','closed','','85-revision-v1','','','2023-09-05 14:39:12','2023-09-05 09:09:12','',85,'https://sahityaonline.in8.cdn-alpha.com/?p=87',0,'revision','',0),(88,1,'2023-09-05 14:39:14','2023-09-05 09:09:14','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>Class</h1>		\n			<style>/*! elementor - v3.15.0 - 20-08-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=\"183\" height=\"183\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c4.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c4.png 183w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c4-150x150.png 150w\" sizes=\"(max-width: 183px) 100vw, 183px\" />															\n															<img width=\"184\" height=\"181\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c3.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" />															\n															<img width=\"324\" height=\"287\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge.png 324w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge-300x266.png 300w\" sizes=\"(max-width: 324px) 100vw, 324px\" />															\n															<img width=\"183\" height=\"183\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c4.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c4.png 183w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c4-150x150.png 150w\" sizes=\"(max-width: 183px) 100vw, 183px\" />															\n															<img width=\"324\" height=\"287\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge2.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge2.png 324w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge2-300x266.png 300w\" sizes=\"(max-width: 324px) 100vw, 324px\" />															\n			<h2>Our  Courses</h2>		\n															<img width=\"800\" height=\"534\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/kids-taking-exam-in-school-2022-06-29-19-26-45-utc-copy-1024x683.jpg\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/kids-taking-exam-in-school-2022-06-29-19-26-45-utc-copy-1024x683.jpg 1024w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/kids-taking-exam-in-school-2022-06-29-19-26-45-utc-copy-300x200.jpg 300w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/kids-taking-exam-in-school-2022-06-29-19-26-45-utc-copy-768x512.jpg 768w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/kids-taking-exam-in-school-2022-06-29-19-26-45-utc-copy.jpg 1200w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h4>Social Studies</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n			<a href=\"#\">\n						Learn More\n					</a>\n															<img width=\"800\" height=\"534\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/portrait-of-happy-caucasian-boy-standing-at-chalkb-2021-09-03-06-28-24-utc-copy-1024x683.jpg\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/portrait-of-happy-caucasian-boy-standing-at-chalkb-2021-09-03-06-28-24-utc-copy-1024x683.jpg 1024w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/portrait-of-happy-caucasian-boy-standing-at-chalkb-2021-09-03-06-28-24-utc-copy-300x200.jpg 300w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/portrait-of-happy-caucasian-boy-standing-at-chalkb-2021-09-03-06-28-24-utc-copy-768x512.jpg 768w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/portrait-of-happy-caucasian-boy-standing-at-chalkb-2021-09-03-06-28-24-utc-copy.jpg 1200w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h4>Mathematics </h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n			<a href=\"#\">\n						Learn More\n					</a>\n															<img width=\"800\" height=\"534\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/woman-learning-english-online-2021-08-26-15-34-41-utc-copy-1024x683.jpg\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/woman-learning-english-online-2021-08-26-15-34-41-utc-copy-1024x683.jpg 1024w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/woman-learning-english-online-2021-08-26-15-34-41-utc-copy-300x200.jpg 300w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/woman-learning-english-online-2021-08-26-15-34-41-utc-copy-768x512.jpg 768w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/woman-learning-english-online-2021-08-26-15-34-41-utc-copy.jpg 1200w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h4>English Course</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n			<a href=\"#\">\n						Learn More\n					</a>\n															<img width=\"800\" height=\"534\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/elementary-student-learning-in-the-classroom-at-sc-2022-11-16-14-48-06-utc-copy-1024x683.jpg\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/elementary-student-learning-in-the-classroom-at-sc-2022-11-16-14-48-06-utc-copy-1024x683.jpg 1024w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/elementary-student-learning-in-the-classroom-at-sc-2022-11-16-14-48-06-utc-copy-300x200.jpg 300w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/elementary-student-learning-in-the-classroom-at-sc-2022-11-16-14-48-06-utc-copy-768x512.jpg 768w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/elementary-student-learning-in-the-classroom-at-sc-2022-11-16-14-48-06-utc-copy.jpg 1200w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h4>Advanced Mathematic</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n			<a href=\"#\">\n						Learn More\n					</a>\n															<img width=\"800\" height=\"534\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/boy-at-lesson-2021-09-24-03-25-58-utc-copy-1024x683.jpg\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/boy-at-lesson-2021-09-24-03-25-58-utc-copy-1024x683.jpg 1024w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/boy-at-lesson-2021-09-24-03-25-58-utc-copy-300x200.jpg 300w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/boy-at-lesson-2021-09-24-03-25-58-utc-copy-768x512.jpg 768w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/boy-at-lesson-2021-09-24-03-25-58-utc-copy.jpg 1500w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h4>Geography</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n			<a href=\"#\">\n						Learn More\n					</a>\n															<img width=\"800\" height=\"534\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/difficult-exam-in-elementary-school-2021-09-24-02-55-23-utc-copy-1024x683.jpg\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/difficult-exam-in-elementary-school-2021-09-24-02-55-23-utc-copy-1024x683.jpg 1024w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/difficult-exam-in-elementary-school-2021-09-24-02-55-23-utc-copy-300x200.jpg 300w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/difficult-exam-in-elementary-school-2021-09-24-02-55-23-utc-copy-768x512.jpg 768w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/difficult-exam-in-elementary-school-2021-09-24-02-55-23-utc-copy.jpg 1200w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h4>Exam Drill</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n			<a href=\"#\">\n						Learn More\n					</a>\n			<h2>Our Programs for excellence</h2>		\n															<img width=\"195\" height=\"196\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c1.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c1.png 195w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c1-150x150.png 150w\" sizes=\"(max-width: 195px) 100vw, 195px\" />															\n															<img width=\"324\" height=\"287\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge2.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge2.png 324w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge2-300x266.png 300w\" sizes=\"(max-width: 324px) 100vw, 324px\" />															\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Mauris at lacus semper, fermentum mi sed, rutrum nibh. Sed gravida elit ligula, sit amet venenatis diam hendrerit iaculis.</p>		\n															<img width=\"179\" height=\"177\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c2.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" />															\n			<a href=\"#\">\n						Discover More\n					</a>\n															<img width=\"255\" height=\"255\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/grade.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/grade.png 255w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/grade-150x150.png 150w\" sizes=\"(max-width: 255px) 100vw, 255px\" />															\n			<h5>Grade Boost</h5>		\n		<p>Lorem ipsum dolor sit amet.</p>		\n															<img width=\"255\" height=\"255\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/chart.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/chart.png 255w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/chart-150x150.png 150w\" sizes=\"(max-width: 255px) 100vw, 255px\" />															\n			<h5>Skill Evaluation</h5>		\n		<p>Lorem ipsum dolor sit amet.</p>		\n															<img width=\"255\" height=\"255\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/test-exam-sheet.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/test-exam-sheet.png 255w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/test-exam-sheet-150x150.png 150w\" sizes=\"(max-width: 255px) 100vw, 255px\" />															\n			<h5>Mock Exam</h5>		\n		<p>Lorem ipsum dolor sit amet.</p>		\n															<img width=\"255\" height=\"255\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/schedule-sheet.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/schedule-sheet.png 255w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/schedule-sheet-150x150.png 150w\" sizes=\"(max-width: 255px) 100vw, 255px\" />															\n			<h5>Weekend Class</h5>		\n		<p>Lorem ipsum dolor sit amet.</p>		\n			<h2>Join Our Education center Now</h2>		\n															<img width=\"179\" height=\"177\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c2.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" />															\n															<img width=\"183\" height=\"183\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c4.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c4.png 183w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c4-150x150.png 150w\" sizes=\"(max-width: 183px) 100vw, 183px\" />															\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<a href=\"#\">\n						Sign Up Now\n					</a>\n															<img width=\"324\" height=\"287\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge3.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge3.png 324w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge3-300x266.png 300w\" sizes=\"(max-width: 324px) 100vw, 324px\" />															\n															<img width=\"446\" height=\"593\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/cute-elementary-kids-with-books-at-school-2022-12-16-18-15-57-utc-copy.jpg\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/cute-elementary-kids-with-books-at-school-2022-12-16-18-15-57-utc-copy.jpg 446w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/cute-elementary-kids-with-books-at-school-2022-12-16-18-15-57-utc-copy-226x300.jpg 226w\" sizes=\"(max-width: 446px) 100vw, 446px\" />															\n															<img width=\"446\" height=\"593\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/cute-elementary-kids-with-books-at-school-2022-12-16-18-15-57-utc2.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/cute-elementary-kids-with-books-at-school-2022-12-16-18-15-57-utc2.png 446w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/cute-elementary-kids-with-books-at-school-2022-12-16-18-15-57-utc2-226x300.png 226w\" sizes=\"(max-width: 446px) 100vw, 446px\" />','Class','','publish','closed','closed','','class','','','2023-09-05 14:39:15','2023-09-05 09:09:15','',0,'https://sahityaonline.in8.cdn-alpha.com/?elementor_library=class',0,'elementor_library','',0),(89,1,'2023-09-05 14:39:15','2023-09-05 09:09:15','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>Class</h1>		\n			<style>/*! elementor - v3.15.0 - 20-08-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=\"183\" height=\"183\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c4.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c4.png 183w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c4-150x150.png 150w\" sizes=\"(max-width: 183px) 100vw, 183px\" />															\n															<img width=\"184\" height=\"181\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c3.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" />															\n															<img width=\"324\" height=\"287\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge.png 324w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge-300x266.png 300w\" sizes=\"(max-width: 324px) 100vw, 324px\" />															\n															<img width=\"183\" height=\"183\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c4.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c4.png 183w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c4-150x150.png 150w\" sizes=\"(max-width: 183px) 100vw, 183px\" />															\n															<img width=\"324\" height=\"287\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge2.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge2.png 324w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge2-300x266.png 300w\" sizes=\"(max-width: 324px) 100vw, 324px\" />															\n			<h2>Our  Courses</h2>		\n															<img width=\"800\" height=\"534\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/kids-taking-exam-in-school-2022-06-29-19-26-45-utc-copy-1024x683.jpg\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/kids-taking-exam-in-school-2022-06-29-19-26-45-utc-copy-1024x683.jpg 1024w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/kids-taking-exam-in-school-2022-06-29-19-26-45-utc-copy-300x200.jpg 300w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/kids-taking-exam-in-school-2022-06-29-19-26-45-utc-copy-768x512.jpg 768w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/kids-taking-exam-in-school-2022-06-29-19-26-45-utc-copy.jpg 1200w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h4>Social Studies</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n			<a href=\"#\">\n						Learn More\n					</a>\n															<img width=\"800\" height=\"534\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/portrait-of-happy-caucasian-boy-standing-at-chalkb-2021-09-03-06-28-24-utc-copy-1024x683.jpg\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/portrait-of-happy-caucasian-boy-standing-at-chalkb-2021-09-03-06-28-24-utc-copy-1024x683.jpg 1024w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/portrait-of-happy-caucasian-boy-standing-at-chalkb-2021-09-03-06-28-24-utc-copy-300x200.jpg 300w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/portrait-of-happy-caucasian-boy-standing-at-chalkb-2021-09-03-06-28-24-utc-copy-768x512.jpg 768w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/portrait-of-happy-caucasian-boy-standing-at-chalkb-2021-09-03-06-28-24-utc-copy.jpg 1200w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h4>Mathematics </h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n			<a href=\"#\">\n						Learn More\n					</a>\n															<img width=\"800\" height=\"534\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/woman-learning-english-online-2021-08-26-15-34-41-utc-copy-1024x683.jpg\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/woman-learning-english-online-2021-08-26-15-34-41-utc-copy-1024x683.jpg 1024w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/woman-learning-english-online-2021-08-26-15-34-41-utc-copy-300x200.jpg 300w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/woman-learning-english-online-2021-08-26-15-34-41-utc-copy-768x512.jpg 768w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/woman-learning-english-online-2021-08-26-15-34-41-utc-copy.jpg 1200w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h4>English Course</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n			<a href=\"#\">\n						Learn More\n					</a>\n															<img width=\"800\" height=\"534\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/elementary-student-learning-in-the-classroom-at-sc-2022-11-16-14-48-06-utc-copy-1024x683.jpg\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/elementary-student-learning-in-the-classroom-at-sc-2022-11-16-14-48-06-utc-copy-1024x683.jpg 1024w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/elementary-student-learning-in-the-classroom-at-sc-2022-11-16-14-48-06-utc-copy-300x200.jpg 300w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/elementary-student-learning-in-the-classroom-at-sc-2022-11-16-14-48-06-utc-copy-768x512.jpg 768w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/elementary-student-learning-in-the-classroom-at-sc-2022-11-16-14-48-06-utc-copy.jpg 1200w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h4>Advanced Mathematic</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n			<a href=\"#\">\n						Learn More\n					</a>\n															<img width=\"800\" height=\"534\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/boy-at-lesson-2021-09-24-03-25-58-utc-copy-1024x683.jpg\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/boy-at-lesson-2021-09-24-03-25-58-utc-copy-1024x683.jpg 1024w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/boy-at-lesson-2021-09-24-03-25-58-utc-copy-300x200.jpg 300w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/boy-at-lesson-2021-09-24-03-25-58-utc-copy-768x512.jpg 768w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/boy-at-lesson-2021-09-24-03-25-58-utc-copy.jpg 1500w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h4>Geography</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n			<a href=\"#\">\n						Learn More\n					</a>\n															<img width=\"800\" height=\"534\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/difficult-exam-in-elementary-school-2021-09-24-02-55-23-utc-copy-1024x683.jpg\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/difficult-exam-in-elementary-school-2021-09-24-02-55-23-utc-copy-1024x683.jpg 1024w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/difficult-exam-in-elementary-school-2021-09-24-02-55-23-utc-copy-300x200.jpg 300w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/difficult-exam-in-elementary-school-2021-09-24-02-55-23-utc-copy-768x512.jpg 768w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/difficult-exam-in-elementary-school-2021-09-24-02-55-23-utc-copy.jpg 1200w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h4>Exam Drill</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n			<a href=\"#\">\n						Learn More\n					</a>\n			<h2>Our Programs for excellence</h2>		\n															<img width=\"195\" height=\"196\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c1.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c1.png 195w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c1-150x150.png 150w\" sizes=\"(max-width: 195px) 100vw, 195px\" />															\n															<img width=\"324\" height=\"287\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge2.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge2.png 324w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge2-300x266.png 300w\" sizes=\"(max-width: 324px) 100vw, 324px\" />															\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Mauris at lacus semper, fermentum mi sed, rutrum nibh. Sed gravida elit ligula, sit amet venenatis diam hendrerit iaculis.</p>		\n															<img width=\"179\" height=\"177\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c2.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" />															\n			<a href=\"#\">\n						Discover More\n					</a>\n															<img width=\"255\" height=\"255\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/grade.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/grade.png 255w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/grade-150x150.png 150w\" sizes=\"(max-width: 255px) 100vw, 255px\" />															\n			<h5>Grade Boost</h5>		\n		<p>Lorem ipsum dolor sit amet.</p>		\n															<img width=\"255\" height=\"255\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/chart.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/chart.png 255w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/chart-150x150.png 150w\" sizes=\"(max-width: 255px) 100vw, 255px\" />															\n			<h5>Skill Evaluation</h5>		\n		<p>Lorem ipsum dolor sit amet.</p>		\n															<img width=\"255\" height=\"255\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/test-exam-sheet.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/test-exam-sheet.png 255w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/test-exam-sheet-150x150.png 150w\" sizes=\"(max-width: 255px) 100vw, 255px\" />															\n			<h5>Mock Exam</h5>		\n		<p>Lorem ipsum dolor sit amet.</p>		\n															<img width=\"255\" height=\"255\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/schedule-sheet.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/schedule-sheet.png 255w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/schedule-sheet-150x150.png 150w\" sizes=\"(max-width: 255px) 100vw, 255px\" />															\n			<h5>Weekend Class</h5>		\n		<p>Lorem ipsum dolor sit amet.</p>		\n			<h2>Join Our Education center Now</h2>		\n															<img width=\"179\" height=\"177\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c2.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" />															\n															<img width=\"183\" height=\"183\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c4.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c4.png 183w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c4-150x150.png 150w\" sizes=\"(max-width: 183px) 100vw, 183px\" />															\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<a href=\"#\">\n						Sign Up Now\n					</a>\n															<img width=\"324\" height=\"287\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge3.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge3.png 324w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge3-300x266.png 300w\" sizes=\"(max-width: 324px) 100vw, 324px\" />															\n															<img width=\"446\" height=\"593\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/cute-elementary-kids-with-books-at-school-2022-12-16-18-15-57-utc-copy.jpg\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/cute-elementary-kids-with-books-at-school-2022-12-16-18-15-57-utc-copy.jpg 446w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/cute-elementary-kids-with-books-at-school-2022-12-16-18-15-57-utc-copy-226x300.jpg 226w\" sizes=\"(max-width: 446px) 100vw, 446px\" />															\n															<img width=\"446\" height=\"593\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/cute-elementary-kids-with-books-at-school-2022-12-16-18-15-57-utc2.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/cute-elementary-kids-with-books-at-school-2022-12-16-18-15-57-utc2.png 446w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/cute-elementary-kids-with-books-at-school-2022-12-16-18-15-57-utc2-226x300.png 226w\" sizes=\"(max-width: 446px) 100vw, 446px\" />','Class','','inherit','closed','closed','','88-revision-v1','','','2023-09-05 14:39:15','2023-09-05 09:09:15','',88,'https://sahityaonline.in8.cdn-alpha.com/?p=89',0,'revision','',0),(90,1,'2023-09-05 14:39:49','2023-09-05 09:09:49','<h2>Smart  Learning</h2>		\n			<h2>Study Easily</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<a href=\"#\">\n						Check It Out\n					</a>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"800\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/boy3.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/boy3.png 1000w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/boy3-300x300.png 300w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/boy3-150x150.png 150w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/boy3-768x768.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"184\" height=\"181\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c3.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" />															\n															<img width=\"324\" height=\"287\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge.png 324w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge-300x266.png 300w\" sizes=\"(max-width: 324px) 100vw, 324px\" />															\n															<img width=\"195\" height=\"196\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c1.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c1.png 195w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c1-150x150.png 150w\" sizes=\"(max-width: 195px) 100vw, 195px\" />															\n															<img width=\"179\" height=\"177\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c2.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" />															\n															<img width=\"800\" height=\"800\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/little-boy-is-having-online-lessons-by-using-lapto-2022-02-03-17-43-51-utc-copy.jpg\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/little-boy-is-having-online-lessons-by-using-lapto-2022-02-03-17-43-51-utc-copy.jpg 1000w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/little-boy-is-having-online-lessons-by-using-lapto-2022-02-03-17-43-51-utc-copy-300x300.jpg 300w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/little-boy-is-having-online-lessons-by-using-lapto-2022-02-03-17-43-51-utc-copy-150x150.jpg 150w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/little-boy-is-having-online-lessons-by-using-lapto-2022-02-03-17-43-51-utc-copy-768x768.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"183\" height=\"183\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c4.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c4.png 183w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c4-150x150.png 150w\" sizes=\"(max-width: 183px) 100vw, 183px\" />															\n															<img width=\"324\" height=\"287\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge2.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge2.png 324w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge2-300x266.png 300w\" sizes=\"(max-width: 324px) 100vw, 324px\" />															\n			<style>/*! elementor - v3.15.0 - 20-08-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>Our Primary Courses</h2>		\n															<img width=\"800\" height=\"534\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/kids-taking-exam-in-school-2022-06-29-19-26-45-utc-copy-1024x683.jpg\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/kids-taking-exam-in-school-2022-06-29-19-26-45-utc-copy-1024x683.jpg 1024w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/kids-taking-exam-in-school-2022-06-29-19-26-45-utc-copy-300x200.jpg 300w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/kids-taking-exam-in-school-2022-06-29-19-26-45-utc-copy-768x512.jpg 768w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/kids-taking-exam-in-school-2022-06-29-19-26-45-utc-copy.jpg 1200w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h4>Social Studies</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n			<a href=\"#\">\n						Learn More\n					</a>\n															<img width=\"800\" height=\"534\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/portrait-of-happy-caucasian-boy-standing-at-chalkb-2021-09-03-06-28-24-utc-copy-1024x683.jpg\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/portrait-of-happy-caucasian-boy-standing-at-chalkb-2021-09-03-06-28-24-utc-copy-1024x683.jpg 1024w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/portrait-of-happy-caucasian-boy-standing-at-chalkb-2021-09-03-06-28-24-utc-copy-300x200.jpg 300w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/portrait-of-happy-caucasian-boy-standing-at-chalkb-2021-09-03-06-28-24-utc-copy-768x512.jpg 768w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/portrait-of-happy-caucasian-boy-standing-at-chalkb-2021-09-03-06-28-24-utc-copy.jpg 1200w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h4>Mathematics </h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n			<a href=\"#\">\n						Learn More\n					</a>\n															<img width=\"800\" height=\"534\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/woman-learning-english-online-2021-08-26-15-34-41-utc-copy-1024x683.jpg\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/woman-learning-english-online-2021-08-26-15-34-41-utc-copy-1024x683.jpg 1024w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/woman-learning-english-online-2021-08-26-15-34-41-utc-copy-300x200.jpg 300w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/woman-learning-english-online-2021-08-26-15-34-41-utc-copy-768x512.jpg 768w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/woman-learning-english-online-2021-08-26-15-34-41-utc-copy.jpg 1200w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h4>English Course</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n			<a href=\"#\">\n						Learn More\n					</a>\n															<img width=\"600\" height=\"748\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/aged-teacher-2021-09-24-03-26-41-utc.jpg\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/aged-teacher-2021-09-24-03-26-41-utc.jpg 600w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/aged-teacher-2021-09-24-03-26-41-utc-241x300.jpg 241w\" sizes=\"(max-width: 600px) 100vw, 600px\" />															\n															<img width=\"600\" height=\"748\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/aged-teacher-2021-09-24-03-26-41-utc-2.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/aged-teacher-2021-09-24-03-26-41-utc-2.png 600w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/aged-teacher-2021-09-24-03-26-41-utc-2-241x300.png 241w\" sizes=\"(max-width: 600px) 100vw, 600px\" />															\n			<h2>Preparing Our Children’s Bright Future</h2>		\n															<img width=\"324\" height=\"287\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge2.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge2.png 324w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge2-300x266.png 300w\" sizes=\"(max-width: 324px) 100vw, 324px\" />															\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec ultrices purus nec sollicitudin eleifend. In hac habitasse platea dictumst.</p>		\n			<link rel=\"stylesheet\" href=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<h3>\n						Grade Improvement					\n				</h3>\n									<p>\n						 Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n				<h3>\n						Exam Preparation					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing.					</p>\n				<h3>\n						Social Development					\n				</h3>\n									<p>\n						Donec et massa sit amet augue laoreet venenatis id et urna.					</p>\n															<img width=\"195\" height=\"196\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c1.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c1.png 195w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c1-150x150.png 150w\" sizes=\"(max-width: 195px) 100vw, 195px\" />															\n			<h2>Our vision is every child is safe, inspired, challenged, empowered.</h2>		\n															<img width=\"324\" height=\"287\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge.png 324w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge-300x266.png 300w\" sizes=\"(max-width: 324px) 100vw, 324px\" />															\n															<img width=\"184\" height=\"181\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c3.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" />															\n		<p>Integer efficitur ligula ipsum, at vulputate mi fermentum sit amet. Sed pulvinar rutrum commodo. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean vitae tortor nec lectus mattis congue id sed tortor.</p>		\n															<img width=\"183\" height=\"183\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c4.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c4.png 183w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c4-150x150.png 150w\" sizes=\"(max-width: 183px) 100vw, 183px\" />															\n			<a href=\"#\">\n						Learn More\n					</a>\n			<h2>Our Programs for excellence</h2>		\n															<img width=\"195\" height=\"196\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c1.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c1.png 195w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c1-150x150.png 150w\" sizes=\"(max-width: 195px) 100vw, 195px\" />															\n															<img width=\"324\" height=\"287\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge2.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge2.png 324w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge2-300x266.png 300w\" sizes=\"(max-width: 324px) 100vw, 324px\" />															\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Mauris at lacus semper, fermentum mi sed, rutrum nibh. Sed gravida elit ligula, sit amet venenatis diam hendrerit iaculis.</p>		\n															<img width=\"179\" height=\"177\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c2.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" />															\n			<a href=\"#\">\n						Discover More\n					</a>\n															<img width=\"255\" height=\"255\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/grade.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/grade.png 255w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/grade-150x150.png 150w\" sizes=\"(max-width: 255px) 100vw, 255px\" />															\n			<h5>Grade Boost</h5>		\n		<p>Lorem ipsum dolor sit amet.</p>		\n															<img width=\"255\" height=\"255\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/chart.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/chart.png 255w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/chart-150x150.png 150w\" sizes=\"(max-width: 255px) 100vw, 255px\" />															\n			<h5>Skill Evaluation</h5>		\n		<p>Lorem ipsum dolor sit amet.</p>		\n															<img width=\"255\" height=\"255\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/test-exam-sheet.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/test-exam-sheet.png 255w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/test-exam-sheet-150x150.png 150w\" sizes=\"(max-width: 255px) 100vw, 255px\" />															\n			<h5>Mock Exam</h5>		\n		<p>Lorem ipsum dolor sit amet.</p>		\n															<img width=\"255\" height=\"255\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/schedule-sheet.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/schedule-sheet.png 255w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/schedule-sheet-150x150.png 150w\" sizes=\"(max-width: 255px) 100vw, 255px\" />															\n			<h5>Weekend Class</h5>		\n		<p>Lorem ipsum dolor sit amet.</p>		\n			<h2>Our Popular Teacher</h2>		\n															<img width=\"183\" height=\"183\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c4.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c4.png 183w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c4-150x150.png 150w\" sizes=\"(max-width: 183px) 100vw, 183px\" />															\n															<img width=\"184\" height=\"181\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c3.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" />															\n															<img width=\"800\" height=\"800\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/pp1.jpg\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/pp1.jpg 800w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/pp1-300x300.jpg 300w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/pp1-150x150.jpg 150w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/pp1-768x768.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h5>Harry Smith</h5>		\n			<h5>English Teacher</h5>		\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n@charset \"UTF-8\";.elementor-star-rating{color:#ccd6df;font-family:eicons;display:inline-block}.elementor-star-rating i{display:inline-block;position:relative;font-style:normal;cursor:default}.elementor-star-rating i:before{content:\"e934\";display:block;font-size:inherit;font-family:inherit;position:absolute;overflow:hidden;color:#f0ad4e;top:0;left:0}.elementor-star-rating .elementor-star-empty:before{content:none}.elementor-star-rating .elementor-star-1:before{width:10%}.elementor-star-rating .elementor-star-2:before{width:20%}.elementor-star-rating .elementor-star-3:before{width:30%}.elementor-star-rating .elementor-star-4:before{width:40%}.elementor-star-rating .elementor-star-5:before{width:50%}.elementor-star-rating .elementor-star-6:before{width:60%}.elementor-star-rating .elementor-star-7:before{width:70%}.elementor-star-rating .elementor-star-8:before{width:80%}.elementor-star-rating .elementor-star-9:before{width:90%}.elementor-star-rating__wrapper{display:flex;align-items:center}.elementor-star-rating__title{margin-right:10px}.elementor-star-rating--align-right .elementor-star-rating__wrapper{text-align:right;justify-content:flex-end}.elementor-star-rating--align-left .elementor-star-rating__wrapper{text-align:left;justify-content:flex-start}.elementor-star-rating--align-center .elementor-star-rating__wrapper{text-align:center;justify-content:center}.elementor-star-rating--align-justify .elementor-star-rating__title{margin-right:auto}@media (max-width:1024px){.elementor-star-rating-tablet--align-right .elementor-star-rating__wrapper{text-align:right;justify-content:flex-end}.elementor-star-rating-tablet--align-left .elementor-star-rating__wrapper{text-align:left;justify-content:flex-start}.elementor-star-rating-tablet--align-center .elementor-star-rating__wrapper{text-align:center;justify-content:center}.elementor-star-rating-tablet--align-justify .elementor-star-rating__title{margin-right:auto}}@media (max-width:767px){.elementor-star-rating-mobile--align-right .elementor-star-rating__wrapper{text-align:right;justify-content:flex-end}.elementor-star-rating-mobile--align-left .elementor-star-rating__wrapper{text-align:left;justify-content:flex-start}.elementor-star-rating-mobile--align-center .elementor-star-rating__wrapper{text-align:center;justify-content:center}.elementor-star-rating-mobile--align-justify .elementor-star-rating__title{margin-right:auto}}.last-star{letter-spacing:0}.elementor--star-style-star_unicode .elementor-star-rating{font-family:Arial,Helvetica,sans-serif}.elementor--star-style-star_unicode .elementor-star-rating i:not(.elementor-star-empty):before{content:\"★\"}</style>\n						<i>&#xE934;</i><i>&#xE934;</i><i>&#xE934;</i><i>&#xE934;</i><i>&#xE934;</i> 5/5		\n		<p> \" Lorem ipsum dolor sit amet, consectetur adipiscing elit. Suspendisse est neque, ultrices at enim vitae, mattis consequat dui.\"</p>		\n			<a href=\"#\">\n						Contact\n					</a>\n															<img width=\"800\" height=\"800\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/pp2.jpg\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/pp2.jpg 800w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/pp2-300x300.jpg 300w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/pp2-150x150.jpg 150w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/pp2-768x768.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h5>Gregory Warren</h5>		\n			<h5>Social Teacher</h5>		\n						<i>&#xE934;</i><i>&#xE934;</i><i>&#xE934;</i><i>&#xE934;</i><i>&#xE934;</i> 5/5		\n		<p> \" Lorem ipsum dolor sit amet, consectetur adipiscing elit. Suspendisse est neque, ultrices at enim vitae, mattis consequat dui.\"</p>		\n			<a href=\"#\">\n						Contact\n					</a>\n															<img width=\"800\" height=\"800\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/pp3.jpg\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/pp3.jpg 800w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/pp3-300x300.jpg 300w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/pp3-150x150.jpg 150w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/pp3-768x768.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h5>Peter Wong</h5>		\n			<h5>Math Teacher</h5>		\n						<i>&#xE934;</i><i>&#xE934;</i><i>&#xE934;</i><i>&#xE934;</i><i>&#xE934;</i> 5/5		\n		<p> \" Lorem ipsum dolor sit amet, consectetur adipiscing elit. Suspendisse est neque, ultrices at enim vitae, mattis consequat dui.\"</p>		\n			<a href=\"#\">\n						Contact\n					</a>\n															<img width=\"700\" height=\"171\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logoipsum-265.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logoipsum-265.png 700w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logoipsum-265-300x73.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />															\n															<img width=\"708\" height=\"171\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logoipsum-264.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logoipsum-264.png 708w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logoipsum-264-300x72.png 300w\" sizes=\"(max-width: 708px) 100vw, 708px\" />															\n															<img width=\"708\" height=\"171\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logoipsum-262.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logoipsum-262.png 708w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logoipsum-262-300x72.png 300w\" sizes=\"(max-width: 708px) 100vw, 708px\" />															\n															<img width=\"696\" height=\"171\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logoipsum-261.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logoipsum-261.png 696w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logoipsum-261-300x74.png 300w\" sizes=\"(max-width: 696px) 100vw, 696px\" />															\n															<img width=\"642\" height=\"113\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logoipsum-259.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logoipsum-259.png 642w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logoipsum-259-300x53.png 300w\" sizes=\"(max-width: 642px) 100vw, 642px\" />															\n															<img width=\"717\" height=\"167\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logoipsum-254.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logoipsum-254.png 717w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logoipsum-254-300x70.png 300w\" sizes=\"(max-width: 717px) 100vw, 717px\" />															\n			<h2>Our Trusted Partners</h2>		\n		<p>Donec hendrerit nibh in lectus molestie, id bibendum orci hendrerit. Curabitur euismod ante finibus nibh suscipit, vitae vehicula eros venenatis.</p>		\n			<h2>Join Our Education center Now</h2>		\n															<img width=\"179\" height=\"177\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c2.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" />															\n															<img width=\"183\" height=\"183\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c4.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c4.png 183w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c4-150x150.png 150w\" sizes=\"(max-width: 183px) 100vw, 183px\" />															\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<a href=\"#\">\n						Sign Up Now\n					</a>\n															<img width=\"324\" height=\"287\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge3.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge3.png 324w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge3-300x266.png 300w\" sizes=\"(max-width: 324px) 100vw, 324px\" />															\n															<img width=\"446\" height=\"593\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/cute-elementary-kids-with-books-at-school-2022-12-16-18-15-57-utc-copy.jpg\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/cute-elementary-kids-with-books-at-school-2022-12-16-18-15-57-utc-copy.jpg 446w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/cute-elementary-kids-with-books-at-school-2022-12-16-18-15-57-utc-copy-226x300.jpg 226w\" sizes=\"(max-width: 446px) 100vw, 446px\" />															\n															<img width=\"446\" height=\"593\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/cute-elementary-kids-with-books-at-school-2022-12-16-18-15-57-utc2.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/cute-elementary-kids-with-books-at-school-2022-12-16-18-15-57-utc2.png 446w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/cute-elementary-kids-with-books-at-school-2022-12-16-18-15-57-utc2-226x300.png 226w\" sizes=\"(max-width: 446px) 100vw, 446px\" />','Home','','publish','closed','closed','','home','','','2023-09-05 14:39:50','2023-09-05 09:09:50','',0,'https://sahityaonline.in8.cdn-alpha.com/?elementor_library=home',0,'elementor_library','',0),(91,1,'2023-09-05 14:39:50','2023-09-05 09:09:50','<h2>Smart  Learning</h2>		\n			<h2>Study Easily</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<a href=\"#\">\n						Check It Out\n					</a>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"800\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/boy3.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/boy3.png 1000w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/boy3-300x300.png 300w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/boy3-150x150.png 150w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/boy3-768x768.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"184\" height=\"181\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c3.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" />															\n															<img width=\"324\" height=\"287\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge.png 324w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge-300x266.png 300w\" sizes=\"(max-width: 324px) 100vw, 324px\" />															\n															<img width=\"195\" height=\"196\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c1.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c1.png 195w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c1-150x150.png 150w\" sizes=\"(max-width: 195px) 100vw, 195px\" />															\n															<img width=\"179\" height=\"177\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c2.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" />															\n															<img width=\"800\" height=\"800\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/little-boy-is-having-online-lessons-by-using-lapto-2022-02-03-17-43-51-utc-copy.jpg\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/little-boy-is-having-online-lessons-by-using-lapto-2022-02-03-17-43-51-utc-copy.jpg 1000w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/little-boy-is-having-online-lessons-by-using-lapto-2022-02-03-17-43-51-utc-copy-300x300.jpg 300w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/little-boy-is-having-online-lessons-by-using-lapto-2022-02-03-17-43-51-utc-copy-150x150.jpg 150w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/little-boy-is-having-online-lessons-by-using-lapto-2022-02-03-17-43-51-utc-copy-768x768.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"183\" height=\"183\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c4.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c4.png 183w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c4-150x150.png 150w\" sizes=\"(max-width: 183px) 100vw, 183px\" />															\n															<img width=\"324\" height=\"287\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge2.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge2.png 324w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge2-300x266.png 300w\" sizes=\"(max-width: 324px) 100vw, 324px\" />															\n			<style>/*! elementor - v3.15.0 - 20-08-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>Our Primary Courses</h2>		\n															<img width=\"800\" height=\"534\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/kids-taking-exam-in-school-2022-06-29-19-26-45-utc-copy-1024x683.jpg\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/kids-taking-exam-in-school-2022-06-29-19-26-45-utc-copy-1024x683.jpg 1024w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/kids-taking-exam-in-school-2022-06-29-19-26-45-utc-copy-300x200.jpg 300w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/kids-taking-exam-in-school-2022-06-29-19-26-45-utc-copy-768x512.jpg 768w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/kids-taking-exam-in-school-2022-06-29-19-26-45-utc-copy.jpg 1200w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h4>Social Studies</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n			<a href=\"#\">\n						Learn More\n					</a>\n															<img width=\"800\" height=\"534\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/portrait-of-happy-caucasian-boy-standing-at-chalkb-2021-09-03-06-28-24-utc-copy-1024x683.jpg\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/portrait-of-happy-caucasian-boy-standing-at-chalkb-2021-09-03-06-28-24-utc-copy-1024x683.jpg 1024w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/portrait-of-happy-caucasian-boy-standing-at-chalkb-2021-09-03-06-28-24-utc-copy-300x200.jpg 300w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/portrait-of-happy-caucasian-boy-standing-at-chalkb-2021-09-03-06-28-24-utc-copy-768x512.jpg 768w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/portrait-of-happy-caucasian-boy-standing-at-chalkb-2021-09-03-06-28-24-utc-copy.jpg 1200w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h4>Mathematics </h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n			<a href=\"#\">\n						Learn More\n					</a>\n															<img width=\"800\" height=\"534\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/woman-learning-english-online-2021-08-26-15-34-41-utc-copy-1024x683.jpg\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/woman-learning-english-online-2021-08-26-15-34-41-utc-copy-1024x683.jpg 1024w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/woman-learning-english-online-2021-08-26-15-34-41-utc-copy-300x200.jpg 300w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/woman-learning-english-online-2021-08-26-15-34-41-utc-copy-768x512.jpg 768w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/woman-learning-english-online-2021-08-26-15-34-41-utc-copy.jpg 1200w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h4>English Course</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n			<a href=\"#\">\n						Learn More\n					</a>\n															<img width=\"600\" height=\"748\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/aged-teacher-2021-09-24-03-26-41-utc.jpg\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/aged-teacher-2021-09-24-03-26-41-utc.jpg 600w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/aged-teacher-2021-09-24-03-26-41-utc-241x300.jpg 241w\" sizes=\"(max-width: 600px) 100vw, 600px\" />															\n															<img width=\"600\" height=\"748\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/aged-teacher-2021-09-24-03-26-41-utc-2.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/aged-teacher-2021-09-24-03-26-41-utc-2.png 600w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/aged-teacher-2021-09-24-03-26-41-utc-2-241x300.png 241w\" sizes=\"(max-width: 600px) 100vw, 600px\" />															\n			<h2>Preparing Our Children’s Bright Future</h2>		\n															<img width=\"324\" height=\"287\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge2.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge2.png 324w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge2-300x266.png 300w\" sizes=\"(max-width: 324px) 100vw, 324px\" />															\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec ultrices purus nec sollicitudin eleifend. In hac habitasse platea dictumst.</p>		\n			<link rel=\"stylesheet\" href=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<h3>\n						Grade Improvement					\n				</h3>\n									<p>\n						 Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n				<h3>\n						Exam Preparation					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing.					</p>\n				<h3>\n						Social Development					\n				</h3>\n									<p>\n						Donec et massa sit amet augue laoreet venenatis id et urna.					</p>\n															<img width=\"195\" height=\"196\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c1.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c1.png 195w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c1-150x150.png 150w\" sizes=\"(max-width: 195px) 100vw, 195px\" />															\n			<h2>Our vision is every child is safe, inspired, challenged, empowered.</h2>		\n															<img width=\"324\" height=\"287\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge.png 324w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge-300x266.png 300w\" sizes=\"(max-width: 324px) 100vw, 324px\" />															\n															<img width=\"184\" height=\"181\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c3.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" />															\n		<p>Integer efficitur ligula ipsum, at vulputate mi fermentum sit amet. Sed pulvinar rutrum commodo. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean vitae tortor nec lectus mattis congue id sed tortor.</p>		\n															<img width=\"183\" height=\"183\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c4.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c4.png 183w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c4-150x150.png 150w\" sizes=\"(max-width: 183px) 100vw, 183px\" />															\n			<a href=\"#\">\n						Learn More\n					</a>\n			<h2>Our Programs for excellence</h2>		\n															<img width=\"195\" height=\"196\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c1.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c1.png 195w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c1-150x150.png 150w\" sizes=\"(max-width: 195px) 100vw, 195px\" />															\n															<img width=\"324\" height=\"287\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge2.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge2.png 324w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge2-300x266.png 300w\" sizes=\"(max-width: 324px) 100vw, 324px\" />															\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Mauris at lacus semper, fermentum mi sed, rutrum nibh. Sed gravida elit ligula, sit amet venenatis diam hendrerit iaculis.</p>		\n															<img width=\"179\" height=\"177\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c2.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" />															\n			<a href=\"#\">\n						Discover More\n					</a>\n															<img width=\"255\" height=\"255\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/grade.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/grade.png 255w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/grade-150x150.png 150w\" sizes=\"(max-width: 255px) 100vw, 255px\" />															\n			<h5>Grade Boost</h5>		\n		<p>Lorem ipsum dolor sit amet.</p>		\n															<img width=\"255\" height=\"255\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/chart.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/chart.png 255w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/chart-150x150.png 150w\" sizes=\"(max-width: 255px) 100vw, 255px\" />															\n			<h5>Skill Evaluation</h5>		\n		<p>Lorem ipsum dolor sit amet.</p>		\n															<img width=\"255\" height=\"255\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/test-exam-sheet.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/test-exam-sheet.png 255w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/test-exam-sheet-150x150.png 150w\" sizes=\"(max-width: 255px) 100vw, 255px\" />															\n			<h5>Mock Exam</h5>		\n		<p>Lorem ipsum dolor sit amet.</p>		\n															<img width=\"255\" height=\"255\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/schedule-sheet.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/schedule-sheet.png 255w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/schedule-sheet-150x150.png 150w\" sizes=\"(max-width: 255px) 100vw, 255px\" />															\n			<h5>Weekend Class</h5>		\n		<p>Lorem ipsum dolor sit amet.</p>		\n			<h2>Our Popular Teacher</h2>		\n															<img width=\"183\" height=\"183\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c4.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c4.png 183w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c4-150x150.png 150w\" sizes=\"(max-width: 183px) 100vw, 183px\" />															\n															<img width=\"184\" height=\"181\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c3.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" />															\n															<img width=\"800\" height=\"800\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/pp1.jpg\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/pp1.jpg 800w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/pp1-300x300.jpg 300w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/pp1-150x150.jpg 150w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/pp1-768x768.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h5>Harry Smith</h5>		\n			<h5>English Teacher</h5>		\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n@charset \"UTF-8\";.elementor-star-rating{color:#ccd6df;font-family:eicons;display:inline-block}.elementor-star-rating i{display:inline-block;position:relative;font-style:normal;cursor:default}.elementor-star-rating i:before{content:\"e934\";display:block;font-size:inherit;font-family:inherit;position:absolute;overflow:hidden;color:#f0ad4e;top:0;left:0}.elementor-star-rating .elementor-star-empty:before{content:none}.elementor-star-rating .elementor-star-1:before{width:10%}.elementor-star-rating .elementor-star-2:before{width:20%}.elementor-star-rating .elementor-star-3:before{width:30%}.elementor-star-rating .elementor-star-4:before{width:40%}.elementor-star-rating .elementor-star-5:before{width:50%}.elementor-star-rating .elementor-star-6:before{width:60%}.elementor-star-rating .elementor-star-7:before{width:70%}.elementor-star-rating .elementor-star-8:before{width:80%}.elementor-star-rating .elementor-star-9:before{width:90%}.elementor-star-rating__wrapper{display:flex;align-items:center}.elementor-star-rating__title{margin-right:10px}.elementor-star-rating--align-right .elementor-star-rating__wrapper{text-align:right;justify-content:flex-end}.elementor-star-rating--align-left .elementor-star-rating__wrapper{text-align:left;justify-content:flex-start}.elementor-star-rating--align-center .elementor-star-rating__wrapper{text-align:center;justify-content:center}.elementor-star-rating--align-justify .elementor-star-rating__title{margin-right:auto}@media (max-width:1024px){.elementor-star-rating-tablet--align-right .elementor-star-rating__wrapper{text-align:right;justify-content:flex-end}.elementor-star-rating-tablet--align-left .elementor-star-rating__wrapper{text-align:left;justify-content:flex-start}.elementor-star-rating-tablet--align-center .elementor-star-rating__wrapper{text-align:center;justify-content:center}.elementor-star-rating-tablet--align-justify .elementor-star-rating__title{margin-right:auto}}@media (max-width:767px){.elementor-star-rating-mobile--align-right .elementor-star-rating__wrapper{text-align:right;justify-content:flex-end}.elementor-star-rating-mobile--align-left .elementor-star-rating__wrapper{text-align:left;justify-content:flex-start}.elementor-star-rating-mobile--align-center .elementor-star-rating__wrapper{text-align:center;justify-content:center}.elementor-star-rating-mobile--align-justify .elementor-star-rating__title{margin-right:auto}}.last-star{letter-spacing:0}.elementor--star-style-star_unicode .elementor-star-rating{font-family:Arial,Helvetica,sans-serif}.elementor--star-style-star_unicode .elementor-star-rating i:not(.elementor-star-empty):before{content:\"★\"}</style>\n						<i>&#xE934;</i><i>&#xE934;</i><i>&#xE934;</i><i>&#xE934;</i><i>&#xE934;</i> 5/5		\n		<p> \" Lorem ipsum dolor sit amet, consectetur adipiscing elit. Suspendisse est neque, ultrices at enim vitae, mattis consequat dui.\"</p>		\n			<a href=\"#\">\n						Contact\n					</a>\n															<img width=\"800\" height=\"800\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/pp2.jpg\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/pp2.jpg 800w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/pp2-300x300.jpg 300w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/pp2-150x150.jpg 150w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/pp2-768x768.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h5>Gregory Warren</h5>		\n			<h5>Social Teacher</h5>		\n						<i>&#xE934;</i><i>&#xE934;</i><i>&#xE934;</i><i>&#xE934;</i><i>&#xE934;</i> 5/5		\n		<p> \" Lorem ipsum dolor sit amet, consectetur adipiscing elit. Suspendisse est neque, ultrices at enim vitae, mattis consequat dui.\"</p>		\n			<a href=\"#\">\n						Contact\n					</a>\n															<img width=\"800\" height=\"800\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/pp3.jpg\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/pp3.jpg 800w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/pp3-300x300.jpg 300w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/pp3-150x150.jpg 150w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/pp3-768x768.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h5>Peter Wong</h5>		\n			<h5>Math Teacher</h5>		\n						<i>&#xE934;</i><i>&#xE934;</i><i>&#xE934;</i><i>&#xE934;</i><i>&#xE934;</i> 5/5		\n		<p> \" Lorem ipsum dolor sit amet, consectetur adipiscing elit. Suspendisse est neque, ultrices at enim vitae, mattis consequat dui.\"</p>		\n			<a href=\"#\">\n						Contact\n					</a>\n															<img width=\"700\" height=\"171\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logoipsum-265.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logoipsum-265.png 700w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logoipsum-265-300x73.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />															\n															<img width=\"708\" height=\"171\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logoipsum-264.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logoipsum-264.png 708w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logoipsum-264-300x72.png 300w\" sizes=\"(max-width: 708px) 100vw, 708px\" />															\n															<img width=\"708\" height=\"171\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logoipsum-262.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logoipsum-262.png 708w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logoipsum-262-300x72.png 300w\" sizes=\"(max-width: 708px) 100vw, 708px\" />															\n															<img width=\"696\" height=\"171\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logoipsum-261.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logoipsum-261.png 696w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logoipsum-261-300x74.png 300w\" sizes=\"(max-width: 696px) 100vw, 696px\" />															\n															<img width=\"642\" height=\"113\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logoipsum-259.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logoipsum-259.png 642w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logoipsum-259-300x53.png 300w\" sizes=\"(max-width: 642px) 100vw, 642px\" />															\n															<img width=\"717\" height=\"167\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logoipsum-254.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logoipsum-254.png 717w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logoipsum-254-300x70.png 300w\" sizes=\"(max-width: 717px) 100vw, 717px\" />															\n			<h2>Our Trusted Partners</h2>		\n		<p>Donec hendrerit nibh in lectus molestie, id bibendum orci hendrerit. Curabitur euismod ante finibus nibh suscipit, vitae vehicula eros venenatis.</p>		\n			<h2>Join Our Education center Now</h2>		\n															<img width=\"179\" height=\"177\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c2.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" />															\n															<img width=\"183\" height=\"183\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c4.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c4.png 183w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c4-150x150.png 150w\" sizes=\"(max-width: 183px) 100vw, 183px\" />															\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<a href=\"#\">\n						Sign Up Now\n					</a>\n															<img width=\"324\" height=\"287\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge3.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge3.png 324w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge3-300x266.png 300w\" sizes=\"(max-width: 324px) 100vw, 324px\" />															\n															<img width=\"446\" height=\"593\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/cute-elementary-kids-with-books-at-school-2022-12-16-18-15-57-utc-copy.jpg\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/cute-elementary-kids-with-books-at-school-2022-12-16-18-15-57-utc-copy.jpg 446w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/cute-elementary-kids-with-books-at-school-2022-12-16-18-15-57-utc-copy-226x300.jpg 226w\" sizes=\"(max-width: 446px) 100vw, 446px\" />															\n															<img width=\"446\" height=\"593\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/cute-elementary-kids-with-books-at-school-2022-12-16-18-15-57-utc2.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/cute-elementary-kids-with-books-at-school-2022-12-16-18-15-57-utc2.png 446w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/cute-elementary-kids-with-books-at-school-2022-12-16-18-15-57-utc2-226x300.png 226w\" sizes=\"(max-width: 446px) 100vw, 446px\" />','Home','','inherit','closed','closed','','90-revision-v1','','','2023-09-05 14:39:50','2023-09-05 09:09:50','',90,'https://sahityaonline.in8.cdn-alpha.com/?p=91',0,'revision','',0),(92,1,'2023-09-05 14:52:10','2023-09-05 09:22:10','<style>/*! elementor - v3.15.0 - 20-08-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=\"500\" height=\"190\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/साहित्य-1.webp\" alt=\"साहित्य\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/साहित्य-1.webp 500w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/साहित्य-1-300x114.webp 300w\" sizes=\"(max-width: 500px) 100vw, 500px\" />															\n					Menu\n				<nav data-toggle-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;fas fa-align-justify&quot;&gt;&lt;/i&gt;\" data-close-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;far fa-window-close&quot;&gt;&lt;/i&gt;\" data-full-width=\"yes\"><ul id=\"menu-1-1c150646\"><li id=\"menu-item-158\"><a href=\"https://sahityaonline.in8.cdn-alpha.com/\" class = \"hfe-menu-item\">Home</a></li>\n<li id=\"menu-item-157\"><a href=\"https://sahityaonline.in8.cdn-alpha.com/about-us/\" class = \"hfe-menu-item\">About Us</a></li>\n<li id=\"menu-item-154\"><a href=\"https://sahityaonline.in8.cdn-alpha.com/e-magazine/\" class = \"hfe-menu-item\">E Magazine</a></li>\n<li id=\"menu-item-155\"><a href=\"https://sahityaonline.in8.cdn-alpha.com/creations/\" class = \"hfe-menu-item\">Creations</a></li>\n<li id=\"menu-item-156\"><a href=\"https://sahityaonline.in8.cdn-alpha.com/contact-us/\" class = \"hfe-menu-item\">Contact Us</a></li>\n</ul></nav>','Header','','publish','closed','closed','','header','','','2023-09-07 10:15:33','2023-09-07 04:45:33','',0,'https://sahityaonline.in8.cdn-alpha.com/?post_type=elementor-hf&#038;p=92',0,'elementor-hf','',0),(93,1,'2023-09-05 14:52:10','2023-09-05 09:22:10','','Header','','inherit','closed','closed','','92-revision-v1','','','2023-09-05 14:52:10','2023-09-05 09:22:10','',92,'https://sahityaonline.in8.cdn-alpha.com/?p=93',0,'revision','',0),(95,1,'2023-09-05 14:57:20','2023-09-05 09:27:20','','Header','','inherit','closed','closed','','92-revision-v1','','','2023-09-05 14:57:20','2023-09-05 09:27:20','',92,'https://sahityaonline.in8.cdn-alpha.com/?p=95',0,'revision','',0),(96,1,'2023-09-05 14:57:21','2023-09-05 09:27:21','','Header','','inherit','closed','closed','','92-revision-v1','','','2023-09-05 14:57:21','2023-09-05 09:27:21','',92,'https://sahityaonline.in8.cdn-alpha.com/?p=96',0,'revision','',0),(97,1,'2023-09-05 14:57:22','2023-09-05 09:27:22','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"280\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logo-1.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logo-1.png 815w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logo-1-300x105.png 300w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logo-1-768x269.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Header','','inherit','closed','closed','','92-revision-v1','','','2023-09-05 14:57:22','2023-09-05 09:27:22','',92,'https://sahityaonline.in8.cdn-alpha.com/?p=97',0,'revision','',0),(98,1,'2023-09-05 14:58:41','2023-09-05 09:28:41','<style>/*! elementor - v3.15.0 - 20-08-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=\"500\" height=\"190\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/साहित्य-2.webp\" alt=\"साहित्य\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/साहित्य-2.webp 500w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/साहित्य-2-300x114.webp 300w\" sizes=\"(max-width: 500px) 100vw, 500px\" />															\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis.</p>		\n			<style>/*! elementor - v3.15.0 - 20-08-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><h4>Explore</h4>		\n			<h2>About Us</h2>		\n			<h2>Curriculum </h2>		\n			<h2>Event</h2>		\n			<h4>Further Links</h4>		\n			<h2>Term & Condition</h2>		\n			<h2>Contact Us</h2>		\n			<h2>News</h2>		\n			<h4>Get In Touch</h4>		\n			<link rel=\"stylesheet\" href=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										2443 Oak Ridge Omaha, QA 45065\n									</li>\n								<li>\n										207-8767-452\n									</li>\n								<li>\n										support@site.com\n									</li>\n						</ul>\n		Copyright © Sahitya Powered by Ideas Cloud','Footer','','publish','closed','closed','','footer','','','2023-09-06 10:45:12','2023-09-06 05:15:12','',0,'https://sahityaonline.in8.cdn-alpha.com/?post_type=elementor-hf&#038;p=98',0,'elementor-hf','',0),(99,1,'2023-09-05 14:58:41','2023-09-05 09:28:41','','Footer','','inherit','closed','closed','','98-revision-v1','','','2023-09-05 14:58:41','2023-09-05 09:28:41','',98,'https://sahityaonline.in8.cdn-alpha.com/?p=99',0,'revision','',0),(101,1,'2023-09-05 15:00:22','2023-09-05 09:30:22','','Footer','','inherit','closed','closed','','98-revision-v1','','','2023-09-05 15:00:22','2023-09-05 09:30:22','',98,'https://sahityaonline.in8.cdn-alpha.com/?p=101',0,'revision','',0),(102,1,'2023-09-05 15:00:23','2023-09-05 09:30:23','','Footer','','inherit','closed','closed','','98-revision-v1','','','2023-09-05 15:00:23','2023-09-05 09:30:23','',98,'https://sahityaonline.in8.cdn-alpha.com/?p=102',0,'revision','',0),(103,1,'2023-09-05 15:00:24','2023-09-05 09:30:24','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"280\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logo-1.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logo-1.png 815w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logo-1-300x105.png 300w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logo-1-768x269.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis.</p>		\n			<style>/*! elementor - v3.15.0 - 20-08-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><h4>Explore</h4>		\n			<h2>About Us</h2>		\n			<h2>Curriculum </h2>		\n			<h2>Event</h2>		\n			<h4>Further Links</h4>		\n			<h2>Term & Condition</h2>		\n			<h2>Contact Us</h2>		\n			<h2>News</h2>		\n			<h4>Get In Touch</h4>		\n			<link rel=\"stylesheet\" href=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										2443 Oak Ridge Omaha, QA 45065\n									</li>\n								<li>\n										207-8767-452\n									</li>\n								<li>\n										support@site.com\n									</li>\n						</ul>\n		Copyright © [hfe_current_year] [hfe_site_title] | Powered by [hfe_site_title]','Footer','','inherit','closed','closed','','98-revision-v1','','','2023-09-05 15:00:24','2023-09-05 09:30:24','',98,'https://sahityaonline.in8.cdn-alpha.com/?p=103',0,'revision','',0),(104,1,'2023-09-05 16:45:37','2023-09-05 11:15:37','','साहित्य','','inherit','open','closed','','%e0%a4%b8%e0%a4%be%e0%a4%b9%e0%a4%bf%e0%a4%a4%e0%a5%8d%e0%a4%af-1','','','2023-09-05 16:45:48','2023-09-05 11:15:48','',92,'https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/साहित्य-1.webp',0,'attachment','image/webp',0),(105,1,'2023-09-05 16:46:21','2023-09-05 11:16:21','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"280\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logo-1.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logo-1.png 815w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logo-1-300x105.png 300w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logo-1-768x269.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Header','','inherit','closed','closed','','92-revision-v1','','','2023-09-05 16:46:21','2023-09-05 11:16:21','',92,'https://sahityaonline.in8.cdn-alpha.com/?p=105',0,'revision','',0),(106,1,'2023-09-05 16:46:22','2023-09-05 11:16:22','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"280\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logo-1.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logo-1.png 815w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logo-1-300x105.png 300w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logo-1-768x269.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Header','','inherit','closed','closed','','92-revision-v1','','','2023-09-05 16:46:22','2023-09-05 11:16:22','',92,'https://sahityaonline.in8.cdn-alpha.com/?p=106',0,'revision','',0),(107,1,'2023-09-05 16:46:22','2023-09-05 11:16:22','<style>/*! elementor - v3.15.0 - 20-08-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=\"500\" height=\"190\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/साहित्य-1.webp\" alt=\"साहित्य\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/साहित्य-1.webp 500w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/साहित्य-1-300x114.webp 300w\" sizes=\"(max-width: 500px) 100vw, 500px\" />','Header','','inherit','closed','closed','','92-revision-v1','','','2023-09-05 16:46:22','2023-09-05 11:16:22','',92,'https://sahityaonline.in8.cdn-alpha.com/?p=107',0,'revision','',0),(108,1,'2023-09-05 16:47:49','2023-09-05 11:17:49','','साहित्य','','inherit','open','closed','','%e0%a4%b8%e0%a4%be%e0%a4%b9%e0%a4%bf%e0%a4%a4%e0%a5%8d%e0%a4%af-2','','','2023-09-05 16:48:00','2023-09-05 11:18:00','',98,'https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/साहित्य-2.webp',0,'attachment','image/webp',0),(109,1,'2023-09-05 16:48:06','2023-09-05 11:18:06','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"280\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logo-1.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logo-1.png 815w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logo-1-300x105.png 300w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logo-1-768x269.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis.</p>		\n			<style>/*! elementor - v3.15.0 - 20-08-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><h4>Explore</h4>		\n			<h2>About Us</h2>		\n			<h2>Curriculum </h2>		\n			<h2>Event</h2>		\n			<h4>Further Links</h4>		\n			<h2>Term & Condition</h2>		\n			<h2>Contact Us</h2>		\n			<h2>News</h2>		\n			<h4>Get In Touch</h4>		\n			<link rel=\"stylesheet\" href=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										2443 Oak Ridge Omaha, QA 45065\n									</li>\n								<li>\n										207-8767-452\n									</li>\n								<li>\n										support@site.com\n									</li>\n						</ul>\n		Copyright © [hfe_current_year] [hfe_site_title] | Powered by [hfe_site_title]','Footer','','inherit','closed','closed','','98-revision-v1','','','2023-09-05 16:48:06','2023-09-05 11:18:06','',98,'https://sahityaonline.in8.cdn-alpha.com/?p=109',0,'revision','',0),(110,1,'2023-09-05 16:48:07','2023-09-05 11:18:07','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"280\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logo-1.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logo-1.png 815w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logo-1-300x105.png 300w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logo-1-768x269.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis.</p>		\n			<style>/*! elementor - v3.15.0 - 20-08-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><h4>Explore</h4>		\n			<h2>About Us</h2>		\n			<h2>Curriculum </h2>		\n			<h2>Event</h2>		\n			<h4>Further Links</h4>		\n			<h2>Term & Condition</h2>		\n			<h2>Contact Us</h2>		\n			<h2>News</h2>		\n			<h4>Get In Touch</h4>		\n			<link rel=\"stylesheet\" href=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										2443 Oak Ridge Omaha, QA 45065\n									</li>\n								<li>\n										207-8767-452\n									</li>\n								<li>\n										support@site.com\n									</li>\n						</ul>\n		Copyright © [hfe_current_year] [hfe_site_title] | Powered by [hfe_site_title]','Footer','','inherit','closed','closed','','98-revision-v1','','','2023-09-05 16:48:07','2023-09-05 11:18:07','',98,'https://sahityaonline.in8.cdn-alpha.com/?p=110',0,'revision','',0),(111,1,'2023-09-05 16:48:08','2023-09-05 11:18:08','<style>/*! elementor - v3.15.0 - 20-08-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=\"500\" height=\"190\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/साहित्य-2.webp\" alt=\"साहित्य\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/साहित्य-2.webp 500w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/साहित्य-2-300x114.webp 300w\" sizes=\"(max-width: 500px) 100vw, 500px\" />															\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis.</p>		\n			<style>/*! elementor - v3.15.0 - 20-08-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><h4>Explore</h4>		\n			<h2>About Us</h2>		\n			<h2>Curriculum </h2>		\n			<h2>Event</h2>		\n			<h4>Further Links</h4>		\n			<h2>Term & Condition</h2>		\n			<h2>Contact Us</h2>		\n			<h2>News</h2>		\n			<h4>Get In Touch</h4>		\n			<link rel=\"stylesheet\" href=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										2443 Oak Ridge Omaha, QA 45065\n									</li>\n								<li>\n										207-8767-452\n									</li>\n								<li>\n										support@site.com\n									</li>\n						</ul>\n		Copyright © [hfe_current_year] [hfe_site_title] | Powered by [hfe_site_title]','Footer','','inherit','closed','closed','','98-revision-v1','','','2023-09-05 16:48:08','2023-09-05 11:18:08','',98,'https://sahityaonline.in8.cdn-alpha.com/?p=111',0,'revision','',0),(112,1,'2023-09-05 16:48:33','2023-09-05 11:18:33','','साहित्य','','inherit','open','closed','','%e0%a4%b8%e0%a4%be%e0%a4%b9%e0%a4%bf%e0%a4%a4%e0%a5%8d%e0%a4%af','','','2023-09-05 16:48:41','2023-09-05 11:18:41','',0,'https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/साहित्य.webp',0,'attachment','image/webp',0),(113,1,'2023-09-05 16:48:54','2023-09-05 11:18:54','{\n    \"site_icon\": {\n        \"value\": 112,\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2023-09-05 11:18:54\"\n    }\n}','','','trash','closed','closed','','09938cc8-d9ad-4bb3-9895-64b7d7da6c46','','','2023-09-05 16:48:54','2023-09-05 11:18:54','',0,'https://sahityaonline.in8.cdn-alpha.com/09938cc8-d9ad-4bb3-9895-64b7d7da6c46/',0,'customize_changeset','',0),(114,1,'2023-09-05 16:50:20','2023-09-05 11:20:20','<h2>Smart  Learning</h2>		\n			<h2>Study Easily</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<a href=\"#\">\n						Check It Out\n					</a>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"800\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/boy3.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/boy3.png 1000w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/boy3-300x300.png 300w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/boy3-150x150.png 150w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/boy3-768x768.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"184\" height=\"181\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c3.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" />															\n															<img width=\"324\" height=\"287\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge.png 324w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge-300x266.png 300w\" sizes=\"(max-width: 324px) 100vw, 324px\" />															\n															<img width=\"195\" height=\"196\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c1.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c1.png 195w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c1-150x150.png 150w\" sizes=\"(max-width: 195px) 100vw, 195px\" />															\n															<img width=\"179\" height=\"177\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c2.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" />															\n															<img width=\"800\" height=\"800\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/little-boy-is-having-online-lessons-by-using-lapto-2022-02-03-17-43-51-utc-copy.jpg\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/little-boy-is-having-online-lessons-by-using-lapto-2022-02-03-17-43-51-utc-copy.jpg 1000w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/little-boy-is-having-online-lessons-by-using-lapto-2022-02-03-17-43-51-utc-copy-300x300.jpg 300w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/little-boy-is-having-online-lessons-by-using-lapto-2022-02-03-17-43-51-utc-copy-150x150.jpg 150w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/little-boy-is-having-online-lessons-by-using-lapto-2022-02-03-17-43-51-utc-copy-768x768.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"183\" height=\"183\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c4.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c4.png 183w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c4-150x150.png 150w\" sizes=\"(max-width: 183px) 100vw, 183px\" />															\n															<img width=\"324\" height=\"287\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge2.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge2.png 324w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge2-300x266.png 300w\" sizes=\"(max-width: 324px) 100vw, 324px\" />															\n			<style>/*! elementor - v3.15.0 - 20-08-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>Our Primary Courses</h2>		\n															<img width=\"800\" height=\"534\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/kids-taking-exam-in-school-2022-06-29-19-26-45-utc-copy-1024x683.jpg\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/kids-taking-exam-in-school-2022-06-29-19-26-45-utc-copy-1024x683.jpg 1024w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/kids-taking-exam-in-school-2022-06-29-19-26-45-utc-copy-300x200.jpg 300w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/kids-taking-exam-in-school-2022-06-29-19-26-45-utc-copy-768x512.jpg 768w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/kids-taking-exam-in-school-2022-06-29-19-26-45-utc-copy.jpg 1200w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h4>Social Studies</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n			<a href=\"#\">\n						Learn More\n					</a>\n															<img width=\"800\" height=\"534\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/portrait-of-happy-caucasian-boy-standing-at-chalkb-2021-09-03-06-28-24-utc-copy-1024x683.jpg\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/portrait-of-happy-caucasian-boy-standing-at-chalkb-2021-09-03-06-28-24-utc-copy-1024x683.jpg 1024w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/portrait-of-happy-caucasian-boy-standing-at-chalkb-2021-09-03-06-28-24-utc-copy-300x200.jpg 300w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/portrait-of-happy-caucasian-boy-standing-at-chalkb-2021-09-03-06-28-24-utc-copy-768x512.jpg 768w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/portrait-of-happy-caucasian-boy-standing-at-chalkb-2021-09-03-06-28-24-utc-copy.jpg 1200w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h4>Mathematics </h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n			<a href=\"#\">\n						Learn More\n					</a>\n															<img width=\"800\" height=\"534\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/woman-learning-english-online-2021-08-26-15-34-41-utc-copy-1024x683.jpg\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/woman-learning-english-online-2021-08-26-15-34-41-utc-copy-1024x683.jpg 1024w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/woman-learning-english-online-2021-08-26-15-34-41-utc-copy-300x200.jpg 300w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/woman-learning-english-online-2021-08-26-15-34-41-utc-copy-768x512.jpg 768w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/woman-learning-english-online-2021-08-26-15-34-41-utc-copy.jpg 1200w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h4>English Course</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n			<a href=\"#\">\n						Learn More\n					</a>\n															<img width=\"600\" height=\"748\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/aged-teacher-2021-09-24-03-26-41-utc.jpg\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/aged-teacher-2021-09-24-03-26-41-utc.jpg 600w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/aged-teacher-2021-09-24-03-26-41-utc-241x300.jpg 241w\" sizes=\"(max-width: 600px) 100vw, 600px\" />															\n															<img width=\"600\" height=\"748\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/aged-teacher-2021-09-24-03-26-41-utc-2.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/aged-teacher-2021-09-24-03-26-41-utc-2.png 600w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/aged-teacher-2021-09-24-03-26-41-utc-2-241x300.png 241w\" sizes=\"(max-width: 600px) 100vw, 600px\" />															\n			<h2>Preparing Our Children’s Bright Future</h2>		\n															<img width=\"324\" height=\"287\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge2.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge2.png 324w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge2-300x266.png 300w\" sizes=\"(max-width: 324px) 100vw, 324px\" />															\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec ultrices purus nec sollicitudin eleifend. In hac habitasse platea dictumst.</p>		\n			<link rel=\"stylesheet\" href=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<h3>\n						Grade Improvement					\n				</h3>\n									<p>\n						 Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n				<h3>\n						Exam Preparation					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing.					</p>\n				<h3>\n						Social Development					\n				</h3>\n									<p>\n						Donec et massa sit amet augue laoreet venenatis id et urna.					</p>\n															<img width=\"195\" height=\"196\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c1.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c1.png 195w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c1-150x150.png 150w\" sizes=\"(max-width: 195px) 100vw, 195px\" />															\n			<h2>Our vision is every child is safe, inspired, challenged, empowered.</h2>		\n															<img width=\"324\" height=\"287\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge.png 324w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge-300x266.png 300w\" sizes=\"(max-width: 324px) 100vw, 324px\" />															\n															<img width=\"184\" height=\"181\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c3.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" />															\n		<p>Integer efficitur ligula ipsum, at vulputate mi fermentum sit amet. Sed pulvinar rutrum commodo. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean vitae tortor nec lectus mattis congue id sed tortor.</p>		\n															<img width=\"183\" height=\"183\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c4.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c4.png 183w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c4-150x150.png 150w\" sizes=\"(max-width: 183px) 100vw, 183px\" />															\n			<a href=\"#\">\n						Learn More\n					</a>\n			<h2>Our Programs for excellence</h2>		\n															<img width=\"195\" height=\"196\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c1.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c1.png 195w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c1-150x150.png 150w\" sizes=\"(max-width: 195px) 100vw, 195px\" />															\n															<img width=\"324\" height=\"287\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge2.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge2.png 324w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge2-300x266.png 300w\" sizes=\"(max-width: 324px) 100vw, 324px\" />															\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Mauris at lacus semper, fermentum mi sed, rutrum nibh. Sed gravida elit ligula, sit amet venenatis diam hendrerit iaculis.</p>		\n															<img width=\"179\" height=\"177\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c2.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" />															\n			<a href=\"#\">\n						Discover More\n					</a>\n															<img width=\"255\" height=\"255\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/grade.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/grade.png 255w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/grade-150x150.png 150w\" sizes=\"(max-width: 255px) 100vw, 255px\" />															\n			<h5>Grade Boost</h5>		\n		<p>Lorem ipsum dolor sit amet.</p>		\n															<img width=\"255\" height=\"255\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/chart.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/chart.png 255w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/chart-150x150.png 150w\" sizes=\"(max-width: 255px) 100vw, 255px\" />															\n			<h5>Skill Evaluation</h5>		\n		<p>Lorem ipsum dolor sit amet.</p>		\n															<img width=\"255\" height=\"255\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/test-exam-sheet.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/test-exam-sheet.png 255w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/test-exam-sheet-150x150.png 150w\" sizes=\"(max-width: 255px) 100vw, 255px\" />															\n			<h5>Mock Exam</h5>		\n		<p>Lorem ipsum dolor sit amet.</p>		\n															<img width=\"255\" height=\"255\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/schedule-sheet.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/schedule-sheet.png 255w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/schedule-sheet-150x150.png 150w\" sizes=\"(max-width: 255px) 100vw, 255px\" />															\n			<h5>Weekend Class</h5>		\n		<p>Lorem ipsum dolor sit amet.</p>		\n			<h2>Our Popular Teacher</h2>		\n															<img width=\"183\" height=\"183\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c4.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c4.png 183w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c4-150x150.png 150w\" sizes=\"(max-width: 183px) 100vw, 183px\" />															\n															<img width=\"184\" height=\"181\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c3.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" />															\n															<img width=\"800\" height=\"800\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/pp1.jpg\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/pp1.jpg 800w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/pp1-300x300.jpg 300w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/pp1-150x150.jpg 150w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/pp1-768x768.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h5>Harry Smith</h5>		\n			<h5>English Teacher</h5>		\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n@charset \"UTF-8\";.elementor-star-rating{color:#ccd6df;font-family:eicons;display:inline-block}.elementor-star-rating i{display:inline-block;position:relative;font-style:normal;cursor:default}.elementor-star-rating i:before{content:\"e934\";display:block;font-size:inherit;font-family:inherit;position:absolute;overflow:hidden;color:#f0ad4e;top:0;left:0}.elementor-star-rating .elementor-star-empty:before{content:none}.elementor-star-rating .elementor-star-1:before{width:10%}.elementor-star-rating .elementor-star-2:before{width:20%}.elementor-star-rating .elementor-star-3:before{width:30%}.elementor-star-rating .elementor-star-4:before{width:40%}.elementor-star-rating .elementor-star-5:before{width:50%}.elementor-star-rating .elementor-star-6:before{width:60%}.elementor-star-rating .elementor-star-7:before{width:70%}.elementor-star-rating .elementor-star-8:before{width:80%}.elementor-star-rating .elementor-star-9:before{width:90%}.elementor-star-rating__wrapper{display:flex;align-items:center}.elementor-star-rating__title{margin-right:10px}.elementor-star-rating--align-right .elementor-star-rating__wrapper{text-align:right;justify-content:flex-end}.elementor-star-rating--align-left .elementor-star-rating__wrapper{text-align:left;justify-content:flex-start}.elementor-star-rating--align-center .elementor-star-rating__wrapper{text-align:center;justify-content:center}.elementor-star-rating--align-justify .elementor-star-rating__title{margin-right:auto}@media (max-width:1024px){.elementor-star-rating-tablet--align-right .elementor-star-rating__wrapper{text-align:right;justify-content:flex-end}.elementor-star-rating-tablet--align-left .elementor-star-rating__wrapper{text-align:left;justify-content:flex-start}.elementor-star-rating-tablet--align-center .elementor-star-rating__wrapper{text-align:center;justify-content:center}.elementor-star-rating-tablet--align-justify .elementor-star-rating__title{margin-right:auto}}@media (max-width:767px){.elementor-star-rating-mobile--align-right .elementor-star-rating__wrapper{text-align:right;justify-content:flex-end}.elementor-star-rating-mobile--align-left .elementor-star-rating__wrapper{text-align:left;justify-content:flex-start}.elementor-star-rating-mobile--align-center .elementor-star-rating__wrapper{text-align:center;justify-content:center}.elementor-star-rating-mobile--align-justify .elementor-star-rating__title{margin-right:auto}}.last-star{letter-spacing:0}.elementor--star-style-star_unicode .elementor-star-rating{font-family:Arial,Helvetica,sans-serif}.elementor--star-style-star_unicode .elementor-star-rating i:not(.elementor-star-empty):before{content:\"★\"}</style>\n						<i>&#xE934;</i><i>&#xE934;</i><i>&#xE934;</i><i>&#xE934;</i><i>&#xE934;</i> 5/5		\n		<p> \" Lorem ipsum dolor sit amet, consectetur adipiscing elit. Suspendisse est neque, ultrices at enim vitae, mattis consequat dui.\"</p>		\n			<a href=\"#\">\n						Contact\n					</a>\n															<img width=\"800\" height=\"800\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/pp2.jpg\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/pp2.jpg 800w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/pp2-300x300.jpg 300w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/pp2-150x150.jpg 150w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/pp2-768x768.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h5>Gregory Warren</h5>		\n			<h5>Social Teacher</h5>		\n						<i>&#xE934;</i><i>&#xE934;</i><i>&#xE934;</i><i>&#xE934;</i><i>&#xE934;</i> 5/5		\n		<p> \" Lorem ipsum dolor sit amet, consectetur adipiscing elit. Suspendisse est neque, ultrices at enim vitae, mattis consequat dui.\"</p>		\n			<a href=\"#\">\n						Contact\n					</a>\n															<img width=\"800\" height=\"800\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/pp3.jpg\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/pp3.jpg 800w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/pp3-300x300.jpg 300w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/pp3-150x150.jpg 150w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/pp3-768x768.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h5>Peter Wong</h5>		\n			<h5>Math Teacher</h5>		\n						<i>&#xE934;</i><i>&#xE934;</i><i>&#xE934;</i><i>&#xE934;</i><i>&#xE934;</i> 5/5		\n		<p> \" Lorem ipsum dolor sit amet, consectetur adipiscing elit. Suspendisse est neque, ultrices at enim vitae, mattis consequat dui.\"</p>		\n			<a href=\"#\">\n						Contact\n					</a>\n															<img width=\"700\" height=\"171\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logoipsum-265.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logoipsum-265.png 700w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logoipsum-265-300x73.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />															\n															<img width=\"708\" height=\"171\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logoipsum-264.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logoipsum-264.png 708w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logoipsum-264-300x72.png 300w\" sizes=\"(max-width: 708px) 100vw, 708px\" />															\n															<img width=\"708\" height=\"171\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logoipsum-262.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logoipsum-262.png 708w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logoipsum-262-300x72.png 300w\" sizes=\"(max-width: 708px) 100vw, 708px\" />															\n															<img width=\"696\" height=\"171\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logoipsum-261.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logoipsum-261.png 696w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logoipsum-261-300x74.png 300w\" sizes=\"(max-width: 696px) 100vw, 696px\" />															\n															<img width=\"642\" height=\"113\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logoipsum-259.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logoipsum-259.png 642w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logoipsum-259-300x53.png 300w\" sizes=\"(max-width: 642px) 100vw, 642px\" />															\n															<img width=\"717\" height=\"167\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logoipsum-254.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logoipsum-254.png 717w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logoipsum-254-300x70.png 300w\" sizes=\"(max-width: 717px) 100vw, 717px\" />															\n			<h2>Our Trusted Partners</h2>		\n		<p>Donec hendrerit nibh in lectus molestie, id bibendum orci hendrerit. Curabitur euismod ante finibus nibh suscipit, vitae vehicula eros venenatis.</p>		\n			<h2>Join Our Education center Now</h2>		\n															<img width=\"179\" height=\"177\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c2.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" />															\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<a href=\"#\">\n						Sign Up Now\n					</a>\n															<img width=\"324\" height=\"287\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge3.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge3.png 324w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge3-300x266.png 300w\" sizes=\"(max-width: 324px) 100vw, 324px\" />															\n															<img width=\"446\" height=\"593\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/cute-elementary-kids-with-books-at-school-2022-12-16-18-15-57-utc-copy.jpg\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/cute-elementary-kids-with-books-at-school-2022-12-16-18-15-57-utc-copy.jpg 446w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/cute-elementary-kids-with-books-at-school-2022-12-16-18-15-57-utc-copy-226x300.jpg 226w\" sizes=\"(max-width: 446px) 100vw, 446px\" />															\n															<img width=\"446\" height=\"593\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/cute-elementary-kids-with-books-at-school-2022-12-16-18-15-57-utc2.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/cute-elementary-kids-with-books-at-school-2022-12-16-18-15-57-utc2.png 446w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/cute-elementary-kids-with-books-at-school-2022-12-16-18-15-57-utc2-226x300.png 226w\" sizes=\"(max-width: 446px) 100vw, 446px\" />','Home','','publish','closed','closed','','home','','','2023-09-06 17:38:30','2023-09-06 12:08:30','',0,'https://sahityaonline.in8.cdn-alpha.com/?page_id=114',0,'page','',0),(115,1,'2023-09-05 16:50:20','2023-09-05 11:20:20','','Home','','inherit','closed','closed','','114-revision-v1','','','2023-09-05 16:50:20','2023-09-05 11:20:20','',114,'https://sahityaonline.in8.cdn-alpha.com/?p=115',0,'revision','',0),(117,1,'2023-09-05 16:56:49','2023-09-05 11:26:49','<style>/*! elementor - v3.15.0 - 20-08-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=\"500\" height=\"190\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/साहित्य-1.webp\" alt=\"साहित्य\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/साहित्य-1.webp 500w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/साहित्य-1-300x114.webp 300w\" sizes=\"(max-width: 500px) 100vw, 500px\" />','Header','','inherit','closed','closed','','92-revision-v1','','','2023-09-05 16:56:49','2023-09-05 11:26:49','',92,'https://sahityaonline.in8.cdn-alpha.com/?p=117',0,'revision','',0),(118,1,'2023-09-05 16:56:49','2023-09-05 11:26:49','<style>/*! elementor - v3.15.0 - 20-08-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=\"500\" height=\"190\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/साहित्य-1.webp\" alt=\"साहित्य\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/साहित्य-1.webp 500w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/साहित्य-1-300x114.webp 300w\" sizes=\"(max-width: 500px) 100vw, 500px\" />','Header','','inherit','closed','closed','','92-revision-v1','','','2023-09-05 16:56:49','2023-09-05 11:26:49','',92,'https://sahityaonline.in8.cdn-alpha.com/?p=118',0,'revision','',0),(119,1,'2023-09-05 16:56:50','2023-09-05 11:26:50','<style>/*! elementor - v3.15.0 - 20-08-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=\"500\" height=\"190\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/साहित्य-1.webp\" alt=\"साहित्य\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/साहित्य-1.webp 500w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/साहित्य-1-300x114.webp 300w\" sizes=\"(max-width: 500px) 100vw, 500px\" />','Header','','inherit','closed','closed','','92-revision-v1','','','2023-09-05 16:56:50','2023-09-05 11:26:50','',92,'https://sahityaonline.in8.cdn-alpha.com/?p=119',0,'revision','',0),(120,1,'2023-09-05 16:57:04','2023-09-05 11:27:04','','Home','','inherit','closed','closed','','114-revision-v1','','','2023-09-05 16:57:04','2023-09-05 11:27:04','',114,'https://sahityaonline.in8.cdn-alpha.com/?p=120',0,'revision','',0),(121,1,'2023-09-05 16:57:04','2023-09-05 11:27:04','','Home','','inherit','closed','closed','','114-revision-v1','','','2023-09-05 16:57:04','2023-09-05 11:27:04','',114,'https://sahityaonline.in8.cdn-alpha.com/?p=121',0,'revision','',0),(122,1,'2023-09-05 16:57:05','2023-09-05 11:27:05','<h2>Smart  Learning</h2>		\n			<h2>Study Easily</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<a href=\"#\">\n						Check It Out\n					</a>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"800\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/boy3.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/boy3.png 1000w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/boy3-300x300.png 300w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/boy3-150x150.png 150w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/boy3-768x768.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"184\" height=\"181\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c3.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" />															\n															<img width=\"324\" height=\"287\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge.png 324w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge-300x266.png 300w\" sizes=\"(max-width: 324px) 100vw, 324px\" />															\n															<img width=\"195\" height=\"196\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c1.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c1.png 195w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c1-150x150.png 150w\" sizes=\"(max-width: 195px) 100vw, 195px\" />															\n															<img width=\"179\" height=\"177\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c2.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" />															\n															<img width=\"800\" height=\"800\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/little-boy-is-having-online-lessons-by-using-lapto-2022-02-03-17-43-51-utc-copy.jpg\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/little-boy-is-having-online-lessons-by-using-lapto-2022-02-03-17-43-51-utc-copy.jpg 1000w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/little-boy-is-having-online-lessons-by-using-lapto-2022-02-03-17-43-51-utc-copy-300x300.jpg 300w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/little-boy-is-having-online-lessons-by-using-lapto-2022-02-03-17-43-51-utc-copy-150x150.jpg 150w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/little-boy-is-having-online-lessons-by-using-lapto-2022-02-03-17-43-51-utc-copy-768x768.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"183\" height=\"183\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c4.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c4.png 183w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c4-150x150.png 150w\" sizes=\"(max-width: 183px) 100vw, 183px\" />															\n															<img width=\"324\" height=\"287\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge2.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge2.png 324w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge2-300x266.png 300w\" sizes=\"(max-width: 324px) 100vw, 324px\" />															\n			<style>/*! elementor - v3.15.0 - 20-08-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>Our Primary Courses</h2>		\n															<img width=\"800\" height=\"534\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/kids-taking-exam-in-school-2022-06-29-19-26-45-utc-copy-1024x683.jpg\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/kids-taking-exam-in-school-2022-06-29-19-26-45-utc-copy-1024x683.jpg 1024w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/kids-taking-exam-in-school-2022-06-29-19-26-45-utc-copy-300x200.jpg 300w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/kids-taking-exam-in-school-2022-06-29-19-26-45-utc-copy-768x512.jpg 768w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/kids-taking-exam-in-school-2022-06-29-19-26-45-utc-copy.jpg 1200w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h4>Social Studies</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n			<a href=\"#\">\n						Learn More\n					</a>\n															<img width=\"800\" height=\"534\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/portrait-of-happy-caucasian-boy-standing-at-chalkb-2021-09-03-06-28-24-utc-copy-1024x683.jpg\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/portrait-of-happy-caucasian-boy-standing-at-chalkb-2021-09-03-06-28-24-utc-copy-1024x683.jpg 1024w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/portrait-of-happy-caucasian-boy-standing-at-chalkb-2021-09-03-06-28-24-utc-copy-300x200.jpg 300w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/portrait-of-happy-caucasian-boy-standing-at-chalkb-2021-09-03-06-28-24-utc-copy-768x512.jpg 768w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/portrait-of-happy-caucasian-boy-standing-at-chalkb-2021-09-03-06-28-24-utc-copy.jpg 1200w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h4>Mathematics </h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n			<a href=\"#\">\n						Learn More\n					</a>\n															<img width=\"800\" height=\"534\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/woman-learning-english-online-2021-08-26-15-34-41-utc-copy-1024x683.jpg\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/woman-learning-english-online-2021-08-26-15-34-41-utc-copy-1024x683.jpg 1024w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/woman-learning-english-online-2021-08-26-15-34-41-utc-copy-300x200.jpg 300w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/woman-learning-english-online-2021-08-26-15-34-41-utc-copy-768x512.jpg 768w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/woman-learning-english-online-2021-08-26-15-34-41-utc-copy.jpg 1200w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h4>English Course</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n			<a href=\"#\">\n						Learn More\n					</a>\n															<img width=\"600\" height=\"748\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/aged-teacher-2021-09-24-03-26-41-utc.jpg\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/aged-teacher-2021-09-24-03-26-41-utc.jpg 600w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/aged-teacher-2021-09-24-03-26-41-utc-241x300.jpg 241w\" sizes=\"(max-width: 600px) 100vw, 600px\" />															\n															<img width=\"600\" height=\"748\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/aged-teacher-2021-09-24-03-26-41-utc-2.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/aged-teacher-2021-09-24-03-26-41-utc-2.png 600w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/aged-teacher-2021-09-24-03-26-41-utc-2-241x300.png 241w\" sizes=\"(max-width: 600px) 100vw, 600px\" />															\n			<h2>Preparing Our Children’s Bright Future</h2>		\n															<img width=\"324\" height=\"287\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge2.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge2.png 324w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge2-300x266.png 300w\" sizes=\"(max-width: 324px) 100vw, 324px\" />															\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec ultrices purus nec sollicitudin eleifend. In hac habitasse platea dictumst.</p>		\n			<link rel=\"stylesheet\" href=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<h3>\n						Grade Improvement					\n				</h3>\n									<p>\n						 Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n				<h3>\n						Exam Preparation					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing.					</p>\n				<h3>\n						Social Development					\n				</h3>\n									<p>\n						Donec et massa sit amet augue laoreet venenatis id et urna.					</p>\n															<img width=\"195\" height=\"196\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c1.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c1.png 195w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c1-150x150.png 150w\" sizes=\"(max-width: 195px) 100vw, 195px\" />															\n			<h2>Our vision is every child is safe, inspired, challenged, empowered.</h2>		\n															<img width=\"324\" height=\"287\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge.png 324w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge-300x266.png 300w\" sizes=\"(max-width: 324px) 100vw, 324px\" />															\n															<img width=\"184\" height=\"181\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c3.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" />															\n		<p>Integer efficitur ligula ipsum, at vulputate mi fermentum sit amet. Sed pulvinar rutrum commodo. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean vitae tortor nec lectus mattis congue id sed tortor.</p>		\n															<img width=\"183\" height=\"183\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c4.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c4.png 183w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c4-150x150.png 150w\" sizes=\"(max-width: 183px) 100vw, 183px\" />															\n			<a href=\"#\">\n						Learn More\n					</a>\n			<h2>Our Programs for excellence</h2>		\n															<img width=\"195\" height=\"196\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c1.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c1.png 195w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c1-150x150.png 150w\" sizes=\"(max-width: 195px) 100vw, 195px\" />															\n															<img width=\"324\" height=\"287\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge2.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge2.png 324w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge2-300x266.png 300w\" sizes=\"(max-width: 324px) 100vw, 324px\" />															\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Mauris at lacus semper, fermentum mi sed, rutrum nibh. Sed gravida elit ligula, sit amet venenatis diam hendrerit iaculis.</p>		\n															<img width=\"179\" height=\"177\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c2.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" />															\n			<a href=\"#\">\n						Discover More\n					</a>\n															<img width=\"255\" height=\"255\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/grade.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/grade.png 255w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/grade-150x150.png 150w\" sizes=\"(max-width: 255px) 100vw, 255px\" />															\n			<h5>Grade Boost</h5>		\n		<p>Lorem ipsum dolor sit amet.</p>		\n															<img width=\"255\" height=\"255\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/chart.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/chart.png 255w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/chart-150x150.png 150w\" sizes=\"(max-width: 255px) 100vw, 255px\" />															\n			<h5>Skill Evaluation</h5>		\n		<p>Lorem ipsum dolor sit amet.</p>		\n															<img width=\"255\" height=\"255\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/test-exam-sheet.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/test-exam-sheet.png 255w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/test-exam-sheet-150x150.png 150w\" sizes=\"(max-width: 255px) 100vw, 255px\" />															\n			<h5>Mock Exam</h5>		\n		<p>Lorem ipsum dolor sit amet.</p>		\n															<img width=\"255\" height=\"255\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/schedule-sheet.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/schedule-sheet.png 255w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/schedule-sheet-150x150.png 150w\" sizes=\"(max-width: 255px) 100vw, 255px\" />															\n			<h5>Weekend Class</h5>		\n		<p>Lorem ipsum dolor sit amet.</p>		\n			<h2>Our Popular Teacher</h2>		\n															<img width=\"183\" height=\"183\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c4.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c4.png 183w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c4-150x150.png 150w\" sizes=\"(max-width: 183px) 100vw, 183px\" />															\n															<img width=\"184\" height=\"181\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c3.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" />															\n															<img width=\"800\" height=\"800\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/pp1.jpg\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/pp1.jpg 800w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/pp1-300x300.jpg 300w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/pp1-150x150.jpg 150w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/pp1-768x768.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h5>Harry Smith</h5>		\n			<h5>English Teacher</h5>		\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n@charset \"UTF-8\";.elementor-star-rating{color:#ccd6df;font-family:eicons;display:inline-block}.elementor-star-rating i{display:inline-block;position:relative;font-style:normal;cursor:default}.elementor-star-rating i:before{content:\"e934\";display:block;font-size:inherit;font-family:inherit;position:absolute;overflow:hidden;color:#f0ad4e;top:0;left:0}.elementor-star-rating .elementor-star-empty:before{content:none}.elementor-star-rating .elementor-star-1:before{width:10%}.elementor-star-rating .elementor-star-2:before{width:20%}.elementor-star-rating .elementor-star-3:before{width:30%}.elementor-star-rating .elementor-star-4:before{width:40%}.elementor-star-rating .elementor-star-5:before{width:50%}.elementor-star-rating .elementor-star-6:before{width:60%}.elementor-star-rating .elementor-star-7:before{width:70%}.elementor-star-rating .elementor-star-8:before{width:80%}.elementor-star-rating .elementor-star-9:before{width:90%}.elementor-star-rating__wrapper{display:flex;align-items:center}.elementor-star-rating__title{margin-right:10px}.elementor-star-rating--align-right .elementor-star-rating__wrapper{text-align:right;justify-content:flex-end}.elementor-star-rating--align-left .elementor-star-rating__wrapper{text-align:left;justify-content:flex-start}.elementor-star-rating--align-center .elementor-star-rating__wrapper{text-align:center;justify-content:center}.elementor-star-rating--align-justify .elementor-star-rating__title{margin-right:auto}@media (max-width:1024px){.elementor-star-rating-tablet--align-right .elementor-star-rating__wrapper{text-align:right;justify-content:flex-end}.elementor-star-rating-tablet--align-left .elementor-star-rating__wrapper{text-align:left;justify-content:flex-start}.elementor-star-rating-tablet--align-center .elementor-star-rating__wrapper{text-align:center;justify-content:center}.elementor-star-rating-tablet--align-justify .elementor-star-rating__title{margin-right:auto}}@media (max-width:767px){.elementor-star-rating-mobile--align-right .elementor-star-rating__wrapper{text-align:right;justify-content:flex-end}.elementor-star-rating-mobile--align-left .elementor-star-rating__wrapper{text-align:left;justify-content:flex-start}.elementor-star-rating-mobile--align-center .elementor-star-rating__wrapper{text-align:center;justify-content:center}.elementor-star-rating-mobile--align-justify .elementor-star-rating__title{margin-right:auto}}.last-star{letter-spacing:0}.elementor--star-style-star_unicode .elementor-star-rating{font-family:Arial,Helvetica,sans-serif}.elementor--star-style-star_unicode .elementor-star-rating i:not(.elementor-star-empty):before{content:\"★\"}</style>\n						<i>&#xE934;</i><i>&#xE934;</i><i>&#xE934;</i><i>&#xE934;</i><i>&#xE934;</i> 5/5		\n		<p> \" Lorem ipsum dolor sit amet, consectetur adipiscing elit. Suspendisse est neque, ultrices at enim vitae, mattis consequat dui.\"</p>		\n			<a href=\"#\">\n						Contact\n					</a>\n															<img width=\"800\" height=\"800\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/pp2.jpg\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/pp2.jpg 800w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/pp2-300x300.jpg 300w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/pp2-150x150.jpg 150w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/pp2-768x768.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h5>Gregory Warren</h5>		\n			<h5>Social Teacher</h5>		\n						<i>&#xE934;</i><i>&#xE934;</i><i>&#xE934;</i><i>&#xE934;</i><i>&#xE934;</i> 5/5		\n		<p> \" Lorem ipsum dolor sit amet, consectetur adipiscing elit. Suspendisse est neque, ultrices at enim vitae, mattis consequat dui.\"</p>		\n			<a href=\"#\">\n						Contact\n					</a>\n															<img width=\"800\" height=\"800\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/pp3.jpg\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/pp3.jpg 800w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/pp3-300x300.jpg 300w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/pp3-150x150.jpg 150w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/pp3-768x768.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h5>Peter Wong</h5>		\n			<h5>Math Teacher</h5>		\n						<i>&#xE934;</i><i>&#xE934;</i><i>&#xE934;</i><i>&#xE934;</i><i>&#xE934;</i> 5/5		\n		<p> \" Lorem ipsum dolor sit amet, consectetur adipiscing elit. Suspendisse est neque, ultrices at enim vitae, mattis consequat dui.\"</p>		\n			<a href=\"#\">\n						Contact\n					</a>\n															<img width=\"700\" height=\"171\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logoipsum-265.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logoipsum-265.png 700w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logoipsum-265-300x73.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />															\n															<img width=\"708\" height=\"171\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logoipsum-264.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logoipsum-264.png 708w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logoipsum-264-300x72.png 300w\" sizes=\"(max-width: 708px) 100vw, 708px\" />															\n															<img width=\"708\" height=\"171\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logoipsum-262.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logoipsum-262.png 708w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logoipsum-262-300x72.png 300w\" sizes=\"(max-width: 708px) 100vw, 708px\" />															\n															<img width=\"696\" height=\"171\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logoipsum-261.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logoipsum-261.png 696w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logoipsum-261-300x74.png 300w\" sizes=\"(max-width: 696px) 100vw, 696px\" />															\n															<img width=\"642\" height=\"113\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logoipsum-259.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logoipsum-259.png 642w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logoipsum-259-300x53.png 300w\" sizes=\"(max-width: 642px) 100vw, 642px\" />															\n															<img width=\"717\" height=\"167\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logoipsum-254.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logoipsum-254.png 717w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logoipsum-254-300x70.png 300w\" sizes=\"(max-width: 717px) 100vw, 717px\" />															\n			<h2>Our Trusted Partners</h2>		\n		<p>Donec hendrerit nibh in lectus molestie, id bibendum orci hendrerit. Curabitur euismod ante finibus nibh suscipit, vitae vehicula eros venenatis.</p>		\n			<h2>Join Our Education center Now</h2>		\n															<img width=\"179\" height=\"177\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c2.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" />															\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<a href=\"#\">\n						Sign Up Now\n					</a>\n															<img width=\"324\" height=\"287\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge3.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge3.png 324w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge3-300x266.png 300w\" sizes=\"(max-width: 324px) 100vw, 324px\" />															\n															<img width=\"446\" height=\"593\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/cute-elementary-kids-with-books-at-school-2022-12-16-18-15-57-utc-copy.jpg\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/cute-elementary-kids-with-books-at-school-2022-12-16-18-15-57-utc-copy.jpg 446w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/cute-elementary-kids-with-books-at-school-2022-12-16-18-15-57-utc-copy-226x300.jpg 226w\" sizes=\"(max-width: 446px) 100vw, 446px\" />															\n															<img width=\"446\" height=\"593\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/cute-elementary-kids-with-books-at-school-2022-12-16-18-15-57-utc2.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/cute-elementary-kids-with-books-at-school-2022-12-16-18-15-57-utc2.png 446w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/cute-elementary-kids-with-books-at-school-2022-12-16-18-15-57-utc2-226x300.png 226w\" sizes=\"(max-width: 446px) 100vw, 446px\" />','Home','','inherit','closed','closed','','114-revision-v1','','','2023-09-05 16:57:05','2023-09-05 11:27:05','',114,'https://sahityaonline.in8.cdn-alpha.com/?p=122',0,'revision','',0),(123,1,'2023-09-05 17:20:39','2023-09-05 11:50:39','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>About Us</h1>		\n			<style>/*! elementor - v3.15.0 - 20-08-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=\"183\" height=\"183\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c4.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c4.png 183w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c4-150x150.png 150w\" sizes=\"(max-width: 183px) 100vw, 183px\" />															\n															<img width=\"184\" height=\"181\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c3.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" />															\n															<img width=\"324\" height=\"287\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge.png 324w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge-300x266.png 300w\" sizes=\"(max-width: 324px) 100vw, 324px\" />															\n															<img width=\"600\" height=\"748\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/aged-teacher-2021-09-24-03-26-41-utc.jpg\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/aged-teacher-2021-09-24-03-26-41-utc.jpg 600w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/aged-teacher-2021-09-24-03-26-41-utc-241x300.jpg 241w\" sizes=\"(max-width: 600px) 100vw, 600px\" />															\n															<img width=\"600\" height=\"748\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/aged-teacher-2021-09-24-03-26-41-utc-2.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/aged-teacher-2021-09-24-03-26-41-utc-2.png 600w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/aged-teacher-2021-09-24-03-26-41-utc-2-241x300.png 241w\" sizes=\"(max-width: 600px) 100vw, 600px\" />															\n			<h2>Preparing Our Children’s Bright Future</h2>		\n															<img width=\"324\" height=\"287\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge2.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge2.png 324w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge2-300x266.png 300w\" sizes=\"(max-width: 324px) 100vw, 324px\" />															\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec ultrices purus nec sollicitudin eleifend. In hac habitasse platea dictumst.</p>		\n			<link rel=\"stylesheet\" href=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<h3>\n						Grade Improvement					\n				</h3>\n									<p>\n						 Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n				<h3>\n						Exam Preparation					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing.					</p>\n				<h3>\n						Social Development					\n				</h3>\n									<p>\n						Donec et massa sit amet augue laoreet venenatis id et urna.					</p>\n															<img width=\"195\" height=\"196\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c1.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c1.png 195w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c1-150x150.png 150w\" sizes=\"(max-width: 195px) 100vw, 195px\" />															\n			<h2>Our vision is every child is safe, inspired, challenged, empowered.</h2>		\n															<img width=\"324\" height=\"287\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge.png 324w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge-300x266.png 300w\" sizes=\"(max-width: 324px) 100vw, 324px\" />															\n															<img width=\"184\" height=\"181\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c3.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" />															\n		<p>Integer efficitur ligula ipsum, at vulputate mi fermentum sit amet. Sed pulvinar rutrum commodo. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean vitae tortor nec lectus mattis congue id sed tortor.</p>		\n															<img width=\"183\" height=\"183\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c4.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c4.png 183w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c4-150x150.png 150w\" sizes=\"(max-width: 183px) 100vw, 183px\" />															\n			<a href=\"#\">\n						Learn More\n					</a>\n															<img width=\"700\" height=\"171\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logoipsum-265.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logoipsum-265.png 700w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logoipsum-265-300x73.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />															\n															<img width=\"708\" height=\"171\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logoipsum-264.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logoipsum-264.png 708w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logoipsum-264-300x72.png 300w\" sizes=\"(max-width: 708px) 100vw, 708px\" />															\n															<img width=\"708\" height=\"171\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logoipsum-262.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logoipsum-262.png 708w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logoipsum-262-300x72.png 300w\" sizes=\"(max-width: 708px) 100vw, 708px\" />															\n															<img width=\"696\" height=\"171\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logoipsum-261.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logoipsum-261.png 696w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logoipsum-261-300x74.png 300w\" sizes=\"(max-width: 696px) 100vw, 696px\" />															\n															<img width=\"642\" height=\"113\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logoipsum-259.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logoipsum-259.png 642w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logoipsum-259-300x53.png 300w\" sizes=\"(max-width: 642px) 100vw, 642px\" />															\n															<img width=\"717\" height=\"167\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logoipsum-254.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logoipsum-254.png 717w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logoipsum-254-300x70.png 300w\" sizes=\"(max-width: 717px) 100vw, 717px\" />															\n			<h2>Our Trusted Partners</h2>		\n		<p>Donec hendrerit nibh in lectus molestie, id bibendum orci hendrerit. Curabitur euismod ante finibus nibh suscipit, vitae vehicula eros venenatis.</p>		\n			<h2>Join Our Education center Now</h2>		\n															<img width=\"179\" height=\"177\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c2.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" />															\n															<img width=\"183\" height=\"183\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c4.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c4.png 183w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c4-150x150.png 150w\" sizes=\"(max-width: 183px) 100vw, 183px\" />															\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<a href=\"#\">\n						Sign Up Now\n					</a>\n															<img width=\"324\" height=\"287\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge3.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge3.png 324w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge3-300x266.png 300w\" sizes=\"(max-width: 324px) 100vw, 324px\" />															\n															<img width=\"446\" height=\"593\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/cute-elementary-kids-with-books-at-school-2022-12-16-18-15-57-utc-copy.jpg\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/cute-elementary-kids-with-books-at-school-2022-12-16-18-15-57-utc-copy.jpg 446w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/cute-elementary-kids-with-books-at-school-2022-12-16-18-15-57-utc-copy-226x300.jpg 226w\" sizes=\"(max-width: 446px) 100vw, 446px\" />															\n															<img width=\"446\" height=\"593\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/cute-elementary-kids-with-books-at-school-2022-12-16-18-15-57-utc2.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/cute-elementary-kids-with-books-at-school-2022-12-16-18-15-57-utc2.png 446w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/cute-elementary-kids-with-books-at-school-2022-12-16-18-15-57-utc2-226x300.png 226w\" sizes=\"(max-width: 446px) 100vw, 446px\" />','About Us','','publish','closed','closed','','about-us','','','2023-09-05 17:36:53','2023-09-05 12:06:53','',0,'https://sahityaonline.in8.cdn-alpha.com/?page_id=123',0,'page','',0),(124,1,'2023-09-05 17:20:39','2023-09-05 11:50:39','','About Us','','inherit','closed','closed','','123-revision-v1','','','2023-09-05 17:20:39','2023-09-05 11:50:39','',123,'https://sahityaonline.in8.cdn-alpha.com/?p=124',0,'revision','',0),(126,1,'2023-09-05 17:36:52','2023-09-05 12:06:52','','About Us','','inherit','closed','closed','','123-revision-v1','','','2023-09-05 17:36:52','2023-09-05 12:06:52','',123,'https://sahityaonline.in8.cdn-alpha.com/?p=126',0,'revision','',0),(127,1,'2023-09-05 17:36:52','2023-09-05 12:06:52','','About Us','','inherit','closed','closed','','123-revision-v1','','','2023-09-05 17:36:52','2023-09-05 12:06:52','',123,'https://sahityaonline.in8.cdn-alpha.com/?p=127',0,'revision','',0),(128,1,'2023-09-05 17:36:53','2023-09-05 12:06:53','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>About Us</h1>		\n			<style>/*! elementor - v3.15.0 - 20-08-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=\"183\" height=\"183\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c4.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c4.png 183w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c4-150x150.png 150w\" sizes=\"(max-width: 183px) 100vw, 183px\" />															\n															<img width=\"184\" height=\"181\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c3.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" />															\n															<img width=\"324\" height=\"287\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge.png 324w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge-300x266.png 300w\" sizes=\"(max-width: 324px) 100vw, 324px\" />															\n															<img width=\"600\" height=\"748\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/aged-teacher-2021-09-24-03-26-41-utc.jpg\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/aged-teacher-2021-09-24-03-26-41-utc.jpg 600w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/aged-teacher-2021-09-24-03-26-41-utc-241x300.jpg 241w\" sizes=\"(max-width: 600px) 100vw, 600px\" />															\n															<img width=\"600\" height=\"748\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/aged-teacher-2021-09-24-03-26-41-utc-2.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/aged-teacher-2021-09-24-03-26-41-utc-2.png 600w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/aged-teacher-2021-09-24-03-26-41-utc-2-241x300.png 241w\" sizes=\"(max-width: 600px) 100vw, 600px\" />															\n			<h2>Preparing Our Children’s Bright Future</h2>		\n															<img width=\"324\" height=\"287\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge2.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge2.png 324w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge2-300x266.png 300w\" sizes=\"(max-width: 324px) 100vw, 324px\" />															\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec ultrices purus nec sollicitudin eleifend. In hac habitasse platea dictumst.</p>		\n			<link rel=\"stylesheet\" href=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<h3>\n						Grade Improvement					\n				</h3>\n									<p>\n						 Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n				<h3>\n						Exam Preparation					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing.					</p>\n				<h3>\n						Social Development					\n				</h3>\n									<p>\n						Donec et massa sit amet augue laoreet venenatis id et urna.					</p>\n															<img width=\"195\" height=\"196\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c1.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c1.png 195w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c1-150x150.png 150w\" sizes=\"(max-width: 195px) 100vw, 195px\" />															\n			<h2>Our vision is every child is safe, inspired, challenged, empowered.</h2>		\n															<img width=\"324\" height=\"287\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge.png 324w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge-300x266.png 300w\" sizes=\"(max-width: 324px) 100vw, 324px\" />															\n															<img width=\"184\" height=\"181\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c3.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" />															\n		<p>Integer efficitur ligula ipsum, at vulputate mi fermentum sit amet. Sed pulvinar rutrum commodo. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean vitae tortor nec lectus mattis congue id sed tortor.</p>		\n															<img width=\"183\" height=\"183\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c4.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c4.png 183w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c4-150x150.png 150w\" sizes=\"(max-width: 183px) 100vw, 183px\" />															\n			<a href=\"#\">\n						Learn More\n					</a>\n															<img width=\"700\" height=\"171\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logoipsum-265.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logoipsum-265.png 700w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logoipsum-265-300x73.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />															\n															<img width=\"708\" height=\"171\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logoipsum-264.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logoipsum-264.png 708w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logoipsum-264-300x72.png 300w\" sizes=\"(max-width: 708px) 100vw, 708px\" />															\n															<img width=\"708\" height=\"171\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logoipsum-262.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logoipsum-262.png 708w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logoipsum-262-300x72.png 300w\" sizes=\"(max-width: 708px) 100vw, 708px\" />															\n															<img width=\"696\" height=\"171\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logoipsum-261.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logoipsum-261.png 696w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logoipsum-261-300x74.png 300w\" sizes=\"(max-width: 696px) 100vw, 696px\" />															\n															<img width=\"642\" height=\"113\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logoipsum-259.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logoipsum-259.png 642w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logoipsum-259-300x53.png 300w\" sizes=\"(max-width: 642px) 100vw, 642px\" />															\n															<img width=\"717\" height=\"167\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logoipsum-254.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logoipsum-254.png 717w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logoipsum-254-300x70.png 300w\" sizes=\"(max-width: 717px) 100vw, 717px\" />															\n			<h2>Our Trusted Partners</h2>		\n		<p>Donec hendrerit nibh in lectus molestie, id bibendum orci hendrerit. Curabitur euismod ante finibus nibh suscipit, vitae vehicula eros venenatis.</p>		\n			<h2>Join Our Education center Now</h2>		\n															<img width=\"179\" height=\"177\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c2.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" />															\n															<img width=\"183\" height=\"183\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c4.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c4.png 183w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c4-150x150.png 150w\" sizes=\"(max-width: 183px) 100vw, 183px\" />															\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<a href=\"#\">\n						Sign Up Now\n					</a>\n															<img width=\"324\" height=\"287\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge3.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge3.png 324w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge3-300x266.png 300w\" sizes=\"(max-width: 324px) 100vw, 324px\" />															\n															<img width=\"446\" height=\"593\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/cute-elementary-kids-with-books-at-school-2022-12-16-18-15-57-utc-copy.jpg\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/cute-elementary-kids-with-books-at-school-2022-12-16-18-15-57-utc-copy.jpg 446w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/cute-elementary-kids-with-books-at-school-2022-12-16-18-15-57-utc-copy-226x300.jpg 226w\" sizes=\"(max-width: 446px) 100vw, 446px\" />															\n															<img width=\"446\" height=\"593\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/cute-elementary-kids-with-books-at-school-2022-12-16-18-15-57-utc2.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/cute-elementary-kids-with-books-at-school-2022-12-16-18-15-57-utc2.png 446w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/cute-elementary-kids-with-books-at-school-2022-12-16-18-15-57-utc2-226x300.png 226w\" sizes=\"(max-width: 446px) 100vw, 446px\" />','About Us','','inherit','closed','closed','','123-revision-v1','','','2023-09-05 17:36:53','2023-09-05 12:06:53','',123,'https://sahityaonline.in8.cdn-alpha.com/?p=128',0,'revision','',0),(129,1,'2023-09-06 10:45:11','2023-09-06 05:15:11','<style>/*! elementor - v3.15.0 - 20-08-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=\"500\" height=\"190\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/साहित्य-2.webp\" alt=\"साहित्य\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/साहित्य-2.webp 500w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/साहित्य-2-300x114.webp 300w\" sizes=\"(max-width: 500px) 100vw, 500px\" />															\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis.</p>		\n			<style>/*! elementor - v3.15.0 - 20-08-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><h4>Explore</h4>		\n			<h2>About Us</h2>		\n			<h2>Curriculum </h2>		\n			<h2>Event</h2>		\n			<h4>Further Links</h4>		\n			<h2>Term & Condition</h2>		\n			<h2>Contact Us</h2>		\n			<h2>News</h2>		\n			<h4>Get In Touch</h4>		\n			<link rel=\"stylesheet\" href=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										2443 Oak Ridge Omaha, QA 45065\n									</li>\n								<li>\n										207-8767-452\n									</li>\n								<li>\n										support@site.com\n									</li>\n						</ul>\n		Copyright © [hfe_current_year] [hfe_site_title] | Powered by [hfe_site_title]','Footer','','inherit','closed','closed','','98-revision-v1','','','2023-09-06 10:45:11','2023-09-06 05:15:11','',98,'https://sahityaonline.in8.cdn-alpha.com/?p=129',0,'revision','',0),(130,1,'2023-09-06 10:45:11','2023-09-06 05:15:11','<style>/*! elementor - v3.15.0 - 20-08-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=\"500\" height=\"190\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/साहित्य-2.webp\" alt=\"साहित्य\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/साहित्य-2.webp 500w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/साहित्य-2-300x114.webp 300w\" sizes=\"(max-width: 500px) 100vw, 500px\" />															\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis.</p>		\n			<style>/*! elementor - v3.15.0 - 20-08-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><h4>Explore</h4>		\n			<h2>About Us</h2>		\n			<h2>Curriculum </h2>		\n			<h2>Event</h2>		\n			<h4>Further Links</h4>		\n			<h2>Term & Condition</h2>		\n			<h2>Contact Us</h2>		\n			<h2>News</h2>		\n			<h4>Get In Touch</h4>		\n			<link rel=\"stylesheet\" href=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										2443 Oak Ridge Omaha, QA 45065\n									</li>\n								<li>\n										207-8767-452\n									</li>\n								<li>\n										support@site.com\n									</li>\n						</ul>\n		Copyright © [hfe_current_year] [hfe_site_title] | Powered by [hfe_site_title]','Footer','','inherit','closed','closed','','98-revision-v1','','','2023-09-06 10:45:11','2023-09-06 05:15:11','',98,'https://sahityaonline.in8.cdn-alpha.com/?p=130',0,'revision','',0),(131,1,'2023-09-06 10:45:12','2023-09-06 05:15:12','<style>/*! elementor - v3.15.0 - 20-08-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=\"500\" height=\"190\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/साहित्य-2.webp\" alt=\"साहित्य\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/साहित्य-2.webp 500w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/साहित्य-2-300x114.webp 300w\" sizes=\"(max-width: 500px) 100vw, 500px\" />															\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis.</p>		\n			<style>/*! elementor - v3.15.0 - 20-08-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><h4>Explore</h4>		\n			<h2>About Us</h2>		\n			<h2>Curriculum </h2>		\n			<h2>Event</h2>		\n			<h4>Further Links</h4>		\n			<h2>Term & Condition</h2>		\n			<h2>Contact Us</h2>		\n			<h2>News</h2>		\n			<h4>Get In Touch</h4>		\n			<link rel=\"stylesheet\" href=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										2443 Oak Ridge Omaha, QA 45065\n									</li>\n								<li>\n										207-8767-452\n									</li>\n								<li>\n										support@site.com\n									</li>\n						</ul>\n		Copyright © Sahitya Powered by Ideas Cloud','Footer','','inherit','closed','closed','','98-revision-v1','','','2023-09-06 10:45:12','2023-09-06 05:15:12','',98,'https://sahityaonline.in8.cdn-alpha.com/?p=131',0,'revision','',0),(132,1,'2023-09-06 10:53:22','2023-09-06 05:23:22','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>Contact Us</h1>		\n			<style>/*! elementor - v3.15.0 - 20-08-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=\"183\" height=\"183\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c4.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c4.png 183w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c4-150x150.png 150w\" sizes=\"(max-width: 183px) 100vw, 183px\" />															\n															<img width=\"184\" height=\"181\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c3.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" />															\n															<img width=\"324\" height=\"287\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge.png 324w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge-300x266.png 300w\" sizes=\"(max-width: 324px) 100vw, 324px\" />															\n			<h2>Our Number</h2>		\n			<h4>+6282 4032 567 </h4>		\n			<h2>Email Address</h2>		\n			<h4>example@email.com</h4>		\n			<h2>Our location</h2>		\n			<h4>2443 Oak Ridge Omaha, QA 45065</h4>		\n			<h2>Get in touch</h2>		\n		<p>Nulla nec ligula molestie, pulvinar mi id, vulputate magna. Etiam lobortis velit vitae ante aliquet tincidunt.</p>		\n		<!----------------------------- \n			* controls_data : find the the props passed indie of data attribute\n			* props.SubmitResponseMarkup : contains the markup of error or success message\n			* https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Template_literals\n		--------------------------- -->\n			<style>/*! elementor - v3.15.0 - 20-08-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=London%20Eye%2C%20London%2C%20United%20Kingdom&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"London Eye, London, United Kingdom\"\n					aria-label=\"London Eye, London, United Kingdom\"\n			></iframe>\n			<h2>Join Our Education center Now</h2>		\n															<img width=\"179\" height=\"177\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c2.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" />															\n															<img width=\"183\" height=\"183\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c4.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c4.png 183w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c4-150x150.png 150w\" sizes=\"(max-width: 183px) 100vw, 183px\" />															\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<a href=\"#\">\n						Sign Up Now\n					</a>\n															<img width=\"324\" height=\"287\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge3.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge3.png 324w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge3-300x266.png 300w\" sizes=\"(max-width: 324px) 100vw, 324px\" />															\n															<img width=\"446\" height=\"593\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/cute-elementary-kids-with-books-at-school-2022-12-16-18-15-57-utc-copy.jpg\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/cute-elementary-kids-with-books-at-school-2022-12-16-18-15-57-utc-copy.jpg 446w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/cute-elementary-kids-with-books-at-school-2022-12-16-18-15-57-utc-copy-226x300.jpg 226w\" sizes=\"(max-width: 446px) 100vw, 446px\" />															\n															<img width=\"446\" height=\"593\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/cute-elementary-kids-with-books-at-school-2022-12-16-18-15-57-utc2.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/cute-elementary-kids-with-books-at-school-2022-12-16-18-15-57-utc2.png 446w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/cute-elementary-kids-with-books-at-school-2022-12-16-18-15-57-utc2-226x300.png 226w\" sizes=\"(max-width: 446px) 100vw, 446px\" />','Contact Us','','publish','closed','closed','','contact-us','','','2023-09-06 10:57:27','2023-09-06 05:27:27','',0,'https://sahityaonline.in8.cdn-alpha.com/?page_id=132',0,'page','',0),(133,1,'2023-09-06 10:53:22','2023-09-06 05:23:22','','Contact Us','','inherit','closed','closed','','132-revision-v1','','','2023-09-06 10:53:22','2023-09-06 05:23:22','',132,'https://sahityaonline.in8.cdn-alpha.com/?p=133',0,'revision','',0),(135,1,'2023-09-06 10:57:25','2023-09-06 05:27:25','','Contact Us','','inherit','closed','closed','','132-revision-v1','','','2023-09-06 10:57:25','2023-09-06 05:27:25','',132,'https://sahityaonline.in8.cdn-alpha.com/?p=135',0,'revision','',0),(136,1,'2023-09-06 10:57:26','2023-09-06 05:27:26','','Contact Us','','inherit','closed','closed','','132-revision-v1','','','2023-09-06 10:57:26','2023-09-06 05:27:26','',132,'https://sahityaonline.in8.cdn-alpha.com/?p=136',0,'revision','',0),(137,1,'2023-09-06 10:57:27','2023-09-06 05:27:27','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>Contact Us</h1>		\n			<style>/*! elementor - v3.15.0 - 20-08-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=\"183\" height=\"183\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c4.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c4.png 183w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c4-150x150.png 150w\" sizes=\"(max-width: 183px) 100vw, 183px\" />															\n															<img width=\"184\" height=\"181\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c3.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" />															\n															<img width=\"324\" height=\"287\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge.png 324w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge-300x266.png 300w\" sizes=\"(max-width: 324px) 100vw, 324px\" />															\n			<h2>Our Number</h2>		\n			<h4>+6282 4032 567 </h4>		\n			<h2>Email Address</h2>		\n			<h4>example@email.com</h4>		\n			<h2>Our location</h2>		\n			<h4>2443 Oak Ridge Omaha, QA 45065</h4>		\n			<h2>Get in touch</h2>		\n		<p>Nulla nec ligula molestie, pulvinar mi id, vulputate magna. Etiam lobortis velit vitae ante aliquet tincidunt.</p>		\n		<!----------------------------- \n			* controls_data : find the the props passed indie of data attribute\n			* props.SubmitResponseMarkup : contains the markup of error or success message\n			* https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Template_literals\n		--------------------------- -->\n			<style>/*! elementor - v3.15.0 - 20-08-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=London%20Eye%2C%20London%2C%20United%20Kingdom&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"London Eye, London, United Kingdom\"\n					aria-label=\"London Eye, London, United Kingdom\"\n			></iframe>\n			<h2>Join Our Education center Now</h2>		\n															<img width=\"179\" height=\"177\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c2.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" />															\n															<img width=\"183\" height=\"183\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c4.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c4.png 183w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c4-150x150.png 150w\" sizes=\"(max-width: 183px) 100vw, 183px\" />															\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<a href=\"#\">\n						Sign Up Now\n					</a>\n															<img width=\"324\" height=\"287\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge3.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge3.png 324w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge3-300x266.png 300w\" sizes=\"(max-width: 324px) 100vw, 324px\" />															\n															<img width=\"446\" height=\"593\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/cute-elementary-kids-with-books-at-school-2022-12-16-18-15-57-utc-copy.jpg\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/cute-elementary-kids-with-books-at-school-2022-12-16-18-15-57-utc-copy.jpg 446w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/cute-elementary-kids-with-books-at-school-2022-12-16-18-15-57-utc-copy-226x300.jpg 226w\" sizes=\"(max-width: 446px) 100vw, 446px\" />															\n															<img width=\"446\" height=\"593\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/cute-elementary-kids-with-books-at-school-2022-12-16-18-15-57-utc2.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/cute-elementary-kids-with-books-at-school-2022-12-16-18-15-57-utc2.png 446w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/cute-elementary-kids-with-books-at-school-2022-12-16-18-15-57-utc2-226x300.png 226w\" sizes=\"(max-width: 446px) 100vw, 446px\" />','Contact Us','','inherit','closed','closed','','132-revision-v1','','','2023-09-06 10:57:27','2023-09-06 05:27:27','',132,'https://sahityaonline.in8.cdn-alpha.com/?p=137',0,'revision','',0),(138,1,'2023-09-06 10:59:48','2023-09-06 05:29:48','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>Blog</h1>		\n			<style>/*! elementor - v3.15.0 - 20-08-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=\"183\" height=\"183\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c4.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c4.png 183w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c4-150x150.png 150w\" sizes=\"(max-width: 183px) 100vw, 183px\" />															\n															<img width=\"184\" height=\"181\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c3.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" />															\n															<img width=\"324\" height=\"287\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge.png 324w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge-300x266.png 300w\" sizes=\"(max-width: 324px) 100vw, 324px\" />															\n			<h2>Articles & Stories</h2>		\n															<img width=\"184\" height=\"181\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c3.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" />															\n													<!-- .elementskit-entry-header END -->\n																					<h2>\n					<a href=\"https://sahityaonline.in8.cdn-alpha.com/hello-world/\">\n						Hello world!					</a>\n				</h2>\n																																										<p>Welcome to WordPress. This is your first post. Edit or delete it, then start writing!</p>\n                                                                            <a href=\"https://sahityaonline.in8.cdn-alpha.com/hello-world/\" >\n                                                                                    read more                                         </a>\n                                                    <!-- .elementskit-post-body END -->\n															<img width=\"195\" height=\"196\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c1.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c1.png 195w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c1-150x150.png 150w\" sizes=\"(max-width: 195px) 100vw, 195px\" />															\n			<h2>Join Our Education center Now</h2>		\n															<img width=\"179\" height=\"177\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c2.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" />															\n															<img width=\"183\" height=\"183\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c4.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c4.png 183w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c4-150x150.png 150w\" sizes=\"(max-width: 183px) 100vw, 183px\" />															\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<a href=\"#\">\n						Sign Up Now\n					</a>\n															<img width=\"324\" height=\"287\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge3.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge3.png 324w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge3-300x266.png 300w\" sizes=\"(max-width: 324px) 100vw, 324px\" />															\n															<img width=\"446\" height=\"593\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/cute-elementary-kids-with-books-at-school-2022-12-16-18-15-57-utc-copy.jpg\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/cute-elementary-kids-with-books-at-school-2022-12-16-18-15-57-utc-copy.jpg 446w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/cute-elementary-kids-with-books-at-school-2022-12-16-18-15-57-utc-copy-226x300.jpg 226w\" sizes=\"(max-width: 446px) 100vw, 446px\" />															\n															<img width=\"446\" height=\"593\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/cute-elementary-kids-with-books-at-school-2022-12-16-18-15-57-utc2.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/cute-elementary-kids-with-books-at-school-2022-12-16-18-15-57-utc2.png 446w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/cute-elementary-kids-with-books-at-school-2022-12-16-18-15-57-utc2-226x300.png 226w\" sizes=\"(max-width: 446px) 100vw, 446px\" />','Creations','','publish','closed','closed','','creations','','','2023-09-06 11:01:05','2023-09-06 05:31:05','',0,'https://sahityaonline.in8.cdn-alpha.com/?page_id=138',0,'page','',0),(139,1,'2023-09-06 10:59:48','2023-09-06 05:29:48','','Creations','','inherit','closed','closed','','138-revision-v1','','','2023-09-06 10:59:48','2023-09-06 05:29:48','',138,'https://sahityaonline.in8.cdn-alpha.com/?p=139',0,'revision','',0),(141,1,'2023-09-06 11:01:04','2023-09-06 05:31:04','','Creations','','inherit','closed','closed','','138-revision-v1','','','2023-09-06 11:01:04','2023-09-06 05:31:04','',138,'https://sahityaonline.in8.cdn-alpha.com/?p=141',0,'revision','',0),(142,1,'2023-09-06 11:01:04','2023-09-06 05:31:04','','Creations','','inherit','closed','closed','','138-revision-v1','','','2023-09-06 11:01:04','2023-09-06 05:31:04','',138,'https://sahityaonline.in8.cdn-alpha.com/?p=142',0,'revision','',0),(143,1,'2023-09-06 11:01:05','2023-09-06 05:31:05','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>Blog</h1>		\n			<style>/*! elementor - v3.15.0 - 20-08-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=\"183\" height=\"183\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c4.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c4.png 183w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c4-150x150.png 150w\" sizes=\"(max-width: 183px) 100vw, 183px\" />															\n															<img width=\"184\" height=\"181\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c3.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" />															\n															<img width=\"324\" height=\"287\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge.png 324w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge-300x266.png 300w\" sizes=\"(max-width: 324px) 100vw, 324px\" />															\n			<h2>Articles & Stories</h2>		\n															<img width=\"184\" height=\"181\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c3.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" />															\n													<!-- .elementskit-entry-header END -->\n																					<h2>\n					<a href=\"https://sahityaonline.in8.cdn-alpha.com/hello-world/\">\n						Hello world!					</a>\n				</h2>\n																																										<p>Welcome to WordPress. This is your first post. Edit or delete it, then start writing!</p>\n                                                                            <a href=\"https://sahityaonline.in8.cdn-alpha.com/hello-world/\" >\n                                                                                    read more                                         </a>\n                                                    <!-- .elementskit-post-body END -->\n															<img width=\"195\" height=\"196\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c1.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c1.png 195w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c1-150x150.png 150w\" sizes=\"(max-width: 195px) 100vw, 195px\" />															\n			<h2>Join Our Education center Now</h2>		\n															<img width=\"179\" height=\"177\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c2.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" />															\n															<img width=\"183\" height=\"183\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c4.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c4.png 183w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c4-150x150.png 150w\" sizes=\"(max-width: 183px) 100vw, 183px\" />															\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<a href=\"#\">\n						Sign Up Now\n					</a>\n															<img width=\"324\" height=\"287\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge3.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge3.png 324w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge3-300x266.png 300w\" sizes=\"(max-width: 324px) 100vw, 324px\" />															\n															<img width=\"446\" height=\"593\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/cute-elementary-kids-with-books-at-school-2022-12-16-18-15-57-utc-copy.jpg\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/cute-elementary-kids-with-books-at-school-2022-12-16-18-15-57-utc-copy.jpg 446w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/cute-elementary-kids-with-books-at-school-2022-12-16-18-15-57-utc-copy-226x300.jpg 226w\" sizes=\"(max-width: 446px) 100vw, 446px\" />															\n															<img width=\"446\" height=\"593\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/cute-elementary-kids-with-books-at-school-2022-12-16-18-15-57-utc2.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/cute-elementary-kids-with-books-at-school-2022-12-16-18-15-57-utc2.png 446w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/cute-elementary-kids-with-books-at-school-2022-12-16-18-15-57-utc2-226x300.png 226w\" sizes=\"(max-width: 446px) 100vw, 446px\" />','Creations','','inherit','closed','closed','','138-revision-v1','','','2023-09-06 11:01:05','2023-09-06 05:31:05','',138,'https://sahityaonline.in8.cdn-alpha.com/?p=143',0,'revision','',0),(144,1,'2023-09-06 11:03:09','2023-09-06 05:33:09','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>E-Magazine</h1>		\n			<style>/*! elementor - v3.15.0 - 20-08-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=\"183\" height=\"183\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c4.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c4.png 183w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c4-150x150.png 150w\" sizes=\"(max-width: 183px) 100vw, 183px\" />															\n															<img width=\"184\" height=\"181\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c3.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" />															\n															<img width=\"324\" height=\"287\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge.png 324w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge-300x266.png 300w\" sizes=\"(max-width: 324px) 100vw, 324px\" />															\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>		\n															<img width=\"184\" height=\"181\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c3.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" />															\n			<h2>Mathematic  Class</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam vitae iaculis lorem, non finibus arcu. Nullam sed ligula sapien. Aliquam vulputate justo sem, nec tincidunt odio gravida vitae. Nunc porta finibus pellentesque.</p><p>Vestibulum ipsum elit, condimentum vitae dapibus vel, interdum in urna. Aliquam semper vitae lacus eu elementum. </p><p>Etiam cursus commodo ante vitae faucibus. Aliquam faucibus, mauris ut aliquet dignissim, turpis ipsum efficitur dui, quis efficitur tellus magna non metus. Fusce tempus justo nisi, non varius justo aliquet quis. Phasellus interdum lectus mattis mauris suscipit ultrices. Phasellus ac vulputate lectus. Nunc sit amet dapibus odio, nec aliquam sem. Etiam pretium mollis nulla, ac ultrices leo tincidunt vitae.</p>		\n			<h5>Group 1 Schedule </h5>		\n			<link rel=\"stylesheet\" href=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										Friday,       11am-6pm\n									</li>\n								<li>\n										Saturday,  10am-7pm\n									</li>\n								<li>\n										Sunday,   11am-5pm\n									</li>\n						</ul>\n			<h5>Group 2 Schedule </h5>		\n					<ul>\n							<li>\n										Monday,       11am-6pm\n									</li>\n								<li>\n										Tuesday,  10am-7pm\n									</li>\n								<li>\n										Wednesday,   11am-5pm\n									</li>\n						</ul>\n															<img width=\"800\" height=\"800\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/pp3.jpg\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/pp3.jpg 800w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/pp3-300x300.jpg 300w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/pp3-150x150.jpg 150w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/pp3-768x768.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h5>Peter Wong</h5>		\n			<h5>Math Teacher</h5>		\n			<h2>Join Our Education center Now</h2>		\n															<img width=\"179\" height=\"177\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c2.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" />															\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<a href=\"#\">\n						Sign Up Now\n					</a>\n															<img width=\"324\" height=\"287\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge3.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge3.png 324w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge3-300x266.png 300w\" sizes=\"(max-width: 324px) 100vw, 324px\" />															\n															<img width=\"446\" height=\"593\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/cute-elementary-kids-with-books-at-school-2022-12-16-18-15-57-utc-copy.jpg\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/cute-elementary-kids-with-books-at-school-2022-12-16-18-15-57-utc-copy.jpg 446w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/cute-elementary-kids-with-books-at-school-2022-12-16-18-15-57-utc-copy-226x300.jpg 226w\" sizes=\"(max-width: 446px) 100vw, 446px\" />															\n															<img width=\"446\" height=\"593\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/cute-elementary-kids-with-books-at-school-2022-12-16-18-15-57-utc2.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/cute-elementary-kids-with-books-at-school-2022-12-16-18-15-57-utc2.png 446w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/cute-elementary-kids-with-books-at-school-2022-12-16-18-15-57-utc2-226x300.png 226w\" sizes=\"(max-width: 446px) 100vw, 446px\" />','E Magazine','','publish','closed','closed','','e-magazine','','','2023-09-06 11:17:08','2023-09-06 05:47:08','',0,'https://sahityaonline.in8.cdn-alpha.com/?page_id=144',0,'page','',0),(145,1,'2023-09-06 11:03:09','2023-09-06 05:33:09','','E Magazine','','inherit','closed','closed','','144-revision-v1','','','2023-09-06 11:03:09','2023-09-06 05:33:09','',144,'https://sahityaonline.in8.cdn-alpha.com/?p=145',0,'revision','',0),(147,1,'2023-09-06 11:13:41','2023-09-06 05:43:41','','E Magazine','','inherit','closed','closed','','144-revision-v1','','','2023-09-06 11:13:41','2023-09-06 05:43:41','',144,'https://sahityaonline.in8.cdn-alpha.com/?p=147',0,'revision','',0),(148,1,'2023-09-06 11:13:41','2023-09-06 05:43:41','','E Magazine','','inherit','closed','closed','','144-revision-v1','','','2023-09-06 11:13:41','2023-09-06 05:43:41','',144,'https://sahityaonline.in8.cdn-alpha.com/?p=148',0,'revision','',0),(149,1,'2023-09-06 11:13:42','2023-09-06 05:43:42','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>Class-Detail</h1>		\n			<style>/*! elementor - v3.15.0 - 20-08-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=\"183\" height=\"183\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c4.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c4.png 183w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c4-150x150.png 150w\" sizes=\"(max-width: 183px) 100vw, 183px\" />															\n															<img width=\"184\" height=\"181\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c3.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" />															\n															<img width=\"324\" height=\"287\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge.png 324w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge-300x266.png 300w\" sizes=\"(max-width: 324px) 100vw, 324px\" />															\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>		\n															<img width=\"184\" height=\"181\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c3.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" />															\n			<h2>Mathematic  Class</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam vitae iaculis lorem, non finibus arcu. Nullam sed ligula sapien. Aliquam vulputate justo sem, nec tincidunt odio gravida vitae. Nunc porta finibus pellentesque.</p><p>Vestibulum ipsum elit, condimentum vitae dapibus vel, interdum in urna. Aliquam semper vitae lacus eu elementum. </p><p>Etiam cursus commodo ante vitae faucibus. Aliquam faucibus, mauris ut aliquet dignissim, turpis ipsum efficitur dui, quis efficitur tellus magna non metus. Fusce tempus justo nisi, non varius justo aliquet quis. Phasellus interdum lectus mattis mauris suscipit ultrices. Phasellus ac vulputate lectus. Nunc sit amet dapibus odio, nec aliquam sem. Etiam pretium mollis nulla, ac ultrices leo tincidunt vitae.</p>		\n			<h5>Group 1 Schedule </h5>		\n			<link rel=\"stylesheet\" href=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										Friday,       11am-6pm\n									</li>\n								<li>\n										Saturday,  10am-7pm\n									</li>\n								<li>\n										Sunday,   11am-5pm\n									</li>\n						</ul>\n			<h5>Group 2 Schedule </h5>		\n					<ul>\n							<li>\n										Monday,       11am-6pm\n									</li>\n								<li>\n										Tuesday,  10am-7pm\n									</li>\n								<li>\n										Wednesday,   11am-5pm\n									</li>\n						</ul>\n															<img width=\"800\" height=\"800\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/pp3.jpg\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/pp3.jpg 800w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/pp3-300x300.jpg 300w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/pp3-150x150.jpg 150w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/pp3-768x768.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h5>Peter Wong</h5>		\n			<h5>Math Teacher</h5>		\n			<h2>Join Our Education center Now</h2>		\n															<img width=\"179\" height=\"177\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c2.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" />															\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<a href=\"#\">\n						Sign Up Now\n					</a>\n															<img width=\"324\" height=\"287\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge3.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge3.png 324w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge3-300x266.png 300w\" sizes=\"(max-width: 324px) 100vw, 324px\" />															\n															<img width=\"446\" height=\"593\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/cute-elementary-kids-with-books-at-school-2022-12-16-18-15-57-utc-copy.jpg\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/cute-elementary-kids-with-books-at-school-2022-12-16-18-15-57-utc-copy.jpg 446w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/cute-elementary-kids-with-books-at-school-2022-12-16-18-15-57-utc-copy-226x300.jpg 226w\" sizes=\"(max-width: 446px) 100vw, 446px\" />															\n															<img width=\"446\" height=\"593\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/cute-elementary-kids-with-books-at-school-2022-12-16-18-15-57-utc2.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/cute-elementary-kids-with-books-at-school-2022-12-16-18-15-57-utc2.png 446w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/cute-elementary-kids-with-books-at-school-2022-12-16-18-15-57-utc2-226x300.png 226w\" sizes=\"(max-width: 446px) 100vw, 446px\" />','E Magazine','','inherit','closed','closed','','144-revision-v1','','','2023-09-06 11:13:42','2023-09-06 05:43:42','',144,'https://sahityaonline.in8.cdn-alpha.com/?p=149',0,'revision','',0),(151,1,'2023-09-06 11:17:06','2023-09-06 05:47:06','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>Class-Detail</h1>		\n			<style>/*! elementor - v3.15.0 - 20-08-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=\"183\" height=\"183\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c4.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c4.png 183w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c4-150x150.png 150w\" sizes=\"(max-width: 183px) 100vw, 183px\" />															\n															<img width=\"184\" height=\"181\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c3.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" />															\n															<img width=\"324\" height=\"287\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge.png 324w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge-300x266.png 300w\" sizes=\"(max-width: 324px) 100vw, 324px\" />															\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>		\n															<img width=\"184\" height=\"181\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c3.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" />															\n			<h2>Mathematic  Class</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam vitae iaculis lorem, non finibus arcu. Nullam sed ligula sapien. Aliquam vulputate justo sem, nec tincidunt odio gravida vitae. Nunc porta finibus pellentesque.</p><p>Vestibulum ipsum elit, condimentum vitae dapibus vel, interdum in urna. Aliquam semper vitae lacus eu elementum. </p><p>Etiam cursus commodo ante vitae faucibus. Aliquam faucibus, mauris ut aliquet dignissim, turpis ipsum efficitur dui, quis efficitur tellus magna non metus. Fusce tempus justo nisi, non varius justo aliquet quis. Phasellus interdum lectus mattis mauris suscipit ultrices. Phasellus ac vulputate lectus. Nunc sit amet dapibus odio, nec aliquam sem. Etiam pretium mollis nulla, ac ultrices leo tincidunt vitae.</p>		\n			<h5>Group 1 Schedule </h5>		\n			<link rel=\"stylesheet\" href=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										Friday,       11am-6pm\n									</li>\n								<li>\n										Saturday,  10am-7pm\n									</li>\n								<li>\n										Sunday,   11am-5pm\n									</li>\n						</ul>\n			<h5>Group 2 Schedule </h5>		\n					<ul>\n							<li>\n										Monday,       11am-6pm\n									</li>\n								<li>\n										Tuesday,  10am-7pm\n									</li>\n								<li>\n										Wednesday,   11am-5pm\n									</li>\n						</ul>\n															<img width=\"800\" height=\"800\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/pp3.jpg\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/pp3.jpg 800w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/pp3-300x300.jpg 300w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/pp3-150x150.jpg 150w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/pp3-768x768.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h5>Peter Wong</h5>		\n			<h5>Math Teacher</h5>		\n			<h2>Join Our Education center Now</h2>		\n															<img width=\"179\" height=\"177\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c2.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" />															\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<a href=\"#\">\n						Sign Up Now\n					</a>\n															<img width=\"324\" height=\"287\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge3.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge3.png 324w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge3-300x266.png 300w\" sizes=\"(max-width: 324px) 100vw, 324px\" />															\n															<img width=\"446\" height=\"593\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/cute-elementary-kids-with-books-at-school-2022-12-16-18-15-57-utc-copy.jpg\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/cute-elementary-kids-with-books-at-school-2022-12-16-18-15-57-utc-copy.jpg 446w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/cute-elementary-kids-with-books-at-school-2022-12-16-18-15-57-utc-copy-226x300.jpg 226w\" sizes=\"(max-width: 446px) 100vw, 446px\" />															\n															<img width=\"446\" height=\"593\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/cute-elementary-kids-with-books-at-school-2022-12-16-18-15-57-utc2.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/cute-elementary-kids-with-books-at-school-2022-12-16-18-15-57-utc2.png 446w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/cute-elementary-kids-with-books-at-school-2022-12-16-18-15-57-utc2-226x300.png 226w\" sizes=\"(max-width: 446px) 100vw, 446px\" />','E Magazine','','inherit','closed','closed','','144-revision-v1','','','2023-09-06 11:17:06','2023-09-06 05:47:06','',144,'https://sahityaonline.in8.cdn-alpha.com/?p=151',0,'revision','',0),(152,1,'2023-09-06 11:17:07','2023-09-06 05:47:07','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>Class-Detail</h1>		\n			<style>/*! elementor - v3.15.0 - 20-08-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=\"183\" height=\"183\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c4.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c4.png 183w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c4-150x150.png 150w\" sizes=\"(max-width: 183px) 100vw, 183px\" />															\n															<img width=\"184\" height=\"181\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c3.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" />															\n															<img width=\"324\" height=\"287\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge.png 324w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge-300x266.png 300w\" sizes=\"(max-width: 324px) 100vw, 324px\" />															\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>		\n															<img width=\"184\" height=\"181\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c3.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" />															\n			<h2>Mathematic  Class</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam vitae iaculis lorem, non finibus arcu. Nullam sed ligula sapien. Aliquam vulputate justo sem, nec tincidunt odio gravida vitae. Nunc porta finibus pellentesque.</p><p>Vestibulum ipsum elit, condimentum vitae dapibus vel, interdum in urna. Aliquam semper vitae lacus eu elementum. </p><p>Etiam cursus commodo ante vitae faucibus. Aliquam faucibus, mauris ut aliquet dignissim, turpis ipsum efficitur dui, quis efficitur tellus magna non metus. Fusce tempus justo nisi, non varius justo aliquet quis. Phasellus interdum lectus mattis mauris suscipit ultrices. Phasellus ac vulputate lectus. Nunc sit amet dapibus odio, nec aliquam sem. Etiam pretium mollis nulla, ac ultrices leo tincidunt vitae.</p>		\n			<h5>Group 1 Schedule </h5>		\n			<link rel=\"stylesheet\" href=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										Friday,       11am-6pm\n									</li>\n								<li>\n										Saturday,  10am-7pm\n									</li>\n								<li>\n										Sunday,   11am-5pm\n									</li>\n						</ul>\n			<h5>Group 2 Schedule </h5>		\n					<ul>\n							<li>\n										Monday,       11am-6pm\n									</li>\n								<li>\n										Tuesday,  10am-7pm\n									</li>\n								<li>\n										Wednesday,   11am-5pm\n									</li>\n						</ul>\n															<img width=\"800\" height=\"800\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/pp3.jpg\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/pp3.jpg 800w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/pp3-300x300.jpg 300w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/pp3-150x150.jpg 150w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/pp3-768x768.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h5>Peter Wong</h5>		\n			<h5>Math Teacher</h5>		\n			<h2>Join Our Education center Now</h2>		\n															<img width=\"179\" height=\"177\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c2.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" />															\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<a href=\"#\">\n						Sign Up Now\n					</a>\n															<img width=\"324\" height=\"287\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge3.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge3.png 324w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge3-300x266.png 300w\" sizes=\"(max-width: 324px) 100vw, 324px\" />															\n															<img width=\"446\" height=\"593\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/cute-elementary-kids-with-books-at-school-2022-12-16-18-15-57-utc-copy.jpg\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/cute-elementary-kids-with-books-at-school-2022-12-16-18-15-57-utc-copy.jpg 446w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/cute-elementary-kids-with-books-at-school-2022-12-16-18-15-57-utc-copy-226x300.jpg 226w\" sizes=\"(max-width: 446px) 100vw, 446px\" />															\n															<img width=\"446\" height=\"593\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/cute-elementary-kids-with-books-at-school-2022-12-16-18-15-57-utc2.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/cute-elementary-kids-with-books-at-school-2022-12-16-18-15-57-utc2.png 446w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/cute-elementary-kids-with-books-at-school-2022-12-16-18-15-57-utc2-226x300.png 226w\" sizes=\"(max-width: 446px) 100vw, 446px\" />','E Magazine','','inherit','closed','closed','','144-revision-v1','','','2023-09-06 11:17:07','2023-09-06 05:47:07','',144,'https://sahityaonline.in8.cdn-alpha.com/?p=152',0,'revision','',0),(153,1,'2023-09-06 11:17:08','2023-09-06 05:47:08','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>E-Magazine</h1>		\n			<style>/*! elementor - v3.15.0 - 20-08-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=\"183\" height=\"183\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c4.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c4.png 183w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c4-150x150.png 150w\" sizes=\"(max-width: 183px) 100vw, 183px\" />															\n															<img width=\"184\" height=\"181\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c3.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" />															\n															<img width=\"324\" height=\"287\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge.png 324w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge-300x266.png 300w\" sizes=\"(max-width: 324px) 100vw, 324px\" />															\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>		\n															<img width=\"184\" height=\"181\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c3.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" />															\n			<h2>Mathematic  Class</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam vitae iaculis lorem, non finibus arcu. Nullam sed ligula sapien. Aliquam vulputate justo sem, nec tincidunt odio gravida vitae. Nunc porta finibus pellentesque.</p><p>Vestibulum ipsum elit, condimentum vitae dapibus vel, interdum in urna. Aliquam semper vitae lacus eu elementum. </p><p>Etiam cursus commodo ante vitae faucibus. Aliquam faucibus, mauris ut aliquet dignissim, turpis ipsum efficitur dui, quis efficitur tellus magna non metus. Fusce tempus justo nisi, non varius justo aliquet quis. Phasellus interdum lectus mattis mauris suscipit ultrices. Phasellus ac vulputate lectus. Nunc sit amet dapibus odio, nec aliquam sem. Etiam pretium mollis nulla, ac ultrices leo tincidunt vitae.</p>		\n			<h5>Group 1 Schedule </h5>		\n			<link rel=\"stylesheet\" href=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										Friday,       11am-6pm\n									</li>\n								<li>\n										Saturday,  10am-7pm\n									</li>\n								<li>\n										Sunday,   11am-5pm\n									</li>\n						</ul>\n			<h5>Group 2 Schedule </h5>		\n					<ul>\n							<li>\n										Monday,       11am-6pm\n									</li>\n								<li>\n										Tuesday,  10am-7pm\n									</li>\n								<li>\n										Wednesday,   11am-5pm\n									</li>\n						</ul>\n															<img width=\"800\" height=\"800\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/pp3.jpg\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/pp3.jpg 800w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/pp3-300x300.jpg 300w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/pp3-150x150.jpg 150w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/pp3-768x768.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h5>Peter Wong</h5>		\n			<h5>Math Teacher</h5>		\n			<h2>Join Our Education center Now</h2>		\n															<img width=\"179\" height=\"177\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c2.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" />															\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<a href=\"#\">\n						Sign Up Now\n					</a>\n															<img width=\"324\" height=\"287\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge3.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge3.png 324w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge3-300x266.png 300w\" sizes=\"(max-width: 324px) 100vw, 324px\" />															\n															<img width=\"446\" height=\"593\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/cute-elementary-kids-with-books-at-school-2022-12-16-18-15-57-utc-copy.jpg\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/cute-elementary-kids-with-books-at-school-2022-12-16-18-15-57-utc-copy.jpg 446w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/cute-elementary-kids-with-books-at-school-2022-12-16-18-15-57-utc-copy-226x300.jpg 226w\" sizes=\"(max-width: 446px) 100vw, 446px\" />															\n															<img width=\"446\" height=\"593\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/cute-elementary-kids-with-books-at-school-2022-12-16-18-15-57-utc2.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/cute-elementary-kids-with-books-at-school-2022-12-16-18-15-57-utc2.png 446w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/cute-elementary-kids-with-books-at-school-2022-12-16-18-15-57-utc2-226x300.png 226w\" sizes=\"(max-width: 446px) 100vw, 446px\" />','E Magazine','','inherit','closed','closed','','144-revision-v1','','','2023-09-06 11:17:08','2023-09-06 05:47:08','',144,'https://sahityaonline.in8.cdn-alpha.com/?p=153',0,'revision','',0),(154,1,'2023-09-06 12:02:35','2023-09-06 06:32:35',' ','','','publish','closed','closed','','154','','','2023-09-06 12:02:35','2023-09-06 06:32:35','',0,'https://sahityaonline.in8.cdn-alpha.com/?p=154',3,'nav_menu_item','',0),(155,1,'2023-09-06 12:02:35','2023-09-06 06:32:35',' ','','','publish','closed','closed','','155','','','2023-09-06 12:02:35','2023-09-06 06:32:35','',0,'https://sahityaonline.in8.cdn-alpha.com/?p=155',4,'nav_menu_item','',0),(156,1,'2023-09-06 12:02:35','2023-09-06 06:32:35',' ','','','publish','closed','closed','','156','','','2023-09-06 12:02:35','2023-09-06 06:32:35','',0,'https://sahityaonline.in8.cdn-alpha.com/?p=156',5,'nav_menu_item','',0),(157,1,'2023-09-06 12:02:34','2023-09-06 06:32:34',' ','','','publish','closed','closed','','157','','','2023-09-06 12:02:34','2023-09-06 06:32:34','',0,'https://sahityaonline.in8.cdn-alpha.com/?p=157',2,'nav_menu_item','',0),(158,1,'2023-09-06 12:02:33','2023-09-06 06:32:33',' ','','','publish','closed','closed','','158','','','2023-09-06 12:02:33','2023-09-06 06:32:33','',0,'https://sahityaonline.in8.cdn-alpha.com/?p=158',1,'nav_menu_item','',0),(160,1,'2023-09-06 17:28:46','2023-09-06 11:58:46','<style>/*! elementor - v3.15.0 - 20-08-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=\"500\" height=\"190\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/साहित्य-1.webp\" alt=\"साहित्य\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/साहित्य-1.webp 500w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/साहित्य-1-300x114.webp 300w\" sizes=\"(max-width: 500px) 100vw, 500px\" />','Header','','inherit','closed','closed','','92-revision-v1','','','2023-09-06 17:28:46','2023-09-06 11:58:46','',92,'https://sahityaonline.in8.cdn-alpha.com/?p=160',0,'revision','',0),(161,1,'2023-09-06 17:28:47','2023-09-06 11:58:47','<style>/*! elementor - v3.15.0 - 20-08-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=\"500\" height=\"190\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/साहित्य-1.webp\" alt=\"साहित्य\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/साहित्य-1.webp 500w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/साहित्य-1-300x114.webp 300w\" sizes=\"(max-width: 500px) 100vw, 500px\" />','Header','','inherit','closed','closed','','92-revision-v1','','','2023-09-06 17:28:47','2023-09-06 11:58:47','',92,'https://sahityaonline.in8.cdn-alpha.com/?p=161',0,'revision','',0),(162,1,'2023-09-06 17:28:49','2023-09-06 11:58:49','<style>/*! elementor - v3.15.0 - 20-08-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=\"500\" height=\"190\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/साहित्य-1.webp\" alt=\"साहित्य\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/साहित्य-1.webp 500w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/साहित्य-1-300x114.webp 300w\" sizes=\"(max-width: 500px) 100vw, 500px\" />															\n					Menu\n				<nav data-toggle-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;fas fa-align-justify&quot;&gt;&lt;/i&gt;\" data-close-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;far fa-window-close&quot;&gt;&lt;/i&gt;\" data-full-width=\"yes\"><ul id=\"menu-1-1c150646\"><li id=\"menu-item-158\"><a href=\"https://sahityaonline.in8.cdn-alpha.com/\" class = \"hfe-menu-item\">Home</a></li>\n<li id=\"menu-item-157\"><a href=\"https://sahityaonline.in8.cdn-alpha.com/about-us/\" class = \"hfe-menu-item\">About Us</a></li>\n<li id=\"menu-item-154\"><a href=\"https://sahityaonline.in8.cdn-alpha.com/e-magazine/\" class = \"hfe-menu-item\">E Magazine</a></li>\n<li id=\"menu-item-155\"><a href=\"https://sahityaonline.in8.cdn-alpha.com/creations/\" class = \"hfe-menu-item\">Creations</a></li>\n<li id=\"menu-item-156\"><a href=\"https://sahityaonline.in8.cdn-alpha.com/contact-us/\" class = \"hfe-menu-item\">Contact Us</a></li>\n</ul></nav>','Header','','inherit','closed','closed','','92-revision-v1','','','2023-09-06 17:28:49','2023-09-06 11:58:49','',92,'https://sahityaonline.in8.cdn-alpha.com/?p=162',0,'revision','',0),(163,1,'2023-09-06 17:36:07','2023-09-06 12:06:07','<h2>Smart  Learning</h2>		\n			<h2>Study Easily</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<a href=\"#\">\n						Check It Out\n					</a>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"800\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/boy3.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/boy3.png 1000w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/boy3-300x300.png 300w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/boy3-150x150.png 150w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/boy3-768x768.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"184\" height=\"181\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c3.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" />															\n															<img width=\"324\" height=\"287\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge.png 324w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge-300x266.png 300w\" sizes=\"(max-width: 324px) 100vw, 324px\" />															\n															<img width=\"195\" height=\"196\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c1.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c1.png 195w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c1-150x150.png 150w\" sizes=\"(max-width: 195px) 100vw, 195px\" />															\n															<img width=\"179\" height=\"177\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c2.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" />															\n															<img width=\"800\" height=\"800\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/little-boy-is-having-online-lessons-by-using-lapto-2022-02-03-17-43-51-utc-copy.jpg\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/little-boy-is-having-online-lessons-by-using-lapto-2022-02-03-17-43-51-utc-copy.jpg 1000w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/little-boy-is-having-online-lessons-by-using-lapto-2022-02-03-17-43-51-utc-copy-300x300.jpg 300w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/little-boy-is-having-online-lessons-by-using-lapto-2022-02-03-17-43-51-utc-copy-150x150.jpg 150w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/little-boy-is-having-online-lessons-by-using-lapto-2022-02-03-17-43-51-utc-copy-768x768.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"183\" height=\"183\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c4.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c4.png 183w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c4-150x150.png 150w\" sizes=\"(max-width: 183px) 100vw, 183px\" />															\n															<img width=\"324\" height=\"287\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge2.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge2.png 324w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge2-300x266.png 300w\" sizes=\"(max-width: 324px) 100vw, 324px\" />															\n			<style>/*! elementor - v3.15.0 - 20-08-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>Our Primary Courses</h2>		\n															<img width=\"800\" height=\"534\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/kids-taking-exam-in-school-2022-06-29-19-26-45-utc-copy-1024x683.jpg\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/kids-taking-exam-in-school-2022-06-29-19-26-45-utc-copy-1024x683.jpg 1024w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/kids-taking-exam-in-school-2022-06-29-19-26-45-utc-copy-300x200.jpg 300w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/kids-taking-exam-in-school-2022-06-29-19-26-45-utc-copy-768x512.jpg 768w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/kids-taking-exam-in-school-2022-06-29-19-26-45-utc-copy.jpg 1200w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h4>Social Studies</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n			<a href=\"#\">\n						Learn More\n					</a>\n															<img width=\"800\" height=\"534\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/portrait-of-happy-caucasian-boy-standing-at-chalkb-2021-09-03-06-28-24-utc-copy-1024x683.jpg\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/portrait-of-happy-caucasian-boy-standing-at-chalkb-2021-09-03-06-28-24-utc-copy-1024x683.jpg 1024w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/portrait-of-happy-caucasian-boy-standing-at-chalkb-2021-09-03-06-28-24-utc-copy-300x200.jpg 300w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/portrait-of-happy-caucasian-boy-standing-at-chalkb-2021-09-03-06-28-24-utc-copy-768x512.jpg 768w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/portrait-of-happy-caucasian-boy-standing-at-chalkb-2021-09-03-06-28-24-utc-copy.jpg 1200w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h4>Mathematics </h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n			<a href=\"#\">\n						Learn More\n					</a>\n															<img width=\"800\" height=\"534\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/woman-learning-english-online-2021-08-26-15-34-41-utc-copy-1024x683.jpg\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/woman-learning-english-online-2021-08-26-15-34-41-utc-copy-1024x683.jpg 1024w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/woman-learning-english-online-2021-08-26-15-34-41-utc-copy-300x200.jpg 300w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/woman-learning-english-online-2021-08-26-15-34-41-utc-copy-768x512.jpg 768w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/woman-learning-english-online-2021-08-26-15-34-41-utc-copy.jpg 1200w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h4>English Course</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n			<a href=\"#\">\n						Learn More\n					</a>\n															<img width=\"600\" height=\"748\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/aged-teacher-2021-09-24-03-26-41-utc.jpg\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/aged-teacher-2021-09-24-03-26-41-utc.jpg 600w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/aged-teacher-2021-09-24-03-26-41-utc-241x300.jpg 241w\" sizes=\"(max-width: 600px) 100vw, 600px\" />															\n															<img width=\"600\" height=\"748\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/aged-teacher-2021-09-24-03-26-41-utc-2.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/aged-teacher-2021-09-24-03-26-41-utc-2.png 600w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/aged-teacher-2021-09-24-03-26-41-utc-2-241x300.png 241w\" sizes=\"(max-width: 600px) 100vw, 600px\" />															\n			<h2>Preparing Our Children’s Bright Future</h2>		\n															<img width=\"324\" height=\"287\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge2.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge2.png 324w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge2-300x266.png 300w\" sizes=\"(max-width: 324px) 100vw, 324px\" />															\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec ultrices purus nec sollicitudin eleifend. In hac habitasse platea dictumst.</p>		\n			<link rel=\"stylesheet\" href=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<h3>\n						Grade Improvement					\n				</h3>\n									<p>\n						 Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n				<h3>\n						Exam Preparation					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing.					</p>\n				<h3>\n						Social Development					\n				</h3>\n									<p>\n						Donec et massa sit amet augue laoreet venenatis id et urna.					</p>\n															<img width=\"195\" height=\"196\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c1.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c1.png 195w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c1-150x150.png 150w\" sizes=\"(max-width: 195px) 100vw, 195px\" />															\n			<h2>Our vision is every child is safe, inspired, challenged, empowered.</h2>		\n															<img width=\"324\" height=\"287\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge.png 324w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge-300x266.png 300w\" sizes=\"(max-width: 324px) 100vw, 324px\" />															\n															<img width=\"184\" height=\"181\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c3.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" />															\n		<p>Integer efficitur ligula ipsum, at vulputate mi fermentum sit amet. Sed pulvinar rutrum commodo. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean vitae tortor nec lectus mattis congue id sed tortor.</p>		\n															<img width=\"183\" height=\"183\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c4.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c4.png 183w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c4-150x150.png 150w\" sizes=\"(max-width: 183px) 100vw, 183px\" />															\n			<a href=\"#\">\n						Learn More\n					</a>\n			<h2>Our Programs for excellence</h2>		\n															<img width=\"195\" height=\"196\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c1.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c1.png 195w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c1-150x150.png 150w\" sizes=\"(max-width: 195px) 100vw, 195px\" />															\n															<img width=\"324\" height=\"287\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge2.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge2.png 324w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge2-300x266.png 300w\" sizes=\"(max-width: 324px) 100vw, 324px\" />															\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Mauris at lacus semper, fermentum mi sed, rutrum nibh. Sed gravida elit ligula, sit amet venenatis diam hendrerit iaculis.</p>		\n															<img width=\"179\" height=\"177\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c2.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" />															\n			<a href=\"#\">\n						Discover More\n					</a>\n															<img width=\"255\" height=\"255\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/grade.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/grade.png 255w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/grade-150x150.png 150w\" sizes=\"(max-width: 255px) 100vw, 255px\" />															\n			<h5>Grade Boost</h5>		\n		<p>Lorem ipsum dolor sit amet.</p>		\n															<img width=\"255\" height=\"255\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/chart.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/chart.png 255w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/chart-150x150.png 150w\" sizes=\"(max-width: 255px) 100vw, 255px\" />															\n			<h5>Skill Evaluation</h5>		\n		<p>Lorem ipsum dolor sit amet.</p>		\n															<img width=\"255\" height=\"255\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/test-exam-sheet.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/test-exam-sheet.png 255w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/test-exam-sheet-150x150.png 150w\" sizes=\"(max-width: 255px) 100vw, 255px\" />															\n			<h5>Mock Exam</h5>		\n		<p>Lorem ipsum dolor sit amet.</p>		\n															<img width=\"255\" height=\"255\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/schedule-sheet.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/schedule-sheet.png 255w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/schedule-sheet-150x150.png 150w\" sizes=\"(max-width: 255px) 100vw, 255px\" />															\n			<h5>Weekend Class</h5>		\n		<p>Lorem ipsum dolor sit amet.</p>		\n			<h2>Our Popular Teacher</h2>		\n															<img width=\"183\" height=\"183\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c4.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c4.png 183w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c4-150x150.png 150w\" sizes=\"(max-width: 183px) 100vw, 183px\" />															\n															<img width=\"184\" height=\"181\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c3.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" />															\n															<img width=\"800\" height=\"800\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/pp1.jpg\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/pp1.jpg 800w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/pp1-300x300.jpg 300w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/pp1-150x150.jpg 150w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/pp1-768x768.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h5>Harry Smith</h5>		\n			<h5>English Teacher</h5>		\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n@charset \"UTF-8\";.elementor-star-rating{color:#ccd6df;font-family:eicons;display:inline-block}.elementor-star-rating i{display:inline-block;position:relative;font-style:normal;cursor:default}.elementor-star-rating i:before{content:\"e934\";display:block;font-size:inherit;font-family:inherit;position:absolute;overflow:hidden;color:#f0ad4e;top:0;left:0}.elementor-star-rating .elementor-star-empty:before{content:none}.elementor-star-rating .elementor-star-1:before{width:10%}.elementor-star-rating .elementor-star-2:before{width:20%}.elementor-star-rating .elementor-star-3:before{width:30%}.elementor-star-rating .elementor-star-4:before{width:40%}.elementor-star-rating .elementor-star-5:before{width:50%}.elementor-star-rating .elementor-star-6:before{width:60%}.elementor-star-rating .elementor-star-7:before{width:70%}.elementor-star-rating .elementor-star-8:before{width:80%}.elementor-star-rating .elementor-star-9:before{width:90%}.elementor-star-rating__wrapper{display:flex;align-items:center}.elementor-star-rating__title{margin-right:10px}.elementor-star-rating--align-right .elementor-star-rating__wrapper{text-align:right;justify-content:flex-end}.elementor-star-rating--align-left .elementor-star-rating__wrapper{text-align:left;justify-content:flex-start}.elementor-star-rating--align-center .elementor-star-rating__wrapper{text-align:center;justify-content:center}.elementor-star-rating--align-justify .elementor-star-rating__title{margin-right:auto}@media (max-width:1024px){.elementor-star-rating-tablet--align-right .elementor-star-rating__wrapper{text-align:right;justify-content:flex-end}.elementor-star-rating-tablet--align-left .elementor-star-rating__wrapper{text-align:left;justify-content:flex-start}.elementor-star-rating-tablet--align-center .elementor-star-rating__wrapper{text-align:center;justify-content:center}.elementor-star-rating-tablet--align-justify .elementor-star-rating__title{margin-right:auto}}@media (max-width:767px){.elementor-star-rating-mobile--align-right .elementor-star-rating__wrapper{text-align:right;justify-content:flex-end}.elementor-star-rating-mobile--align-left .elementor-star-rating__wrapper{text-align:left;justify-content:flex-start}.elementor-star-rating-mobile--align-center .elementor-star-rating__wrapper{text-align:center;justify-content:center}.elementor-star-rating-mobile--align-justify .elementor-star-rating__title{margin-right:auto}}.last-star{letter-spacing:0}.elementor--star-style-star_unicode .elementor-star-rating{font-family:Arial,Helvetica,sans-serif}.elementor--star-style-star_unicode .elementor-star-rating i:not(.elementor-star-empty):before{content:\"★\"}</style>\n						<i>&#xE934;</i><i>&#xE934;</i><i>&#xE934;</i><i>&#xE934;</i><i>&#xE934;</i> 5/5		\n		<p> \" Lorem ipsum dolor sit amet, consectetur adipiscing elit. Suspendisse est neque, ultrices at enim vitae, mattis consequat dui.\"</p>		\n			<a href=\"#\">\n						Contact\n					</a>\n															<img width=\"800\" height=\"800\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/pp2.jpg\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/pp2.jpg 800w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/pp2-300x300.jpg 300w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/pp2-150x150.jpg 150w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/pp2-768x768.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h5>Gregory Warren</h5>		\n			<h5>Social Teacher</h5>		\n						<i>&#xE934;</i><i>&#xE934;</i><i>&#xE934;</i><i>&#xE934;</i><i>&#xE934;</i> 5/5		\n		<p> \" Lorem ipsum dolor sit amet, consectetur adipiscing elit. Suspendisse est neque, ultrices at enim vitae, mattis consequat dui.\"</p>		\n			<a href=\"#\">\n						Contact\n					</a>\n															<img width=\"800\" height=\"800\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/pp3.jpg\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/pp3.jpg 800w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/pp3-300x300.jpg 300w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/pp3-150x150.jpg 150w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/pp3-768x768.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h5>Peter Wong</h5>		\n			<h5>Math Teacher</h5>		\n						<i>&#xE934;</i><i>&#xE934;</i><i>&#xE934;</i><i>&#xE934;</i><i>&#xE934;</i> 5/5		\n		<p> \" Lorem ipsum dolor sit amet, consectetur adipiscing elit. Suspendisse est neque, ultrices at enim vitae, mattis consequat dui.\"</p>		\n			<a href=\"#\">\n						Contact\n					</a>\n															<img width=\"700\" height=\"171\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logoipsum-265.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logoipsum-265.png 700w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logoipsum-265-300x73.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />															\n															<img width=\"708\" height=\"171\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logoipsum-264.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logoipsum-264.png 708w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logoipsum-264-300x72.png 300w\" sizes=\"(max-width: 708px) 100vw, 708px\" />															\n															<img width=\"708\" height=\"171\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logoipsum-262.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logoipsum-262.png 708w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logoipsum-262-300x72.png 300w\" sizes=\"(max-width: 708px) 100vw, 708px\" />															\n															<img width=\"696\" height=\"171\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logoipsum-261.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logoipsum-261.png 696w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logoipsum-261-300x74.png 300w\" sizes=\"(max-width: 696px) 100vw, 696px\" />															\n															<img width=\"642\" height=\"113\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logoipsum-259.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logoipsum-259.png 642w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logoipsum-259-300x53.png 300w\" sizes=\"(max-width: 642px) 100vw, 642px\" />															\n															<img width=\"717\" height=\"167\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logoipsum-254.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logoipsum-254.png 717w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logoipsum-254-300x70.png 300w\" sizes=\"(max-width: 717px) 100vw, 717px\" />															\n			<h2>Our Trusted Partners</h2>		\n		<p>Donec hendrerit nibh in lectus molestie, id bibendum orci hendrerit. Curabitur euismod ante finibus nibh suscipit, vitae vehicula eros venenatis.</p>		\n			<h2>Join Our Education center Now</h2>		\n															<img width=\"179\" height=\"177\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c2.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" />															\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<a href=\"#\">\n						Sign Up Now\n					</a>\n															<img width=\"324\" height=\"287\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge3.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge3.png 324w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge3-300x266.png 300w\" sizes=\"(max-width: 324px) 100vw, 324px\" />															\n															<img width=\"446\" height=\"593\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/cute-elementary-kids-with-books-at-school-2022-12-16-18-15-57-utc-copy.jpg\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/cute-elementary-kids-with-books-at-school-2022-12-16-18-15-57-utc-copy.jpg 446w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/cute-elementary-kids-with-books-at-school-2022-12-16-18-15-57-utc-copy-226x300.jpg 226w\" sizes=\"(max-width: 446px) 100vw, 446px\" />															\n															<img width=\"446\" height=\"593\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/cute-elementary-kids-with-books-at-school-2022-12-16-18-15-57-utc2.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/cute-elementary-kids-with-books-at-school-2022-12-16-18-15-57-utc2.png 446w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/cute-elementary-kids-with-books-at-school-2022-12-16-18-15-57-utc2-226x300.png 226w\" sizes=\"(max-width: 446px) 100vw, 446px\" />','Home','','inherit','closed','closed','','114-revision-v1','','','2023-09-06 17:36:07','2023-09-06 12:06:07','',114,'https://sahityaonline.in8.cdn-alpha.com/?p=163',0,'revision','',0),(164,1,'2023-09-06 17:36:08','2023-09-06 12:06:08','<h2>Smart  Learning</h2>		\n			<h2>Study Easily</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<a href=\"#\">\n						Check It Out\n					</a>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"800\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/boy3.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/boy3.png 1000w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/boy3-300x300.png 300w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/boy3-150x150.png 150w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/boy3-768x768.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"184\" height=\"181\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c3.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" />															\n															<img width=\"324\" height=\"287\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge.png 324w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge-300x266.png 300w\" sizes=\"(max-width: 324px) 100vw, 324px\" />															\n															<img width=\"195\" height=\"196\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c1.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c1.png 195w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c1-150x150.png 150w\" sizes=\"(max-width: 195px) 100vw, 195px\" />															\n															<img width=\"179\" height=\"177\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c2.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" />															\n															<img width=\"800\" height=\"800\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/little-boy-is-having-online-lessons-by-using-lapto-2022-02-03-17-43-51-utc-copy.jpg\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/little-boy-is-having-online-lessons-by-using-lapto-2022-02-03-17-43-51-utc-copy.jpg 1000w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/little-boy-is-having-online-lessons-by-using-lapto-2022-02-03-17-43-51-utc-copy-300x300.jpg 300w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/little-boy-is-having-online-lessons-by-using-lapto-2022-02-03-17-43-51-utc-copy-150x150.jpg 150w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/little-boy-is-having-online-lessons-by-using-lapto-2022-02-03-17-43-51-utc-copy-768x768.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"183\" height=\"183\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c4.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c4.png 183w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c4-150x150.png 150w\" sizes=\"(max-width: 183px) 100vw, 183px\" />															\n															<img width=\"324\" height=\"287\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge2.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge2.png 324w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge2-300x266.png 300w\" sizes=\"(max-width: 324px) 100vw, 324px\" />															\n			<style>/*! elementor - v3.15.0 - 20-08-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>Our Primary Courses</h2>		\n															<img width=\"800\" height=\"534\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/kids-taking-exam-in-school-2022-06-29-19-26-45-utc-copy-1024x683.jpg\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/kids-taking-exam-in-school-2022-06-29-19-26-45-utc-copy-1024x683.jpg 1024w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/kids-taking-exam-in-school-2022-06-29-19-26-45-utc-copy-300x200.jpg 300w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/kids-taking-exam-in-school-2022-06-29-19-26-45-utc-copy-768x512.jpg 768w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/kids-taking-exam-in-school-2022-06-29-19-26-45-utc-copy.jpg 1200w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h4>Social Studies</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n			<a href=\"#\">\n						Learn More\n					</a>\n															<img width=\"800\" height=\"534\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/portrait-of-happy-caucasian-boy-standing-at-chalkb-2021-09-03-06-28-24-utc-copy-1024x683.jpg\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/portrait-of-happy-caucasian-boy-standing-at-chalkb-2021-09-03-06-28-24-utc-copy-1024x683.jpg 1024w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/portrait-of-happy-caucasian-boy-standing-at-chalkb-2021-09-03-06-28-24-utc-copy-300x200.jpg 300w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/portrait-of-happy-caucasian-boy-standing-at-chalkb-2021-09-03-06-28-24-utc-copy-768x512.jpg 768w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/portrait-of-happy-caucasian-boy-standing-at-chalkb-2021-09-03-06-28-24-utc-copy.jpg 1200w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h4>Mathematics </h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n			<a href=\"#\">\n						Learn More\n					</a>\n															<img width=\"800\" height=\"534\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/woman-learning-english-online-2021-08-26-15-34-41-utc-copy-1024x683.jpg\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/woman-learning-english-online-2021-08-26-15-34-41-utc-copy-1024x683.jpg 1024w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/woman-learning-english-online-2021-08-26-15-34-41-utc-copy-300x200.jpg 300w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/woman-learning-english-online-2021-08-26-15-34-41-utc-copy-768x512.jpg 768w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/woman-learning-english-online-2021-08-26-15-34-41-utc-copy.jpg 1200w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h4>English Course</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n			<a href=\"#\">\n						Learn More\n					</a>\n															<img width=\"600\" height=\"748\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/aged-teacher-2021-09-24-03-26-41-utc.jpg\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/aged-teacher-2021-09-24-03-26-41-utc.jpg 600w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/aged-teacher-2021-09-24-03-26-41-utc-241x300.jpg 241w\" sizes=\"(max-width: 600px) 100vw, 600px\" />															\n															<img width=\"600\" height=\"748\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/aged-teacher-2021-09-24-03-26-41-utc-2.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/aged-teacher-2021-09-24-03-26-41-utc-2.png 600w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/aged-teacher-2021-09-24-03-26-41-utc-2-241x300.png 241w\" sizes=\"(max-width: 600px) 100vw, 600px\" />															\n			<h2>Preparing Our Children’s Bright Future</h2>		\n															<img width=\"324\" height=\"287\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge2.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge2.png 324w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge2-300x266.png 300w\" sizes=\"(max-width: 324px) 100vw, 324px\" />															\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec ultrices purus nec sollicitudin eleifend. In hac habitasse platea dictumst.</p>		\n			<link rel=\"stylesheet\" href=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<h3>\n						Grade Improvement					\n				</h3>\n									<p>\n						 Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n				<h3>\n						Exam Preparation					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing.					</p>\n				<h3>\n						Social Development					\n				</h3>\n									<p>\n						Donec et massa sit amet augue laoreet venenatis id et urna.					</p>\n															<img width=\"195\" height=\"196\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c1.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c1.png 195w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c1-150x150.png 150w\" sizes=\"(max-width: 195px) 100vw, 195px\" />															\n			<h2>Our vision is every child is safe, inspired, challenged, empowered.</h2>		\n															<img width=\"324\" height=\"287\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge.png 324w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge-300x266.png 300w\" sizes=\"(max-width: 324px) 100vw, 324px\" />															\n															<img width=\"184\" height=\"181\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c3.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" />															\n		<p>Integer efficitur ligula ipsum, at vulputate mi fermentum sit amet. Sed pulvinar rutrum commodo. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean vitae tortor nec lectus mattis congue id sed tortor.</p>		\n															<img width=\"183\" height=\"183\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c4.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c4.png 183w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c4-150x150.png 150w\" sizes=\"(max-width: 183px) 100vw, 183px\" />															\n			<a href=\"#\">\n						Learn More\n					</a>\n			<h2>Our Programs for excellence</h2>		\n															<img width=\"195\" height=\"196\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c1.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c1.png 195w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c1-150x150.png 150w\" sizes=\"(max-width: 195px) 100vw, 195px\" />															\n															<img width=\"324\" height=\"287\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge2.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge2.png 324w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge2-300x266.png 300w\" sizes=\"(max-width: 324px) 100vw, 324px\" />															\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Mauris at lacus semper, fermentum mi sed, rutrum nibh. Sed gravida elit ligula, sit amet venenatis diam hendrerit iaculis.</p>		\n															<img width=\"179\" height=\"177\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c2.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" />															\n			<a href=\"#\">\n						Discover More\n					</a>\n															<img width=\"255\" height=\"255\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/grade.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/grade.png 255w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/grade-150x150.png 150w\" sizes=\"(max-width: 255px) 100vw, 255px\" />															\n			<h5>Grade Boost</h5>		\n		<p>Lorem ipsum dolor sit amet.</p>		\n															<img width=\"255\" height=\"255\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/chart.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/chart.png 255w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/chart-150x150.png 150w\" sizes=\"(max-width: 255px) 100vw, 255px\" />															\n			<h5>Skill Evaluation</h5>		\n		<p>Lorem ipsum dolor sit amet.</p>		\n															<img width=\"255\" height=\"255\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/test-exam-sheet.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/test-exam-sheet.png 255w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/test-exam-sheet-150x150.png 150w\" sizes=\"(max-width: 255px) 100vw, 255px\" />															\n			<h5>Mock Exam</h5>		\n		<p>Lorem ipsum dolor sit amet.</p>		\n															<img width=\"255\" height=\"255\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/schedule-sheet.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/schedule-sheet.png 255w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/schedule-sheet-150x150.png 150w\" sizes=\"(max-width: 255px) 100vw, 255px\" />															\n			<h5>Weekend Class</h5>		\n		<p>Lorem ipsum dolor sit amet.</p>		\n			<h2>Our Popular Teacher</h2>		\n															<img width=\"183\" height=\"183\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c4.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c4.png 183w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c4-150x150.png 150w\" sizes=\"(max-width: 183px) 100vw, 183px\" />															\n															<img width=\"184\" height=\"181\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c3.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" />															\n															<img width=\"800\" height=\"800\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/pp1.jpg\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/pp1.jpg 800w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/pp1-300x300.jpg 300w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/pp1-150x150.jpg 150w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/pp1-768x768.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h5>Harry Smith</h5>		\n			<h5>English Teacher</h5>		\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n@charset \"UTF-8\";.elementor-star-rating{color:#ccd6df;font-family:eicons;display:inline-block}.elementor-star-rating i{display:inline-block;position:relative;font-style:normal;cursor:default}.elementor-star-rating i:before{content:\"e934\";display:block;font-size:inherit;font-family:inherit;position:absolute;overflow:hidden;color:#f0ad4e;top:0;left:0}.elementor-star-rating .elementor-star-empty:before{content:none}.elementor-star-rating .elementor-star-1:before{width:10%}.elementor-star-rating .elementor-star-2:before{width:20%}.elementor-star-rating .elementor-star-3:before{width:30%}.elementor-star-rating .elementor-star-4:before{width:40%}.elementor-star-rating .elementor-star-5:before{width:50%}.elementor-star-rating .elementor-star-6:before{width:60%}.elementor-star-rating .elementor-star-7:before{width:70%}.elementor-star-rating .elementor-star-8:before{width:80%}.elementor-star-rating .elementor-star-9:before{width:90%}.elementor-star-rating__wrapper{display:flex;align-items:center}.elementor-star-rating__title{margin-right:10px}.elementor-star-rating--align-right .elementor-star-rating__wrapper{text-align:right;justify-content:flex-end}.elementor-star-rating--align-left .elementor-star-rating__wrapper{text-align:left;justify-content:flex-start}.elementor-star-rating--align-center .elementor-star-rating__wrapper{text-align:center;justify-content:center}.elementor-star-rating--align-justify .elementor-star-rating__title{margin-right:auto}@media (max-width:1024px){.elementor-star-rating-tablet--align-right .elementor-star-rating__wrapper{text-align:right;justify-content:flex-end}.elementor-star-rating-tablet--align-left .elementor-star-rating__wrapper{text-align:left;justify-content:flex-start}.elementor-star-rating-tablet--align-center .elementor-star-rating__wrapper{text-align:center;justify-content:center}.elementor-star-rating-tablet--align-justify .elementor-star-rating__title{margin-right:auto}}@media (max-width:767px){.elementor-star-rating-mobile--align-right .elementor-star-rating__wrapper{text-align:right;justify-content:flex-end}.elementor-star-rating-mobile--align-left .elementor-star-rating__wrapper{text-align:left;justify-content:flex-start}.elementor-star-rating-mobile--align-center .elementor-star-rating__wrapper{text-align:center;justify-content:center}.elementor-star-rating-mobile--align-justify .elementor-star-rating__title{margin-right:auto}}.last-star{letter-spacing:0}.elementor--star-style-star_unicode .elementor-star-rating{font-family:Arial,Helvetica,sans-serif}.elementor--star-style-star_unicode .elementor-star-rating i:not(.elementor-star-empty):before{content:\"★\"}</style>\n						<i>&#xE934;</i><i>&#xE934;</i><i>&#xE934;</i><i>&#xE934;</i><i>&#xE934;</i> 5/5		\n		<p> \" Lorem ipsum dolor sit amet, consectetur adipiscing elit. Suspendisse est neque, ultrices at enim vitae, mattis consequat dui.\"</p>		\n			<a href=\"#\">\n						Contact\n					</a>\n															<img width=\"800\" height=\"800\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/pp2.jpg\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/pp2.jpg 800w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/pp2-300x300.jpg 300w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/pp2-150x150.jpg 150w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/pp2-768x768.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h5>Gregory Warren</h5>		\n			<h5>Social Teacher</h5>		\n						<i>&#xE934;</i><i>&#xE934;</i><i>&#xE934;</i><i>&#xE934;</i><i>&#xE934;</i> 5/5		\n		<p> \" Lorem ipsum dolor sit amet, consectetur adipiscing elit. Suspendisse est neque, ultrices at enim vitae, mattis consequat dui.\"</p>		\n			<a href=\"#\">\n						Contact\n					</a>\n															<img width=\"800\" height=\"800\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/pp3.jpg\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/pp3.jpg 800w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/pp3-300x300.jpg 300w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/pp3-150x150.jpg 150w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/pp3-768x768.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h5>Peter Wong</h5>		\n			<h5>Math Teacher</h5>		\n						<i>&#xE934;</i><i>&#xE934;</i><i>&#xE934;</i><i>&#xE934;</i><i>&#xE934;</i> 5/5		\n		<p> \" Lorem ipsum dolor sit amet, consectetur adipiscing elit. Suspendisse est neque, ultrices at enim vitae, mattis consequat dui.\"</p>		\n			<a href=\"#\">\n						Contact\n					</a>\n															<img width=\"700\" height=\"171\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logoipsum-265.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logoipsum-265.png 700w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logoipsum-265-300x73.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />															\n															<img width=\"708\" height=\"171\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logoipsum-264.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logoipsum-264.png 708w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logoipsum-264-300x72.png 300w\" sizes=\"(max-width: 708px) 100vw, 708px\" />															\n															<img width=\"708\" height=\"171\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logoipsum-262.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logoipsum-262.png 708w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logoipsum-262-300x72.png 300w\" sizes=\"(max-width: 708px) 100vw, 708px\" />															\n															<img width=\"696\" height=\"171\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logoipsum-261.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logoipsum-261.png 696w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logoipsum-261-300x74.png 300w\" sizes=\"(max-width: 696px) 100vw, 696px\" />															\n															<img width=\"642\" height=\"113\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logoipsum-259.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logoipsum-259.png 642w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logoipsum-259-300x53.png 300w\" sizes=\"(max-width: 642px) 100vw, 642px\" />															\n															<img width=\"717\" height=\"167\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logoipsum-254.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logoipsum-254.png 717w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logoipsum-254-300x70.png 300w\" sizes=\"(max-width: 717px) 100vw, 717px\" />															\n			<h2>Our Trusted Partners</h2>		\n		<p>Donec hendrerit nibh in lectus molestie, id bibendum orci hendrerit. Curabitur euismod ante finibus nibh suscipit, vitae vehicula eros venenatis.</p>		\n			<h2>Join Our Education center Now</h2>		\n															<img width=\"179\" height=\"177\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c2.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" />															\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<a href=\"#\">\n						Sign Up Now\n					</a>\n															<img width=\"324\" height=\"287\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge3.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge3.png 324w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge3-300x266.png 300w\" sizes=\"(max-width: 324px) 100vw, 324px\" />															\n															<img width=\"446\" height=\"593\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/cute-elementary-kids-with-books-at-school-2022-12-16-18-15-57-utc-copy.jpg\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/cute-elementary-kids-with-books-at-school-2022-12-16-18-15-57-utc-copy.jpg 446w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/cute-elementary-kids-with-books-at-school-2022-12-16-18-15-57-utc-copy-226x300.jpg 226w\" sizes=\"(max-width: 446px) 100vw, 446px\" />															\n															<img width=\"446\" height=\"593\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/cute-elementary-kids-with-books-at-school-2022-12-16-18-15-57-utc2.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/cute-elementary-kids-with-books-at-school-2022-12-16-18-15-57-utc2.png 446w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/cute-elementary-kids-with-books-at-school-2022-12-16-18-15-57-utc2-226x300.png 226w\" sizes=\"(max-width: 446px) 100vw, 446px\" />','Home','','inherit','closed','closed','','114-revision-v1','','','2023-09-06 17:36:08','2023-09-06 12:06:08','',114,'https://sahityaonline.in8.cdn-alpha.com/?p=164',0,'revision','',0),(165,1,'2023-09-06 17:36:10','2023-09-06 12:06:10','<h2>Smart  Learning</h2>		\n			<h2>Study Easily</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<a href=\"#\">\n						Check It Out\n					</a>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"800\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/boy3.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/boy3.png 1000w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/boy3-300x300.png 300w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/boy3-150x150.png 150w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/boy3-768x768.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"184\" height=\"181\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c3.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" />															\n															<img width=\"324\" height=\"287\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge.png 324w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge-300x266.png 300w\" sizes=\"(max-width: 324px) 100vw, 324px\" />															\n															<img width=\"195\" height=\"196\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c1.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c1.png 195w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c1-150x150.png 150w\" sizes=\"(max-width: 195px) 100vw, 195px\" />															\n															<img width=\"179\" height=\"177\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c2.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" />															\n															<img width=\"800\" height=\"800\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/little-boy-is-having-online-lessons-by-using-lapto-2022-02-03-17-43-51-utc-copy.jpg\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/little-boy-is-having-online-lessons-by-using-lapto-2022-02-03-17-43-51-utc-copy.jpg 1000w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/little-boy-is-having-online-lessons-by-using-lapto-2022-02-03-17-43-51-utc-copy-300x300.jpg 300w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/little-boy-is-having-online-lessons-by-using-lapto-2022-02-03-17-43-51-utc-copy-150x150.jpg 150w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/little-boy-is-having-online-lessons-by-using-lapto-2022-02-03-17-43-51-utc-copy-768x768.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"183\" height=\"183\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c4.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c4.png 183w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c4-150x150.png 150w\" sizes=\"(max-width: 183px) 100vw, 183px\" />															\n															<img width=\"324\" height=\"287\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge2.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge2.png 324w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge2-300x266.png 300w\" sizes=\"(max-width: 324px) 100vw, 324px\" />															\n			<style>/*! elementor - v3.15.0 - 20-08-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>Our Primary Courses</h2>		\n															<img width=\"800\" height=\"534\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/kids-taking-exam-in-school-2022-06-29-19-26-45-utc-copy-1024x683.jpg\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/kids-taking-exam-in-school-2022-06-29-19-26-45-utc-copy-1024x683.jpg 1024w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/kids-taking-exam-in-school-2022-06-29-19-26-45-utc-copy-300x200.jpg 300w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/kids-taking-exam-in-school-2022-06-29-19-26-45-utc-copy-768x512.jpg 768w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/kids-taking-exam-in-school-2022-06-29-19-26-45-utc-copy.jpg 1200w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h4>Social Studies</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n			<a href=\"#\">\n						Learn More\n					</a>\n															<img width=\"800\" height=\"534\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/portrait-of-happy-caucasian-boy-standing-at-chalkb-2021-09-03-06-28-24-utc-copy-1024x683.jpg\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/portrait-of-happy-caucasian-boy-standing-at-chalkb-2021-09-03-06-28-24-utc-copy-1024x683.jpg 1024w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/portrait-of-happy-caucasian-boy-standing-at-chalkb-2021-09-03-06-28-24-utc-copy-300x200.jpg 300w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/portrait-of-happy-caucasian-boy-standing-at-chalkb-2021-09-03-06-28-24-utc-copy-768x512.jpg 768w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/portrait-of-happy-caucasian-boy-standing-at-chalkb-2021-09-03-06-28-24-utc-copy.jpg 1200w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h4>Mathematics </h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n			<a href=\"#\">\n						Learn More\n					</a>\n															<img width=\"800\" height=\"534\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/woman-learning-english-online-2021-08-26-15-34-41-utc-copy-1024x683.jpg\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/woman-learning-english-online-2021-08-26-15-34-41-utc-copy-1024x683.jpg 1024w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/woman-learning-english-online-2021-08-26-15-34-41-utc-copy-300x200.jpg 300w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/woman-learning-english-online-2021-08-26-15-34-41-utc-copy-768x512.jpg 768w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/woman-learning-english-online-2021-08-26-15-34-41-utc-copy.jpg 1200w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h4>English Course</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n			<a href=\"#\">\n						Learn More\n					</a>\n															<img width=\"600\" height=\"748\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/aged-teacher-2021-09-24-03-26-41-utc.jpg\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/aged-teacher-2021-09-24-03-26-41-utc.jpg 600w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/aged-teacher-2021-09-24-03-26-41-utc-241x300.jpg 241w\" sizes=\"(max-width: 600px) 100vw, 600px\" />															\n															<img width=\"600\" height=\"748\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/aged-teacher-2021-09-24-03-26-41-utc-2.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/aged-teacher-2021-09-24-03-26-41-utc-2.png 600w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/aged-teacher-2021-09-24-03-26-41-utc-2-241x300.png 241w\" sizes=\"(max-width: 600px) 100vw, 600px\" />															\n			<h2>Preparing Our Children’s Bright Future</h2>		\n															<img width=\"324\" height=\"287\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge2.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge2.png 324w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge2-300x266.png 300w\" sizes=\"(max-width: 324px) 100vw, 324px\" />															\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec ultrices purus nec sollicitudin eleifend. In hac habitasse platea dictumst.</p>		\n			<link rel=\"stylesheet\" href=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<h3>\n						Grade Improvement					\n				</h3>\n									<p>\n						 Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n				<h3>\n						Exam Preparation					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing.					</p>\n				<h3>\n						Social Development					\n				</h3>\n									<p>\n						Donec et massa sit amet augue laoreet venenatis id et urna.					</p>\n															<img width=\"195\" height=\"196\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c1.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c1.png 195w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c1-150x150.png 150w\" sizes=\"(max-width: 195px) 100vw, 195px\" />															\n			<h2>Our vision is every child is safe, inspired, challenged, empowered.</h2>		\n															<img width=\"324\" height=\"287\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge.png 324w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge-300x266.png 300w\" sizes=\"(max-width: 324px) 100vw, 324px\" />															\n															<img width=\"184\" height=\"181\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c3.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" />															\n		<p>Integer efficitur ligula ipsum, at vulputate mi fermentum sit amet. Sed pulvinar rutrum commodo. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean vitae tortor nec lectus mattis congue id sed tortor.</p>		\n															<img width=\"183\" height=\"183\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c4.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c4.png 183w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c4-150x150.png 150w\" sizes=\"(max-width: 183px) 100vw, 183px\" />															\n			<a href=\"#\">\n						Learn More\n					</a>\n			<h2>Our Programs for excellence</h2>		\n															<img width=\"195\" height=\"196\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c1.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c1.png 195w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c1-150x150.png 150w\" sizes=\"(max-width: 195px) 100vw, 195px\" />															\n															<img width=\"324\" height=\"287\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge2.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge2.png 324w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge2-300x266.png 300w\" sizes=\"(max-width: 324px) 100vw, 324px\" />															\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Mauris at lacus semper, fermentum mi sed, rutrum nibh. Sed gravida elit ligula, sit amet venenatis diam hendrerit iaculis.</p>		\n															<img width=\"179\" height=\"177\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c2.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" />															\n			<a href=\"#\">\n						Discover More\n					</a>\n															<img width=\"255\" height=\"255\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/grade.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/grade.png 255w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/grade-150x150.png 150w\" sizes=\"(max-width: 255px) 100vw, 255px\" />															\n			<h5>Grade Boost</h5>		\n		<p>Lorem ipsum dolor sit amet.</p>		\n															<img width=\"255\" height=\"255\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/chart.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/chart.png 255w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/chart-150x150.png 150w\" sizes=\"(max-width: 255px) 100vw, 255px\" />															\n			<h5>Skill Evaluation</h5>		\n		<p>Lorem ipsum dolor sit amet.</p>		\n															<img width=\"255\" height=\"255\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/test-exam-sheet.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/test-exam-sheet.png 255w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/test-exam-sheet-150x150.png 150w\" sizes=\"(max-width: 255px) 100vw, 255px\" />															\n			<h5>Mock Exam</h5>		\n		<p>Lorem ipsum dolor sit amet.</p>		\n															<img width=\"255\" height=\"255\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/schedule-sheet.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/schedule-sheet.png 255w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/schedule-sheet-150x150.png 150w\" sizes=\"(max-width: 255px) 100vw, 255px\" />															\n			<h5>Weekend Class</h5>		\n		<p>Lorem ipsum dolor sit amet.</p>		\n			<h2>Our Popular Teacher</h2>		\n															<img width=\"183\" height=\"183\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c4.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c4.png 183w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c4-150x150.png 150w\" sizes=\"(max-width: 183px) 100vw, 183px\" />															\n															<img width=\"184\" height=\"181\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c3.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" />															\n															<img width=\"800\" height=\"800\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/pp1.jpg\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/pp1.jpg 800w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/pp1-300x300.jpg 300w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/pp1-150x150.jpg 150w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/pp1-768x768.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h5>Harry Smith</h5>		\n			<h5>English Teacher</h5>		\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n@charset \"UTF-8\";.elementor-star-rating{color:#ccd6df;font-family:eicons;display:inline-block}.elementor-star-rating i{display:inline-block;position:relative;font-style:normal;cursor:default}.elementor-star-rating i:before{content:\"e934\";display:block;font-size:inherit;font-family:inherit;position:absolute;overflow:hidden;color:#f0ad4e;top:0;left:0}.elementor-star-rating .elementor-star-empty:before{content:none}.elementor-star-rating .elementor-star-1:before{width:10%}.elementor-star-rating .elementor-star-2:before{width:20%}.elementor-star-rating .elementor-star-3:before{width:30%}.elementor-star-rating .elementor-star-4:before{width:40%}.elementor-star-rating .elementor-star-5:before{width:50%}.elementor-star-rating .elementor-star-6:before{width:60%}.elementor-star-rating .elementor-star-7:before{width:70%}.elementor-star-rating .elementor-star-8:before{width:80%}.elementor-star-rating .elementor-star-9:before{width:90%}.elementor-star-rating__wrapper{display:flex;align-items:center}.elementor-star-rating__title{margin-right:10px}.elementor-star-rating--align-right .elementor-star-rating__wrapper{text-align:right;justify-content:flex-end}.elementor-star-rating--align-left .elementor-star-rating__wrapper{text-align:left;justify-content:flex-start}.elementor-star-rating--align-center .elementor-star-rating__wrapper{text-align:center;justify-content:center}.elementor-star-rating--align-justify .elementor-star-rating__title{margin-right:auto}@media (max-width:1024px){.elementor-star-rating-tablet--align-right .elementor-star-rating__wrapper{text-align:right;justify-content:flex-end}.elementor-star-rating-tablet--align-left .elementor-star-rating__wrapper{text-align:left;justify-content:flex-start}.elementor-star-rating-tablet--align-center .elementor-star-rating__wrapper{text-align:center;justify-content:center}.elementor-star-rating-tablet--align-justify .elementor-star-rating__title{margin-right:auto}}@media (max-width:767px){.elementor-star-rating-mobile--align-right .elementor-star-rating__wrapper{text-align:right;justify-content:flex-end}.elementor-star-rating-mobile--align-left .elementor-star-rating__wrapper{text-align:left;justify-content:flex-start}.elementor-star-rating-mobile--align-center .elementor-star-rating__wrapper{text-align:center;justify-content:center}.elementor-star-rating-mobile--align-justify .elementor-star-rating__title{margin-right:auto}}.last-star{letter-spacing:0}.elementor--star-style-star_unicode .elementor-star-rating{font-family:Arial,Helvetica,sans-serif}.elementor--star-style-star_unicode .elementor-star-rating i:not(.elementor-star-empty):before{content:\"★\"}</style>\n						<i>&#xE934;</i><i>&#xE934;</i><i>&#xE934;</i><i>&#xE934;</i><i>&#xE934;</i> 5/5		\n		<p> \" Lorem ipsum dolor sit amet, consectetur adipiscing elit. Suspendisse est neque, ultrices at enim vitae, mattis consequat dui.\"</p>		\n			<a href=\"#\">\n						Contact\n					</a>\n															<img width=\"800\" height=\"800\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/pp2.jpg\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/pp2.jpg 800w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/pp2-300x300.jpg 300w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/pp2-150x150.jpg 150w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/pp2-768x768.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h5>Gregory Warren</h5>		\n			<h5>Social Teacher</h5>		\n						<i>&#xE934;</i><i>&#xE934;</i><i>&#xE934;</i><i>&#xE934;</i><i>&#xE934;</i> 5/5		\n		<p> \" Lorem ipsum dolor sit amet, consectetur adipiscing elit. Suspendisse est neque, ultrices at enim vitae, mattis consequat dui.\"</p>		\n			<a href=\"#\">\n						Contact\n					</a>\n															<img width=\"800\" height=\"800\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/pp3.jpg\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/pp3.jpg 800w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/pp3-300x300.jpg 300w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/pp3-150x150.jpg 150w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/pp3-768x768.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h5>Peter Wong</h5>		\n			<h5>Math Teacher</h5>		\n						<i>&#xE934;</i><i>&#xE934;</i><i>&#xE934;</i><i>&#xE934;</i><i>&#xE934;</i> 5/5		\n		<p> \" Lorem ipsum dolor sit amet, consectetur adipiscing elit. Suspendisse est neque, ultrices at enim vitae, mattis consequat dui.\"</p>		\n			<a href=\"#\">\n						Contact\n					</a>\n															<img width=\"700\" height=\"171\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logoipsum-265.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logoipsum-265.png 700w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logoipsum-265-300x73.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />															\n															<img width=\"708\" height=\"171\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logoipsum-264.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logoipsum-264.png 708w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logoipsum-264-300x72.png 300w\" sizes=\"(max-width: 708px) 100vw, 708px\" />															\n															<img width=\"708\" height=\"171\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logoipsum-262.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logoipsum-262.png 708w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logoipsum-262-300x72.png 300w\" sizes=\"(max-width: 708px) 100vw, 708px\" />															\n															<img width=\"696\" height=\"171\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logoipsum-261.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logoipsum-261.png 696w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logoipsum-261-300x74.png 300w\" sizes=\"(max-width: 696px) 100vw, 696px\" />															\n															<img width=\"642\" height=\"113\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logoipsum-259.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logoipsum-259.png 642w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logoipsum-259-300x53.png 300w\" sizes=\"(max-width: 642px) 100vw, 642px\" />															\n															<img width=\"717\" height=\"167\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logoipsum-254.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logoipsum-254.png 717w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logoipsum-254-300x70.png 300w\" sizes=\"(max-width: 717px) 100vw, 717px\" />															\n			<h2>Our Trusted Partners</h2>		\n		<p>Donec hendrerit nibh in lectus molestie, id bibendum orci hendrerit. Curabitur euismod ante finibus nibh suscipit, vitae vehicula eros venenatis.</p>		\n			<h2>Join Our Education center Now</h2>		\n															<img width=\"179\" height=\"177\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c2.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" />															\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<a href=\"#\">\n						Sign Up Now\n					</a>\n															<img width=\"324\" height=\"287\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge3.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge3.png 324w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge3-300x266.png 300w\" sizes=\"(max-width: 324px) 100vw, 324px\" />															\n															<img width=\"446\" height=\"593\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/cute-elementary-kids-with-books-at-school-2022-12-16-18-15-57-utc-copy.jpg\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/cute-elementary-kids-with-books-at-school-2022-12-16-18-15-57-utc-copy.jpg 446w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/cute-elementary-kids-with-books-at-school-2022-12-16-18-15-57-utc-copy-226x300.jpg 226w\" sizes=\"(max-width: 446px) 100vw, 446px\" />															\n															<img width=\"446\" height=\"593\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/cute-elementary-kids-with-books-at-school-2022-12-16-18-15-57-utc2.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/cute-elementary-kids-with-books-at-school-2022-12-16-18-15-57-utc2.png 446w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/cute-elementary-kids-with-books-at-school-2022-12-16-18-15-57-utc2-226x300.png 226w\" sizes=\"(max-width: 446px) 100vw, 446px\" />','Home','','inherit','closed','closed','','114-revision-v1','','','2023-09-06 17:36:10','2023-09-06 12:06:10','',114,'https://sahityaonline.in8.cdn-alpha.com/?p=165',0,'revision','',0),(166,1,'2023-09-06 17:38:27','2023-09-06 12:08:27','<h2>Smart  Learning</h2>		\n			<h2>Study Easily</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<a href=\"#\">\n						Check It Out\n					</a>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"800\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/boy3.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/boy3.png 1000w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/boy3-300x300.png 300w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/boy3-150x150.png 150w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/boy3-768x768.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"184\" height=\"181\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c3.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" />															\n															<img width=\"324\" height=\"287\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge.png 324w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge-300x266.png 300w\" sizes=\"(max-width: 324px) 100vw, 324px\" />															\n															<img width=\"195\" height=\"196\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c1.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c1.png 195w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c1-150x150.png 150w\" sizes=\"(max-width: 195px) 100vw, 195px\" />															\n															<img width=\"179\" height=\"177\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c2.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" />															\n															<img width=\"800\" height=\"800\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/little-boy-is-having-online-lessons-by-using-lapto-2022-02-03-17-43-51-utc-copy.jpg\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/little-boy-is-having-online-lessons-by-using-lapto-2022-02-03-17-43-51-utc-copy.jpg 1000w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/little-boy-is-having-online-lessons-by-using-lapto-2022-02-03-17-43-51-utc-copy-300x300.jpg 300w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/little-boy-is-having-online-lessons-by-using-lapto-2022-02-03-17-43-51-utc-copy-150x150.jpg 150w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/little-boy-is-having-online-lessons-by-using-lapto-2022-02-03-17-43-51-utc-copy-768x768.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"183\" height=\"183\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c4.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c4.png 183w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c4-150x150.png 150w\" sizes=\"(max-width: 183px) 100vw, 183px\" />															\n															<img width=\"324\" height=\"287\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge2.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge2.png 324w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge2-300x266.png 300w\" sizes=\"(max-width: 324px) 100vw, 324px\" />															\n			<style>/*! elementor - v3.15.0 - 20-08-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>Our Primary Courses</h2>		\n															<img width=\"800\" height=\"534\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/kids-taking-exam-in-school-2022-06-29-19-26-45-utc-copy-1024x683.jpg\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/kids-taking-exam-in-school-2022-06-29-19-26-45-utc-copy-1024x683.jpg 1024w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/kids-taking-exam-in-school-2022-06-29-19-26-45-utc-copy-300x200.jpg 300w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/kids-taking-exam-in-school-2022-06-29-19-26-45-utc-copy-768x512.jpg 768w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/kids-taking-exam-in-school-2022-06-29-19-26-45-utc-copy.jpg 1200w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h4>Social Studies</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n			<a href=\"#\">\n						Learn More\n					</a>\n															<img width=\"800\" height=\"534\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/portrait-of-happy-caucasian-boy-standing-at-chalkb-2021-09-03-06-28-24-utc-copy-1024x683.jpg\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/portrait-of-happy-caucasian-boy-standing-at-chalkb-2021-09-03-06-28-24-utc-copy-1024x683.jpg 1024w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/portrait-of-happy-caucasian-boy-standing-at-chalkb-2021-09-03-06-28-24-utc-copy-300x200.jpg 300w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/portrait-of-happy-caucasian-boy-standing-at-chalkb-2021-09-03-06-28-24-utc-copy-768x512.jpg 768w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/portrait-of-happy-caucasian-boy-standing-at-chalkb-2021-09-03-06-28-24-utc-copy.jpg 1200w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h4>Mathematics </h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n			<a href=\"#\">\n						Learn More\n					</a>\n															<img width=\"800\" height=\"534\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/woman-learning-english-online-2021-08-26-15-34-41-utc-copy-1024x683.jpg\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/woman-learning-english-online-2021-08-26-15-34-41-utc-copy-1024x683.jpg 1024w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/woman-learning-english-online-2021-08-26-15-34-41-utc-copy-300x200.jpg 300w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/woman-learning-english-online-2021-08-26-15-34-41-utc-copy-768x512.jpg 768w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/woman-learning-english-online-2021-08-26-15-34-41-utc-copy.jpg 1200w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h4>English Course</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n			<a href=\"#\">\n						Learn More\n					</a>\n															<img width=\"600\" height=\"748\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/aged-teacher-2021-09-24-03-26-41-utc.jpg\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/aged-teacher-2021-09-24-03-26-41-utc.jpg 600w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/aged-teacher-2021-09-24-03-26-41-utc-241x300.jpg 241w\" sizes=\"(max-width: 600px) 100vw, 600px\" />															\n															<img width=\"600\" height=\"748\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/aged-teacher-2021-09-24-03-26-41-utc-2.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/aged-teacher-2021-09-24-03-26-41-utc-2.png 600w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/aged-teacher-2021-09-24-03-26-41-utc-2-241x300.png 241w\" sizes=\"(max-width: 600px) 100vw, 600px\" />															\n			<h2>Preparing Our Children’s Bright Future</h2>		\n															<img width=\"324\" height=\"287\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge2.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge2.png 324w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge2-300x266.png 300w\" sizes=\"(max-width: 324px) 100vw, 324px\" />															\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec ultrices purus nec sollicitudin eleifend. In hac habitasse platea dictumst.</p>		\n			<link rel=\"stylesheet\" href=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<h3>\n						Grade Improvement					\n				</h3>\n									<p>\n						 Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n				<h3>\n						Exam Preparation					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing.					</p>\n				<h3>\n						Social Development					\n				</h3>\n									<p>\n						Donec et massa sit amet augue laoreet venenatis id et urna.					</p>\n															<img width=\"195\" height=\"196\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c1.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c1.png 195w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c1-150x150.png 150w\" sizes=\"(max-width: 195px) 100vw, 195px\" />															\n			<h2>Our vision is every child is safe, inspired, challenged, empowered.</h2>		\n															<img width=\"324\" height=\"287\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge.png 324w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge-300x266.png 300w\" sizes=\"(max-width: 324px) 100vw, 324px\" />															\n															<img width=\"184\" height=\"181\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c3.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" />															\n		<p>Integer efficitur ligula ipsum, at vulputate mi fermentum sit amet. Sed pulvinar rutrum commodo. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean vitae tortor nec lectus mattis congue id sed tortor.</p>		\n															<img width=\"183\" height=\"183\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c4.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c4.png 183w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c4-150x150.png 150w\" sizes=\"(max-width: 183px) 100vw, 183px\" />															\n			<a href=\"#\">\n						Learn More\n					</a>\n			<h2>Our Programs for excellence</h2>		\n															<img width=\"195\" height=\"196\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c1.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c1.png 195w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c1-150x150.png 150w\" sizes=\"(max-width: 195px) 100vw, 195px\" />															\n															<img width=\"324\" height=\"287\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge2.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge2.png 324w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge2-300x266.png 300w\" sizes=\"(max-width: 324px) 100vw, 324px\" />															\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Mauris at lacus semper, fermentum mi sed, rutrum nibh. Sed gravida elit ligula, sit amet venenatis diam hendrerit iaculis.</p>		\n															<img width=\"179\" height=\"177\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c2.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" />															\n			<a href=\"#\">\n						Discover More\n					</a>\n															<img width=\"255\" height=\"255\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/grade.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/grade.png 255w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/grade-150x150.png 150w\" sizes=\"(max-width: 255px) 100vw, 255px\" />															\n			<h5>Grade Boost</h5>		\n		<p>Lorem ipsum dolor sit amet.</p>		\n															<img width=\"255\" height=\"255\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/chart.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/chart.png 255w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/chart-150x150.png 150w\" sizes=\"(max-width: 255px) 100vw, 255px\" />															\n			<h5>Skill Evaluation</h5>		\n		<p>Lorem ipsum dolor sit amet.</p>		\n															<img width=\"255\" height=\"255\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/test-exam-sheet.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/test-exam-sheet.png 255w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/test-exam-sheet-150x150.png 150w\" sizes=\"(max-width: 255px) 100vw, 255px\" />															\n			<h5>Mock Exam</h5>		\n		<p>Lorem ipsum dolor sit amet.</p>		\n															<img width=\"255\" height=\"255\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/schedule-sheet.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/schedule-sheet.png 255w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/schedule-sheet-150x150.png 150w\" sizes=\"(max-width: 255px) 100vw, 255px\" />															\n			<h5>Weekend Class</h5>		\n		<p>Lorem ipsum dolor sit amet.</p>		\n			<h2>Our Popular Teacher</h2>		\n															<img width=\"183\" height=\"183\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c4.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c4.png 183w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c4-150x150.png 150w\" sizes=\"(max-width: 183px) 100vw, 183px\" />															\n															<img width=\"184\" height=\"181\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c3.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" />															\n															<img width=\"800\" height=\"800\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/pp1.jpg\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/pp1.jpg 800w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/pp1-300x300.jpg 300w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/pp1-150x150.jpg 150w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/pp1-768x768.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h5>Harry Smith</h5>		\n			<h5>English Teacher</h5>		\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n@charset \"UTF-8\";.elementor-star-rating{color:#ccd6df;font-family:eicons;display:inline-block}.elementor-star-rating i{display:inline-block;position:relative;font-style:normal;cursor:default}.elementor-star-rating i:before{content:\"e934\";display:block;font-size:inherit;font-family:inherit;position:absolute;overflow:hidden;color:#f0ad4e;top:0;left:0}.elementor-star-rating .elementor-star-empty:before{content:none}.elementor-star-rating .elementor-star-1:before{width:10%}.elementor-star-rating .elementor-star-2:before{width:20%}.elementor-star-rating .elementor-star-3:before{width:30%}.elementor-star-rating .elementor-star-4:before{width:40%}.elementor-star-rating .elementor-star-5:before{width:50%}.elementor-star-rating .elementor-star-6:before{width:60%}.elementor-star-rating .elementor-star-7:before{width:70%}.elementor-star-rating .elementor-star-8:before{width:80%}.elementor-star-rating .elementor-star-9:before{width:90%}.elementor-star-rating__wrapper{display:flex;align-items:center}.elementor-star-rating__title{margin-right:10px}.elementor-star-rating--align-right .elementor-star-rating__wrapper{text-align:right;justify-content:flex-end}.elementor-star-rating--align-left .elementor-star-rating__wrapper{text-align:left;justify-content:flex-start}.elementor-star-rating--align-center .elementor-star-rating__wrapper{text-align:center;justify-content:center}.elementor-star-rating--align-justify .elementor-star-rating__title{margin-right:auto}@media (max-width:1024px){.elementor-star-rating-tablet--align-right .elementor-star-rating__wrapper{text-align:right;justify-content:flex-end}.elementor-star-rating-tablet--align-left .elementor-star-rating__wrapper{text-align:left;justify-content:flex-start}.elementor-star-rating-tablet--align-center .elementor-star-rating__wrapper{text-align:center;justify-content:center}.elementor-star-rating-tablet--align-justify .elementor-star-rating__title{margin-right:auto}}@media (max-width:767px){.elementor-star-rating-mobile--align-right .elementor-star-rating__wrapper{text-align:right;justify-content:flex-end}.elementor-star-rating-mobile--align-left .elementor-star-rating__wrapper{text-align:left;justify-content:flex-start}.elementor-star-rating-mobile--align-center .elementor-star-rating__wrapper{text-align:center;justify-content:center}.elementor-star-rating-mobile--align-justify .elementor-star-rating__title{margin-right:auto}}.last-star{letter-spacing:0}.elementor--star-style-star_unicode .elementor-star-rating{font-family:Arial,Helvetica,sans-serif}.elementor--star-style-star_unicode .elementor-star-rating i:not(.elementor-star-empty):before{content:\"★\"}</style>\n						<i>&#xE934;</i><i>&#xE934;</i><i>&#xE934;</i><i>&#xE934;</i><i>&#xE934;</i> 5/5		\n		<p> \" Lorem ipsum dolor sit amet, consectetur adipiscing elit. Suspendisse est neque, ultrices at enim vitae, mattis consequat dui.\"</p>		\n			<a href=\"#\">\n						Contact\n					</a>\n															<img width=\"800\" height=\"800\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/pp2.jpg\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/pp2.jpg 800w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/pp2-300x300.jpg 300w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/pp2-150x150.jpg 150w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/pp2-768x768.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h5>Gregory Warren</h5>		\n			<h5>Social Teacher</h5>		\n						<i>&#xE934;</i><i>&#xE934;</i><i>&#xE934;</i><i>&#xE934;</i><i>&#xE934;</i> 5/5		\n		<p> \" Lorem ipsum dolor sit amet, consectetur adipiscing elit. Suspendisse est neque, ultrices at enim vitae, mattis consequat dui.\"</p>		\n			<a href=\"#\">\n						Contact\n					</a>\n															<img width=\"800\" height=\"800\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/pp3.jpg\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/pp3.jpg 800w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/pp3-300x300.jpg 300w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/pp3-150x150.jpg 150w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/pp3-768x768.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h5>Peter Wong</h5>		\n			<h5>Math Teacher</h5>		\n						<i>&#xE934;</i><i>&#xE934;</i><i>&#xE934;</i><i>&#xE934;</i><i>&#xE934;</i> 5/5		\n		<p> \" Lorem ipsum dolor sit amet, consectetur adipiscing elit. Suspendisse est neque, ultrices at enim vitae, mattis consequat dui.\"</p>		\n			<a href=\"#\">\n						Contact\n					</a>\n															<img width=\"700\" height=\"171\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logoipsum-265.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logoipsum-265.png 700w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logoipsum-265-300x73.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />															\n															<img width=\"708\" height=\"171\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logoipsum-264.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logoipsum-264.png 708w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logoipsum-264-300x72.png 300w\" sizes=\"(max-width: 708px) 100vw, 708px\" />															\n															<img width=\"708\" height=\"171\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logoipsum-262.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logoipsum-262.png 708w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logoipsum-262-300x72.png 300w\" sizes=\"(max-width: 708px) 100vw, 708px\" />															\n															<img width=\"696\" height=\"171\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logoipsum-261.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logoipsum-261.png 696w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logoipsum-261-300x74.png 300w\" sizes=\"(max-width: 696px) 100vw, 696px\" />															\n															<img width=\"642\" height=\"113\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logoipsum-259.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logoipsum-259.png 642w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logoipsum-259-300x53.png 300w\" sizes=\"(max-width: 642px) 100vw, 642px\" />															\n															<img width=\"717\" height=\"167\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logoipsum-254.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logoipsum-254.png 717w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logoipsum-254-300x70.png 300w\" sizes=\"(max-width: 717px) 100vw, 717px\" />															\n			<h2>Our Trusted Partners</h2>		\n		<p>Donec hendrerit nibh in lectus molestie, id bibendum orci hendrerit. Curabitur euismod ante finibus nibh suscipit, vitae vehicula eros venenatis.</p>		\n			<h2>Join Our Education center Now</h2>		\n															<img width=\"179\" height=\"177\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c2.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" />															\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<a href=\"#\">\n						Sign Up Now\n					</a>\n															<img width=\"324\" height=\"287\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge3.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge3.png 324w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge3-300x266.png 300w\" sizes=\"(max-width: 324px) 100vw, 324px\" />															\n															<img width=\"446\" height=\"593\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/cute-elementary-kids-with-books-at-school-2022-12-16-18-15-57-utc-copy.jpg\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/cute-elementary-kids-with-books-at-school-2022-12-16-18-15-57-utc-copy.jpg 446w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/cute-elementary-kids-with-books-at-school-2022-12-16-18-15-57-utc-copy-226x300.jpg 226w\" sizes=\"(max-width: 446px) 100vw, 446px\" />															\n															<img width=\"446\" height=\"593\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/cute-elementary-kids-with-books-at-school-2022-12-16-18-15-57-utc2.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/cute-elementary-kids-with-books-at-school-2022-12-16-18-15-57-utc2.png 446w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/cute-elementary-kids-with-books-at-school-2022-12-16-18-15-57-utc2-226x300.png 226w\" sizes=\"(max-width: 446px) 100vw, 446px\" />','Home','','inherit','closed','closed','','114-revision-v1','','','2023-09-06 17:38:27','2023-09-06 12:08:27','',114,'https://sahityaonline.in8.cdn-alpha.com/?p=166',0,'revision','',0),(167,1,'2023-09-06 17:38:28','2023-09-06 12:08:28','<h2>Smart  Learning</h2>		\n			<h2>Study Easily</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<a href=\"#\">\n						Check It Out\n					</a>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"800\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/boy3.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/boy3.png 1000w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/boy3-300x300.png 300w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/boy3-150x150.png 150w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/boy3-768x768.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"184\" height=\"181\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c3.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" />															\n															<img width=\"324\" height=\"287\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge.png 324w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge-300x266.png 300w\" sizes=\"(max-width: 324px) 100vw, 324px\" />															\n															<img width=\"195\" height=\"196\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c1.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c1.png 195w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c1-150x150.png 150w\" sizes=\"(max-width: 195px) 100vw, 195px\" />															\n															<img width=\"179\" height=\"177\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c2.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" />															\n															<img width=\"800\" height=\"800\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/little-boy-is-having-online-lessons-by-using-lapto-2022-02-03-17-43-51-utc-copy.jpg\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/little-boy-is-having-online-lessons-by-using-lapto-2022-02-03-17-43-51-utc-copy.jpg 1000w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/little-boy-is-having-online-lessons-by-using-lapto-2022-02-03-17-43-51-utc-copy-300x300.jpg 300w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/little-boy-is-having-online-lessons-by-using-lapto-2022-02-03-17-43-51-utc-copy-150x150.jpg 150w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/little-boy-is-having-online-lessons-by-using-lapto-2022-02-03-17-43-51-utc-copy-768x768.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"183\" height=\"183\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c4.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c4.png 183w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c4-150x150.png 150w\" sizes=\"(max-width: 183px) 100vw, 183px\" />															\n															<img width=\"324\" height=\"287\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge2.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge2.png 324w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge2-300x266.png 300w\" sizes=\"(max-width: 324px) 100vw, 324px\" />															\n			<style>/*! elementor - v3.15.0 - 20-08-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>Our Primary Courses</h2>		\n															<img width=\"800\" height=\"534\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/kids-taking-exam-in-school-2022-06-29-19-26-45-utc-copy-1024x683.jpg\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/kids-taking-exam-in-school-2022-06-29-19-26-45-utc-copy-1024x683.jpg 1024w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/kids-taking-exam-in-school-2022-06-29-19-26-45-utc-copy-300x200.jpg 300w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/kids-taking-exam-in-school-2022-06-29-19-26-45-utc-copy-768x512.jpg 768w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/kids-taking-exam-in-school-2022-06-29-19-26-45-utc-copy.jpg 1200w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h4>Social Studies</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n			<a href=\"#\">\n						Learn More\n					</a>\n															<img width=\"800\" height=\"534\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/portrait-of-happy-caucasian-boy-standing-at-chalkb-2021-09-03-06-28-24-utc-copy-1024x683.jpg\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/portrait-of-happy-caucasian-boy-standing-at-chalkb-2021-09-03-06-28-24-utc-copy-1024x683.jpg 1024w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/portrait-of-happy-caucasian-boy-standing-at-chalkb-2021-09-03-06-28-24-utc-copy-300x200.jpg 300w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/portrait-of-happy-caucasian-boy-standing-at-chalkb-2021-09-03-06-28-24-utc-copy-768x512.jpg 768w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/portrait-of-happy-caucasian-boy-standing-at-chalkb-2021-09-03-06-28-24-utc-copy.jpg 1200w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h4>Mathematics </h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n			<a href=\"#\">\n						Learn More\n					</a>\n															<img width=\"800\" height=\"534\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/woman-learning-english-online-2021-08-26-15-34-41-utc-copy-1024x683.jpg\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/woman-learning-english-online-2021-08-26-15-34-41-utc-copy-1024x683.jpg 1024w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/woman-learning-english-online-2021-08-26-15-34-41-utc-copy-300x200.jpg 300w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/woman-learning-english-online-2021-08-26-15-34-41-utc-copy-768x512.jpg 768w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/woman-learning-english-online-2021-08-26-15-34-41-utc-copy.jpg 1200w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h4>English Course</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n			<a href=\"#\">\n						Learn More\n					</a>\n															<img width=\"600\" height=\"748\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/aged-teacher-2021-09-24-03-26-41-utc.jpg\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/aged-teacher-2021-09-24-03-26-41-utc.jpg 600w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/aged-teacher-2021-09-24-03-26-41-utc-241x300.jpg 241w\" sizes=\"(max-width: 600px) 100vw, 600px\" />															\n															<img width=\"600\" height=\"748\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/aged-teacher-2021-09-24-03-26-41-utc-2.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/aged-teacher-2021-09-24-03-26-41-utc-2.png 600w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/aged-teacher-2021-09-24-03-26-41-utc-2-241x300.png 241w\" sizes=\"(max-width: 600px) 100vw, 600px\" />															\n			<h2>Preparing Our Children’s Bright Future</h2>		\n															<img width=\"324\" height=\"287\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge2.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge2.png 324w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge2-300x266.png 300w\" sizes=\"(max-width: 324px) 100vw, 324px\" />															\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec ultrices purus nec sollicitudin eleifend. In hac habitasse platea dictumst.</p>		\n			<link rel=\"stylesheet\" href=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<h3>\n						Grade Improvement					\n				</h3>\n									<p>\n						 Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n				<h3>\n						Exam Preparation					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing.					</p>\n				<h3>\n						Social Development					\n				</h3>\n									<p>\n						Donec et massa sit amet augue laoreet venenatis id et urna.					</p>\n															<img width=\"195\" height=\"196\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c1.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c1.png 195w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c1-150x150.png 150w\" sizes=\"(max-width: 195px) 100vw, 195px\" />															\n			<h2>Our vision is every child is safe, inspired, challenged, empowered.</h2>		\n															<img width=\"324\" height=\"287\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge.png 324w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge-300x266.png 300w\" sizes=\"(max-width: 324px) 100vw, 324px\" />															\n															<img width=\"184\" height=\"181\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c3.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" />															\n		<p>Integer efficitur ligula ipsum, at vulputate mi fermentum sit amet. Sed pulvinar rutrum commodo. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean vitae tortor nec lectus mattis congue id sed tortor.</p>		\n															<img width=\"183\" height=\"183\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c4.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c4.png 183w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c4-150x150.png 150w\" sizes=\"(max-width: 183px) 100vw, 183px\" />															\n			<a href=\"#\">\n						Learn More\n					</a>\n			<h2>Our Programs for excellence</h2>		\n															<img width=\"195\" height=\"196\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c1.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c1.png 195w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c1-150x150.png 150w\" sizes=\"(max-width: 195px) 100vw, 195px\" />															\n															<img width=\"324\" height=\"287\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge2.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge2.png 324w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge2-300x266.png 300w\" sizes=\"(max-width: 324px) 100vw, 324px\" />															\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Mauris at lacus semper, fermentum mi sed, rutrum nibh. Sed gravida elit ligula, sit amet venenatis diam hendrerit iaculis.</p>		\n															<img width=\"179\" height=\"177\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c2.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" />															\n			<a href=\"#\">\n						Discover More\n					</a>\n															<img width=\"255\" height=\"255\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/grade.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/grade.png 255w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/grade-150x150.png 150w\" sizes=\"(max-width: 255px) 100vw, 255px\" />															\n			<h5>Grade Boost</h5>		\n		<p>Lorem ipsum dolor sit amet.</p>		\n															<img width=\"255\" height=\"255\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/chart.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/chart.png 255w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/chart-150x150.png 150w\" sizes=\"(max-width: 255px) 100vw, 255px\" />															\n			<h5>Skill Evaluation</h5>		\n		<p>Lorem ipsum dolor sit amet.</p>		\n															<img width=\"255\" height=\"255\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/test-exam-sheet.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/test-exam-sheet.png 255w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/test-exam-sheet-150x150.png 150w\" sizes=\"(max-width: 255px) 100vw, 255px\" />															\n			<h5>Mock Exam</h5>		\n		<p>Lorem ipsum dolor sit amet.</p>		\n															<img width=\"255\" height=\"255\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/schedule-sheet.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/schedule-sheet.png 255w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/schedule-sheet-150x150.png 150w\" sizes=\"(max-width: 255px) 100vw, 255px\" />															\n			<h5>Weekend Class</h5>		\n		<p>Lorem ipsum dolor sit amet.</p>		\n			<h2>Our Popular Teacher</h2>		\n															<img width=\"183\" height=\"183\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c4.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c4.png 183w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c4-150x150.png 150w\" sizes=\"(max-width: 183px) 100vw, 183px\" />															\n															<img width=\"184\" height=\"181\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c3.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" />															\n															<img width=\"800\" height=\"800\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/pp1.jpg\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/pp1.jpg 800w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/pp1-300x300.jpg 300w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/pp1-150x150.jpg 150w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/pp1-768x768.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h5>Harry Smith</h5>		\n			<h5>English Teacher</h5>		\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n@charset \"UTF-8\";.elementor-star-rating{color:#ccd6df;font-family:eicons;display:inline-block}.elementor-star-rating i{display:inline-block;position:relative;font-style:normal;cursor:default}.elementor-star-rating i:before{content:\"e934\";display:block;font-size:inherit;font-family:inherit;position:absolute;overflow:hidden;color:#f0ad4e;top:0;left:0}.elementor-star-rating .elementor-star-empty:before{content:none}.elementor-star-rating .elementor-star-1:before{width:10%}.elementor-star-rating .elementor-star-2:before{width:20%}.elementor-star-rating .elementor-star-3:before{width:30%}.elementor-star-rating .elementor-star-4:before{width:40%}.elementor-star-rating .elementor-star-5:before{width:50%}.elementor-star-rating .elementor-star-6:before{width:60%}.elementor-star-rating .elementor-star-7:before{width:70%}.elementor-star-rating .elementor-star-8:before{width:80%}.elementor-star-rating .elementor-star-9:before{width:90%}.elementor-star-rating__wrapper{display:flex;align-items:center}.elementor-star-rating__title{margin-right:10px}.elementor-star-rating--align-right .elementor-star-rating__wrapper{text-align:right;justify-content:flex-end}.elementor-star-rating--align-left .elementor-star-rating__wrapper{text-align:left;justify-content:flex-start}.elementor-star-rating--align-center .elementor-star-rating__wrapper{text-align:center;justify-content:center}.elementor-star-rating--align-justify .elementor-star-rating__title{margin-right:auto}@media (max-width:1024px){.elementor-star-rating-tablet--align-right .elementor-star-rating__wrapper{text-align:right;justify-content:flex-end}.elementor-star-rating-tablet--align-left .elementor-star-rating__wrapper{text-align:left;justify-content:flex-start}.elementor-star-rating-tablet--align-center .elementor-star-rating__wrapper{text-align:center;justify-content:center}.elementor-star-rating-tablet--align-justify .elementor-star-rating__title{margin-right:auto}}@media (max-width:767px){.elementor-star-rating-mobile--align-right .elementor-star-rating__wrapper{text-align:right;justify-content:flex-end}.elementor-star-rating-mobile--align-left .elementor-star-rating__wrapper{text-align:left;justify-content:flex-start}.elementor-star-rating-mobile--align-center .elementor-star-rating__wrapper{text-align:center;justify-content:center}.elementor-star-rating-mobile--align-justify .elementor-star-rating__title{margin-right:auto}}.last-star{letter-spacing:0}.elementor--star-style-star_unicode .elementor-star-rating{font-family:Arial,Helvetica,sans-serif}.elementor--star-style-star_unicode .elementor-star-rating i:not(.elementor-star-empty):before{content:\"★\"}</style>\n						<i>&#xE934;</i><i>&#xE934;</i><i>&#xE934;</i><i>&#xE934;</i><i>&#xE934;</i> 5/5		\n		<p> \" Lorem ipsum dolor sit amet, consectetur adipiscing elit. Suspendisse est neque, ultrices at enim vitae, mattis consequat dui.\"</p>		\n			<a href=\"#\">\n						Contact\n					</a>\n															<img width=\"800\" height=\"800\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/pp2.jpg\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/pp2.jpg 800w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/pp2-300x300.jpg 300w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/pp2-150x150.jpg 150w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/pp2-768x768.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h5>Gregory Warren</h5>		\n			<h5>Social Teacher</h5>		\n						<i>&#xE934;</i><i>&#xE934;</i><i>&#xE934;</i><i>&#xE934;</i><i>&#xE934;</i> 5/5		\n		<p> \" Lorem ipsum dolor sit amet, consectetur adipiscing elit. Suspendisse est neque, ultrices at enim vitae, mattis consequat dui.\"</p>		\n			<a href=\"#\">\n						Contact\n					</a>\n															<img width=\"800\" height=\"800\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/pp3.jpg\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/pp3.jpg 800w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/pp3-300x300.jpg 300w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/pp3-150x150.jpg 150w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/pp3-768x768.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h5>Peter Wong</h5>		\n			<h5>Math Teacher</h5>		\n						<i>&#xE934;</i><i>&#xE934;</i><i>&#xE934;</i><i>&#xE934;</i><i>&#xE934;</i> 5/5		\n		<p> \" Lorem ipsum dolor sit amet, consectetur adipiscing elit. Suspendisse est neque, ultrices at enim vitae, mattis consequat dui.\"</p>		\n			<a href=\"#\">\n						Contact\n					</a>\n															<img width=\"700\" height=\"171\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logoipsum-265.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logoipsum-265.png 700w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logoipsum-265-300x73.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />															\n															<img width=\"708\" height=\"171\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logoipsum-264.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logoipsum-264.png 708w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logoipsum-264-300x72.png 300w\" sizes=\"(max-width: 708px) 100vw, 708px\" />															\n															<img width=\"708\" height=\"171\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logoipsum-262.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logoipsum-262.png 708w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logoipsum-262-300x72.png 300w\" sizes=\"(max-width: 708px) 100vw, 708px\" />															\n															<img width=\"696\" height=\"171\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logoipsum-261.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logoipsum-261.png 696w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logoipsum-261-300x74.png 300w\" sizes=\"(max-width: 696px) 100vw, 696px\" />															\n															<img width=\"642\" height=\"113\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logoipsum-259.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logoipsum-259.png 642w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logoipsum-259-300x53.png 300w\" sizes=\"(max-width: 642px) 100vw, 642px\" />															\n															<img width=\"717\" height=\"167\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logoipsum-254.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logoipsum-254.png 717w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logoipsum-254-300x70.png 300w\" sizes=\"(max-width: 717px) 100vw, 717px\" />															\n			<h2>Our Trusted Partners</h2>		\n		<p>Donec hendrerit nibh in lectus molestie, id bibendum orci hendrerit. Curabitur euismod ante finibus nibh suscipit, vitae vehicula eros venenatis.</p>		\n			<h2>Join Our Education center Now</h2>		\n															<img width=\"179\" height=\"177\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c2.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" />															\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<a href=\"#\">\n						Sign Up Now\n					</a>\n															<img width=\"324\" height=\"287\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge3.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge3.png 324w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge3-300x266.png 300w\" sizes=\"(max-width: 324px) 100vw, 324px\" />															\n															<img width=\"446\" height=\"593\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/cute-elementary-kids-with-books-at-school-2022-12-16-18-15-57-utc-copy.jpg\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/cute-elementary-kids-with-books-at-school-2022-12-16-18-15-57-utc-copy.jpg 446w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/cute-elementary-kids-with-books-at-school-2022-12-16-18-15-57-utc-copy-226x300.jpg 226w\" sizes=\"(max-width: 446px) 100vw, 446px\" />															\n															<img width=\"446\" height=\"593\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/cute-elementary-kids-with-books-at-school-2022-12-16-18-15-57-utc2.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/cute-elementary-kids-with-books-at-school-2022-12-16-18-15-57-utc2.png 446w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/cute-elementary-kids-with-books-at-school-2022-12-16-18-15-57-utc2-226x300.png 226w\" sizes=\"(max-width: 446px) 100vw, 446px\" />','Home','','inherit','closed','closed','','114-revision-v1','','','2023-09-06 17:38:28','2023-09-06 12:08:28','',114,'https://sahityaonline.in8.cdn-alpha.com/?p=167',0,'revision','',0),(168,1,'2023-09-06 17:38:30','2023-09-06 12:08:30','<h2>Smart  Learning</h2>		\n			<h2>Study Easily</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<a href=\"#\">\n						Check It Out\n					</a>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"800\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/boy3.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/boy3.png 1000w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/boy3-300x300.png 300w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/boy3-150x150.png 150w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/boy3-768x768.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"184\" height=\"181\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c3.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" />															\n															<img width=\"324\" height=\"287\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge.png 324w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge-300x266.png 300w\" sizes=\"(max-width: 324px) 100vw, 324px\" />															\n															<img width=\"195\" height=\"196\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c1.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c1.png 195w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c1-150x150.png 150w\" sizes=\"(max-width: 195px) 100vw, 195px\" />															\n															<img width=\"179\" height=\"177\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c2.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" />															\n															<img width=\"800\" height=\"800\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/little-boy-is-having-online-lessons-by-using-lapto-2022-02-03-17-43-51-utc-copy.jpg\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/little-boy-is-having-online-lessons-by-using-lapto-2022-02-03-17-43-51-utc-copy.jpg 1000w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/little-boy-is-having-online-lessons-by-using-lapto-2022-02-03-17-43-51-utc-copy-300x300.jpg 300w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/little-boy-is-having-online-lessons-by-using-lapto-2022-02-03-17-43-51-utc-copy-150x150.jpg 150w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/little-boy-is-having-online-lessons-by-using-lapto-2022-02-03-17-43-51-utc-copy-768x768.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"183\" height=\"183\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c4.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c4.png 183w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c4-150x150.png 150w\" sizes=\"(max-width: 183px) 100vw, 183px\" />															\n															<img width=\"324\" height=\"287\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge2.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge2.png 324w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge2-300x266.png 300w\" sizes=\"(max-width: 324px) 100vw, 324px\" />															\n			<style>/*! elementor - v3.15.0 - 20-08-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>Our Primary Courses</h2>		\n															<img width=\"800\" height=\"534\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/kids-taking-exam-in-school-2022-06-29-19-26-45-utc-copy-1024x683.jpg\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/kids-taking-exam-in-school-2022-06-29-19-26-45-utc-copy-1024x683.jpg 1024w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/kids-taking-exam-in-school-2022-06-29-19-26-45-utc-copy-300x200.jpg 300w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/kids-taking-exam-in-school-2022-06-29-19-26-45-utc-copy-768x512.jpg 768w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/kids-taking-exam-in-school-2022-06-29-19-26-45-utc-copy.jpg 1200w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h4>Social Studies</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n			<a href=\"#\">\n						Learn More\n					</a>\n															<img width=\"800\" height=\"534\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/portrait-of-happy-caucasian-boy-standing-at-chalkb-2021-09-03-06-28-24-utc-copy-1024x683.jpg\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/portrait-of-happy-caucasian-boy-standing-at-chalkb-2021-09-03-06-28-24-utc-copy-1024x683.jpg 1024w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/portrait-of-happy-caucasian-boy-standing-at-chalkb-2021-09-03-06-28-24-utc-copy-300x200.jpg 300w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/portrait-of-happy-caucasian-boy-standing-at-chalkb-2021-09-03-06-28-24-utc-copy-768x512.jpg 768w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/portrait-of-happy-caucasian-boy-standing-at-chalkb-2021-09-03-06-28-24-utc-copy.jpg 1200w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h4>Mathematics </h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n			<a href=\"#\">\n						Learn More\n					</a>\n															<img width=\"800\" height=\"534\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/woman-learning-english-online-2021-08-26-15-34-41-utc-copy-1024x683.jpg\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/woman-learning-english-online-2021-08-26-15-34-41-utc-copy-1024x683.jpg 1024w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/woman-learning-english-online-2021-08-26-15-34-41-utc-copy-300x200.jpg 300w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/woman-learning-english-online-2021-08-26-15-34-41-utc-copy-768x512.jpg 768w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/woman-learning-english-online-2021-08-26-15-34-41-utc-copy.jpg 1200w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h4>English Course</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n			<a href=\"#\">\n						Learn More\n					</a>\n															<img width=\"600\" height=\"748\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/aged-teacher-2021-09-24-03-26-41-utc.jpg\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/aged-teacher-2021-09-24-03-26-41-utc.jpg 600w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/aged-teacher-2021-09-24-03-26-41-utc-241x300.jpg 241w\" sizes=\"(max-width: 600px) 100vw, 600px\" />															\n															<img width=\"600\" height=\"748\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/aged-teacher-2021-09-24-03-26-41-utc-2.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/aged-teacher-2021-09-24-03-26-41-utc-2.png 600w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/aged-teacher-2021-09-24-03-26-41-utc-2-241x300.png 241w\" sizes=\"(max-width: 600px) 100vw, 600px\" />															\n			<h2>Preparing Our Children’s Bright Future</h2>		\n															<img width=\"324\" height=\"287\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge2.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge2.png 324w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge2-300x266.png 300w\" sizes=\"(max-width: 324px) 100vw, 324px\" />															\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec ultrices purus nec sollicitudin eleifend. In hac habitasse platea dictumst.</p>		\n			<link rel=\"stylesheet\" href=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<h3>\n						Grade Improvement					\n				</h3>\n									<p>\n						 Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n				<h3>\n						Exam Preparation					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing.					</p>\n				<h3>\n						Social Development					\n				</h3>\n									<p>\n						Donec et massa sit amet augue laoreet venenatis id et urna.					</p>\n															<img width=\"195\" height=\"196\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c1.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c1.png 195w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c1-150x150.png 150w\" sizes=\"(max-width: 195px) 100vw, 195px\" />															\n			<h2>Our vision is every child is safe, inspired, challenged, empowered.</h2>		\n															<img width=\"324\" height=\"287\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge.png 324w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge-300x266.png 300w\" sizes=\"(max-width: 324px) 100vw, 324px\" />															\n															<img width=\"184\" height=\"181\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c3.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" />															\n		<p>Integer efficitur ligula ipsum, at vulputate mi fermentum sit amet. Sed pulvinar rutrum commodo. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean vitae tortor nec lectus mattis congue id sed tortor.</p>		\n															<img width=\"183\" height=\"183\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c4.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c4.png 183w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c4-150x150.png 150w\" sizes=\"(max-width: 183px) 100vw, 183px\" />															\n			<a href=\"#\">\n						Learn More\n					</a>\n			<h2>Our Programs for excellence</h2>		\n															<img width=\"195\" height=\"196\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c1.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c1.png 195w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c1-150x150.png 150w\" sizes=\"(max-width: 195px) 100vw, 195px\" />															\n															<img width=\"324\" height=\"287\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge2.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge2.png 324w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge2-300x266.png 300w\" sizes=\"(max-width: 324px) 100vw, 324px\" />															\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Mauris at lacus semper, fermentum mi sed, rutrum nibh. Sed gravida elit ligula, sit amet venenatis diam hendrerit iaculis.</p>		\n															<img width=\"179\" height=\"177\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c2.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" />															\n			<a href=\"#\">\n						Discover More\n					</a>\n															<img width=\"255\" height=\"255\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/grade.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/grade.png 255w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/grade-150x150.png 150w\" sizes=\"(max-width: 255px) 100vw, 255px\" />															\n			<h5>Grade Boost</h5>		\n		<p>Lorem ipsum dolor sit amet.</p>		\n															<img width=\"255\" height=\"255\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/chart.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/chart.png 255w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/chart-150x150.png 150w\" sizes=\"(max-width: 255px) 100vw, 255px\" />															\n			<h5>Skill Evaluation</h5>		\n		<p>Lorem ipsum dolor sit amet.</p>		\n															<img width=\"255\" height=\"255\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/test-exam-sheet.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/test-exam-sheet.png 255w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/test-exam-sheet-150x150.png 150w\" sizes=\"(max-width: 255px) 100vw, 255px\" />															\n			<h5>Mock Exam</h5>		\n		<p>Lorem ipsum dolor sit amet.</p>		\n															<img width=\"255\" height=\"255\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/schedule-sheet.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/schedule-sheet.png 255w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/schedule-sheet-150x150.png 150w\" sizes=\"(max-width: 255px) 100vw, 255px\" />															\n			<h5>Weekend Class</h5>		\n		<p>Lorem ipsum dolor sit amet.</p>		\n			<h2>Our Popular Teacher</h2>		\n															<img width=\"183\" height=\"183\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c4.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c4.png 183w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c4-150x150.png 150w\" sizes=\"(max-width: 183px) 100vw, 183px\" />															\n															<img width=\"184\" height=\"181\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c3.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" />															\n															<img width=\"800\" height=\"800\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/pp1.jpg\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/pp1.jpg 800w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/pp1-300x300.jpg 300w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/pp1-150x150.jpg 150w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/pp1-768x768.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h5>Harry Smith</h5>		\n			<h5>English Teacher</h5>		\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n@charset \"UTF-8\";.elementor-star-rating{color:#ccd6df;font-family:eicons;display:inline-block}.elementor-star-rating i{display:inline-block;position:relative;font-style:normal;cursor:default}.elementor-star-rating i:before{content:\"e934\";display:block;font-size:inherit;font-family:inherit;position:absolute;overflow:hidden;color:#f0ad4e;top:0;left:0}.elementor-star-rating .elementor-star-empty:before{content:none}.elementor-star-rating .elementor-star-1:before{width:10%}.elementor-star-rating .elementor-star-2:before{width:20%}.elementor-star-rating .elementor-star-3:before{width:30%}.elementor-star-rating .elementor-star-4:before{width:40%}.elementor-star-rating .elementor-star-5:before{width:50%}.elementor-star-rating .elementor-star-6:before{width:60%}.elementor-star-rating .elementor-star-7:before{width:70%}.elementor-star-rating .elementor-star-8:before{width:80%}.elementor-star-rating .elementor-star-9:before{width:90%}.elementor-star-rating__wrapper{display:flex;align-items:center}.elementor-star-rating__title{margin-right:10px}.elementor-star-rating--align-right .elementor-star-rating__wrapper{text-align:right;justify-content:flex-end}.elementor-star-rating--align-left .elementor-star-rating__wrapper{text-align:left;justify-content:flex-start}.elementor-star-rating--align-center .elementor-star-rating__wrapper{text-align:center;justify-content:center}.elementor-star-rating--align-justify .elementor-star-rating__title{margin-right:auto}@media (max-width:1024px){.elementor-star-rating-tablet--align-right .elementor-star-rating__wrapper{text-align:right;justify-content:flex-end}.elementor-star-rating-tablet--align-left .elementor-star-rating__wrapper{text-align:left;justify-content:flex-start}.elementor-star-rating-tablet--align-center .elementor-star-rating__wrapper{text-align:center;justify-content:center}.elementor-star-rating-tablet--align-justify .elementor-star-rating__title{margin-right:auto}}@media (max-width:767px){.elementor-star-rating-mobile--align-right .elementor-star-rating__wrapper{text-align:right;justify-content:flex-end}.elementor-star-rating-mobile--align-left .elementor-star-rating__wrapper{text-align:left;justify-content:flex-start}.elementor-star-rating-mobile--align-center .elementor-star-rating__wrapper{text-align:center;justify-content:center}.elementor-star-rating-mobile--align-justify .elementor-star-rating__title{margin-right:auto}}.last-star{letter-spacing:0}.elementor--star-style-star_unicode .elementor-star-rating{font-family:Arial,Helvetica,sans-serif}.elementor--star-style-star_unicode .elementor-star-rating i:not(.elementor-star-empty):before{content:\"★\"}</style>\n						<i>&#xE934;</i><i>&#xE934;</i><i>&#xE934;</i><i>&#xE934;</i><i>&#xE934;</i> 5/5		\n		<p> \" Lorem ipsum dolor sit amet, consectetur adipiscing elit. Suspendisse est neque, ultrices at enim vitae, mattis consequat dui.\"</p>		\n			<a href=\"#\">\n						Contact\n					</a>\n															<img width=\"800\" height=\"800\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/pp2.jpg\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/pp2.jpg 800w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/pp2-300x300.jpg 300w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/pp2-150x150.jpg 150w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/pp2-768x768.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h5>Gregory Warren</h5>		\n			<h5>Social Teacher</h5>		\n						<i>&#xE934;</i><i>&#xE934;</i><i>&#xE934;</i><i>&#xE934;</i><i>&#xE934;</i> 5/5		\n		<p> \" Lorem ipsum dolor sit amet, consectetur adipiscing elit. Suspendisse est neque, ultrices at enim vitae, mattis consequat dui.\"</p>		\n			<a href=\"#\">\n						Contact\n					</a>\n															<img width=\"800\" height=\"800\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/pp3.jpg\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/pp3.jpg 800w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/pp3-300x300.jpg 300w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/pp3-150x150.jpg 150w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/pp3-768x768.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h5>Peter Wong</h5>		\n			<h5>Math Teacher</h5>		\n						<i>&#xE934;</i><i>&#xE934;</i><i>&#xE934;</i><i>&#xE934;</i><i>&#xE934;</i> 5/5		\n		<p> \" Lorem ipsum dolor sit amet, consectetur adipiscing elit. Suspendisse est neque, ultrices at enim vitae, mattis consequat dui.\"</p>		\n			<a href=\"#\">\n						Contact\n					</a>\n															<img width=\"700\" height=\"171\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logoipsum-265.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logoipsum-265.png 700w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logoipsum-265-300x73.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />															\n															<img width=\"708\" height=\"171\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logoipsum-264.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logoipsum-264.png 708w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logoipsum-264-300x72.png 300w\" sizes=\"(max-width: 708px) 100vw, 708px\" />															\n															<img width=\"708\" height=\"171\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logoipsum-262.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logoipsum-262.png 708w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logoipsum-262-300x72.png 300w\" sizes=\"(max-width: 708px) 100vw, 708px\" />															\n															<img width=\"696\" height=\"171\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logoipsum-261.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logoipsum-261.png 696w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logoipsum-261-300x74.png 300w\" sizes=\"(max-width: 696px) 100vw, 696px\" />															\n															<img width=\"642\" height=\"113\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logoipsum-259.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logoipsum-259.png 642w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logoipsum-259-300x53.png 300w\" sizes=\"(max-width: 642px) 100vw, 642px\" />															\n															<img width=\"717\" height=\"167\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logoipsum-254.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logoipsum-254.png 717w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/logoipsum-254-300x70.png 300w\" sizes=\"(max-width: 717px) 100vw, 717px\" />															\n			<h2>Our Trusted Partners</h2>		\n		<p>Donec hendrerit nibh in lectus molestie, id bibendum orci hendrerit. Curabitur euismod ante finibus nibh suscipit, vitae vehicula eros venenatis.</p>		\n			<h2>Join Our Education center Now</h2>		\n															<img width=\"179\" height=\"177\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/c2.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" />															\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<a href=\"#\">\n						Sign Up Now\n					</a>\n															<img width=\"324\" height=\"287\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge3.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge3.png 324w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/edge3-300x266.png 300w\" sizes=\"(max-width: 324px) 100vw, 324px\" />															\n															<img width=\"446\" height=\"593\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/cute-elementary-kids-with-books-at-school-2022-12-16-18-15-57-utc-copy.jpg\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/cute-elementary-kids-with-books-at-school-2022-12-16-18-15-57-utc-copy.jpg 446w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/cute-elementary-kids-with-books-at-school-2022-12-16-18-15-57-utc-copy-226x300.jpg 226w\" sizes=\"(max-width: 446px) 100vw, 446px\" />															\n															<img width=\"446\" height=\"593\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/cute-elementary-kids-with-books-at-school-2022-12-16-18-15-57-utc2.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/cute-elementary-kids-with-books-at-school-2022-12-16-18-15-57-utc2.png 446w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/cute-elementary-kids-with-books-at-school-2022-12-16-18-15-57-utc2-226x300.png 226w\" sizes=\"(max-width: 446px) 100vw, 446px\" />','Home','','inherit','closed','closed','','114-revision-v1','','','2023-09-06 17:38:30','2023-09-06 12:08:30','',114,'https://sahityaonline.in8.cdn-alpha.com/?p=168',0,'revision','',0),(169,1,'2023-09-07 10:05:54','2023-09-07 04:35:54','<style>/*! elementor - v3.15.0 - 20-08-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=\"500\" height=\"190\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/साहित्य-1.webp\" alt=\"साहित्य\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/साहित्य-1.webp 500w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/साहित्य-1-300x114.webp 300w\" sizes=\"(max-width: 500px) 100vw, 500px\" />															\n					Menu\n				<nav data-toggle-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;fas fa-align-justify&quot;&gt;&lt;/i&gt;\" data-close-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;far fa-window-close&quot;&gt;&lt;/i&gt;\" data-full-width=\"yes\"><ul id=\"menu-1-1c150646\"><li id=\"menu-item-158\"><a href=\"https://sahityaonline.in8.cdn-alpha.com/\" class = \"hfe-menu-item\">Home</a></li>\n<li id=\"menu-item-157\"><a href=\"https://sahityaonline.in8.cdn-alpha.com/about-us/\" class = \"hfe-menu-item\">About Us</a></li>\n<li id=\"menu-item-154\"><a href=\"https://sahityaonline.in8.cdn-alpha.com/e-magazine/\" class = \"hfe-menu-item\">E Magazine</a></li>\n<li id=\"menu-item-155\"><a href=\"https://sahityaonline.in8.cdn-alpha.com/creations/\" class = \"hfe-menu-item\">Creations</a></li>\n<li id=\"menu-item-156\"><a href=\"https://sahityaonline.in8.cdn-alpha.com/contact-us/\" class = \"hfe-menu-item\">Contact Us</a></li>\n</ul></nav>','Header','','inherit','closed','closed','','92-revision-v1','','','2023-09-07 10:05:54','2023-09-07 04:35:54','',92,'https://sahityaonline.in8.cdn-alpha.com/?p=169',0,'revision','',0),(170,1,'2023-09-07 10:05:55','2023-09-07 04:35:55','<style>/*! elementor - v3.15.0 - 20-08-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=\"500\" height=\"190\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/साहित्य-1.webp\" alt=\"साहित्य\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/साहित्य-1.webp 500w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/साहित्य-1-300x114.webp 300w\" sizes=\"(max-width: 500px) 100vw, 500px\" />															\n					Menu\n				<nav data-toggle-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;fas fa-align-justify&quot;&gt;&lt;/i&gt;\" data-close-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;far fa-window-close&quot;&gt;&lt;/i&gt;\" data-full-width=\"yes\"><ul id=\"menu-1-1c150646\"><li id=\"menu-item-158\"><a href=\"https://sahityaonline.in8.cdn-alpha.com/\" class = \"hfe-menu-item\">Home</a></li>\n<li id=\"menu-item-157\"><a href=\"https://sahityaonline.in8.cdn-alpha.com/about-us/\" class = \"hfe-menu-item\">About Us</a></li>\n<li id=\"menu-item-154\"><a href=\"https://sahityaonline.in8.cdn-alpha.com/e-magazine/\" class = \"hfe-menu-item\">E Magazine</a></li>\n<li id=\"menu-item-155\"><a href=\"https://sahityaonline.in8.cdn-alpha.com/creations/\" class = \"hfe-menu-item\">Creations</a></li>\n<li id=\"menu-item-156\"><a href=\"https://sahityaonline.in8.cdn-alpha.com/contact-us/\" class = \"hfe-menu-item\">Contact Us</a></li>\n</ul></nav>','Header','','inherit','closed','closed','','92-revision-v1','','','2023-09-07 10:05:55','2023-09-07 04:35:55','',92,'https://sahityaonline.in8.cdn-alpha.com/?p=170',0,'revision','',0),(171,1,'2023-09-07 10:05:57','2023-09-07 04:35:57','<style>/*! elementor - v3.15.0 - 20-08-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=\"500\" height=\"190\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/साहित्य-1.webp\" alt=\"साहित्य\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/साहित्य-1.webp 500w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/साहित्य-1-300x114.webp 300w\" sizes=\"(max-width: 500px) 100vw, 500px\" />															\n					Menu\n				<nav data-toggle-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;fas fa-align-justify&quot;&gt;&lt;/i&gt;\" data-close-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;far fa-window-close&quot;&gt;&lt;/i&gt;\" data-full-width=\"yes\"><ul id=\"menu-1-1c150646\"><li id=\"menu-item-158\"><a href=\"https://sahityaonline.in8.cdn-alpha.com/\" class = \"hfe-menu-item\">Home</a></li>\n<li id=\"menu-item-157\"><a href=\"https://sahityaonline.in8.cdn-alpha.com/about-us/\" class = \"hfe-menu-item\">About Us</a></li>\n<li id=\"menu-item-154\"><a href=\"https://sahityaonline.in8.cdn-alpha.com/e-magazine/\" class = \"hfe-menu-item\">E Magazine</a></li>\n<li id=\"menu-item-155\"><a href=\"https://sahityaonline.in8.cdn-alpha.com/creations/\" class = \"hfe-menu-item\">Creations</a></li>\n<li id=\"menu-item-156\"><a href=\"https://sahityaonline.in8.cdn-alpha.com/contact-us/\" class = \"hfe-menu-item\">Contact Us</a></li>\n</ul></nav>','Header','','inherit','closed','closed','','92-revision-v1','','','2023-09-07 10:05:57','2023-09-07 04:35:57','',92,'https://sahityaonline.in8.cdn-alpha.com/?p=171',0,'revision','',0),(172,1,'2023-09-07 10:08:49','2023-09-07 04:38:49','<style>/*! elementor - v3.15.0 - 20-08-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=\"500\" height=\"190\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/साहित्य-1.webp\" alt=\"साहित्य\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/साहित्य-1.webp 500w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/साहित्य-1-300x114.webp 300w\" sizes=\"(max-width: 500px) 100vw, 500px\" />															\n					Menu\n				<nav data-toggle-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;fas fa-align-justify&quot;&gt;&lt;/i&gt;\" data-close-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;far fa-window-close&quot;&gt;&lt;/i&gt;\" data-full-width=\"yes\"><ul id=\"menu-1-1c150646\"><li id=\"menu-item-158\"><a href=\"https://sahityaonline.in8.cdn-alpha.com/\" class = \"hfe-menu-item\">Home</a></li>\n<li id=\"menu-item-157\"><a href=\"https://sahityaonline.in8.cdn-alpha.com/about-us/\" class = \"hfe-menu-item\">About Us</a></li>\n<li id=\"menu-item-154\"><a href=\"https://sahityaonline.in8.cdn-alpha.com/e-magazine/\" class = \"hfe-menu-item\">E Magazine</a></li>\n<li id=\"menu-item-155\"><a href=\"https://sahityaonline.in8.cdn-alpha.com/creations/\" class = \"hfe-menu-item\">Creations</a></li>\n<li id=\"menu-item-156\"><a href=\"https://sahityaonline.in8.cdn-alpha.com/contact-us/\" class = \"hfe-menu-item\">Contact Us</a></li>\n</ul></nav>','Header','','inherit','closed','closed','','92-revision-v1','','','2023-09-07 10:08:49','2023-09-07 04:38:49','',92,'https://sahityaonline.in8.cdn-alpha.com/?p=172',0,'revision','',0),(173,1,'2023-09-07 10:08:50','2023-09-07 04:38:50','<style>/*! elementor - v3.15.0 - 20-08-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=\"500\" height=\"190\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/साहित्य-1.webp\" alt=\"साहित्य\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/साहित्य-1.webp 500w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/साहित्य-1-300x114.webp 300w\" sizes=\"(max-width: 500px) 100vw, 500px\" />															\n					Menu\n				<nav data-toggle-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;fas fa-align-justify&quot;&gt;&lt;/i&gt;\" data-close-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;far fa-window-close&quot;&gt;&lt;/i&gt;\" data-full-width=\"yes\"><ul id=\"menu-1-1c150646\"><li id=\"menu-item-158\"><a href=\"https://sahityaonline.in8.cdn-alpha.com/\" class = \"hfe-menu-item\">Home</a></li>\n<li id=\"menu-item-157\"><a href=\"https://sahityaonline.in8.cdn-alpha.com/about-us/\" class = \"hfe-menu-item\">About Us</a></li>\n<li id=\"menu-item-154\"><a href=\"https://sahityaonline.in8.cdn-alpha.com/e-magazine/\" class = \"hfe-menu-item\">E Magazine</a></li>\n<li id=\"menu-item-155\"><a href=\"https://sahityaonline.in8.cdn-alpha.com/creations/\" class = \"hfe-menu-item\">Creations</a></li>\n<li id=\"menu-item-156\"><a href=\"https://sahityaonline.in8.cdn-alpha.com/contact-us/\" class = \"hfe-menu-item\">Contact Us</a></li>\n</ul></nav>','Header','','inherit','closed','closed','','92-revision-v1','','','2023-09-07 10:08:50','2023-09-07 04:38:50','',92,'https://sahityaonline.in8.cdn-alpha.com/?p=173',0,'revision','',0),(174,1,'2023-09-07 10:08:52','2023-09-07 04:38:52','<style>/*! elementor - v3.15.0 - 20-08-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=\"500\" height=\"190\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/साहित्य-1.webp\" alt=\"साहित्य\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/साहित्य-1.webp 500w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/साहित्य-1-300x114.webp 300w\" sizes=\"(max-width: 500px) 100vw, 500px\" />															\n					Menu\n				<nav data-toggle-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;fas fa-align-justify&quot;&gt;&lt;/i&gt;\" data-close-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;far fa-window-close&quot;&gt;&lt;/i&gt;\" data-full-width=\"yes\"><ul id=\"menu-1-1c150646\"><li id=\"menu-item-158\"><a href=\"https://sahityaonline.in8.cdn-alpha.com/\" class = \"hfe-menu-item\">Home</a></li>\n<li id=\"menu-item-157\"><a href=\"https://sahityaonline.in8.cdn-alpha.com/about-us/\" class = \"hfe-menu-item\">About Us</a></li>\n<li id=\"menu-item-154\"><a href=\"https://sahityaonline.in8.cdn-alpha.com/e-magazine/\" class = \"hfe-menu-item\">E Magazine</a></li>\n<li id=\"menu-item-155\"><a href=\"https://sahityaonline.in8.cdn-alpha.com/creations/\" class = \"hfe-menu-item\">Creations</a></li>\n<li id=\"menu-item-156\"><a href=\"https://sahityaonline.in8.cdn-alpha.com/contact-us/\" class = \"hfe-menu-item\">Contact Us</a></li>\n</ul></nav>','Header','','inherit','closed','closed','','92-revision-v1','','','2023-09-07 10:08:52','2023-09-07 04:38:52','',92,'https://sahityaonline.in8.cdn-alpha.com/?p=174',0,'revision','',0),(175,1,'2023-09-07 10:10:11','2023-09-07 04:40:11','<style>/*! elementor - v3.15.0 - 20-08-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=\"500\" height=\"190\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/साहित्य-1.webp\" alt=\"साहित्य\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/साहित्य-1.webp 500w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/साहित्य-1-300x114.webp 300w\" sizes=\"(max-width: 500px) 100vw, 500px\" />															\n					Menu\n				<nav data-toggle-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;fas fa-align-justify&quot;&gt;&lt;/i&gt;\" data-close-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;far fa-window-close&quot;&gt;&lt;/i&gt;\" data-full-width=\"yes\"><ul id=\"menu-1-1c150646\"><li id=\"menu-item-158\"><a href=\"https://sahityaonline.in8.cdn-alpha.com/\" class = \"hfe-menu-item\">Home</a></li>\n<li id=\"menu-item-157\"><a href=\"https://sahityaonline.in8.cdn-alpha.com/about-us/\" class = \"hfe-menu-item\">About Us</a></li>\n<li id=\"menu-item-154\"><a href=\"https://sahityaonline.in8.cdn-alpha.com/e-magazine/\" class = \"hfe-menu-item\">E Magazine</a></li>\n<li id=\"menu-item-155\"><a href=\"https://sahityaonline.in8.cdn-alpha.com/creations/\" class = \"hfe-menu-item\">Creations</a></li>\n<li id=\"menu-item-156\"><a href=\"https://sahityaonline.in8.cdn-alpha.com/contact-us/\" class = \"hfe-menu-item\">Contact Us</a></li>\n</ul></nav>','Header','','inherit','closed','closed','','92-revision-v1','','','2023-09-07 10:10:11','2023-09-07 04:40:11','',92,'https://sahityaonline.in8.cdn-alpha.com/?p=175',0,'revision','',0),(176,1,'2023-09-07 10:10:11','2023-09-07 04:40:11','<style>/*! elementor - v3.15.0 - 20-08-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=\"500\" height=\"190\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/साहित्य-1.webp\" alt=\"साहित्य\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/साहित्य-1.webp 500w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/साहित्य-1-300x114.webp 300w\" sizes=\"(max-width: 500px) 100vw, 500px\" />															\n					Menu\n				<nav data-toggle-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;fas fa-align-justify&quot;&gt;&lt;/i&gt;\" data-close-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;far fa-window-close&quot;&gt;&lt;/i&gt;\" data-full-width=\"yes\"><ul id=\"menu-1-1c150646\"><li id=\"menu-item-158\"><a href=\"https://sahityaonline.in8.cdn-alpha.com/\" class = \"hfe-menu-item\">Home</a></li>\n<li id=\"menu-item-157\"><a href=\"https://sahityaonline.in8.cdn-alpha.com/about-us/\" class = \"hfe-menu-item\">About Us</a></li>\n<li id=\"menu-item-154\"><a href=\"https://sahityaonline.in8.cdn-alpha.com/e-magazine/\" class = \"hfe-menu-item\">E Magazine</a></li>\n<li id=\"menu-item-155\"><a href=\"https://sahityaonline.in8.cdn-alpha.com/creations/\" class = \"hfe-menu-item\">Creations</a></li>\n<li id=\"menu-item-156\"><a href=\"https://sahityaonline.in8.cdn-alpha.com/contact-us/\" class = \"hfe-menu-item\">Contact Us</a></li>\n</ul></nav>','Header','','inherit','closed','closed','','92-revision-v1','','','2023-09-07 10:10:11','2023-09-07 04:40:11','',92,'https://sahityaonline.in8.cdn-alpha.com/?p=176',0,'revision','',0),(177,1,'2023-09-07 10:10:12','2023-09-07 04:40:12','<style>/*! elementor - v3.15.0 - 20-08-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=\"500\" height=\"190\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/साहित्य-1.webp\" alt=\"साहित्य\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/साहित्य-1.webp 500w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/साहित्य-1-300x114.webp 300w\" sizes=\"(max-width: 500px) 100vw, 500px\" />															\n					Menu\n				<nav data-toggle-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;fas fa-align-justify&quot;&gt;&lt;/i&gt;\" data-close-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;far fa-window-close&quot;&gt;&lt;/i&gt;\" data-full-width=\"yes\"><ul id=\"menu-1-1c150646\"><li id=\"menu-item-158\"><a href=\"https://sahityaonline.in8.cdn-alpha.com/\" class = \"hfe-menu-item\">Home</a></li>\n<li id=\"menu-item-157\"><a href=\"https://sahityaonline.in8.cdn-alpha.com/about-us/\" class = \"hfe-menu-item\">About Us</a></li>\n<li id=\"menu-item-154\"><a href=\"https://sahityaonline.in8.cdn-alpha.com/e-magazine/\" class = \"hfe-menu-item\">E Magazine</a></li>\n<li id=\"menu-item-155\"><a href=\"https://sahityaonline.in8.cdn-alpha.com/creations/\" class = \"hfe-menu-item\">Creations</a></li>\n<li id=\"menu-item-156\"><a href=\"https://sahityaonline.in8.cdn-alpha.com/contact-us/\" class = \"hfe-menu-item\">Contact Us</a></li>\n</ul></nav>','Header','','inherit','closed','closed','','92-revision-v1','','','2023-09-07 10:10:12','2023-09-07 04:40:12','',92,'https://sahityaonline.in8.cdn-alpha.com/?p=177',0,'revision','',0),(178,1,'2023-09-07 10:11:07','2023-09-07 04:41:07','<style>/*! elementor - v3.15.0 - 20-08-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=\"500\" height=\"190\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/साहित्य-1.webp\" alt=\"साहित्य\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/साहित्य-1.webp 500w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/साहित्य-1-300x114.webp 300w\" sizes=\"(max-width: 500px) 100vw, 500px\" />															\n					Menu\n				<nav data-toggle-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;fas fa-align-justify&quot;&gt;&lt;/i&gt;\" data-close-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;far fa-window-close&quot;&gt;&lt;/i&gt;\" data-full-width=\"yes\"><ul id=\"menu-1-1c150646\"><li id=\"menu-item-158\"><a href=\"https://sahityaonline.in8.cdn-alpha.com/\" class = \"hfe-menu-item\">Home</a></li>\n<li id=\"menu-item-157\"><a href=\"https://sahityaonline.in8.cdn-alpha.com/about-us/\" class = \"hfe-menu-item\">About Us</a></li>\n<li id=\"menu-item-154\"><a href=\"https://sahityaonline.in8.cdn-alpha.com/e-magazine/\" class = \"hfe-menu-item\">E Magazine</a></li>\n<li id=\"menu-item-155\"><a href=\"https://sahityaonline.in8.cdn-alpha.com/creations/\" class = \"hfe-menu-item\">Creations</a></li>\n<li id=\"menu-item-156\"><a href=\"https://sahityaonline.in8.cdn-alpha.com/contact-us/\" class = \"hfe-menu-item\">Contact Us</a></li>\n</ul></nav>','Header','','inherit','closed','closed','','92-revision-v1','','','2023-09-07 10:11:07','2023-09-07 04:41:07','',92,'https://sahityaonline.in8.cdn-alpha.com/?p=178',0,'revision','',0),(179,1,'2023-09-07 10:11:08','2023-09-07 04:41:08','<style>/*! elementor - v3.15.0 - 20-08-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=\"500\" height=\"190\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/साहित्य-1.webp\" alt=\"साहित्य\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/साहित्य-1.webp 500w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/साहित्य-1-300x114.webp 300w\" sizes=\"(max-width: 500px) 100vw, 500px\" />															\n					Menu\n				<nav data-toggle-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;fas fa-align-justify&quot;&gt;&lt;/i&gt;\" data-close-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;far fa-window-close&quot;&gt;&lt;/i&gt;\" data-full-width=\"yes\"><ul id=\"menu-1-1c150646\"><li id=\"menu-item-158\"><a href=\"https://sahityaonline.in8.cdn-alpha.com/\" class = \"hfe-menu-item\">Home</a></li>\n<li id=\"menu-item-157\"><a href=\"https://sahityaonline.in8.cdn-alpha.com/about-us/\" class = \"hfe-menu-item\">About Us</a></li>\n<li id=\"menu-item-154\"><a href=\"https://sahityaonline.in8.cdn-alpha.com/e-magazine/\" class = \"hfe-menu-item\">E Magazine</a></li>\n<li id=\"menu-item-155\"><a href=\"https://sahityaonline.in8.cdn-alpha.com/creations/\" class = \"hfe-menu-item\">Creations</a></li>\n<li id=\"menu-item-156\"><a href=\"https://sahityaonline.in8.cdn-alpha.com/contact-us/\" class = \"hfe-menu-item\">Contact Us</a></li>\n</ul></nav>','Header','','inherit','closed','closed','','92-revision-v1','','','2023-09-07 10:11:08','2023-09-07 04:41:08','',92,'https://sahityaonline.in8.cdn-alpha.com/?p=179',0,'revision','',0),(180,1,'2023-09-07 10:11:09','2023-09-07 04:41:09','<style>/*! elementor - v3.15.0 - 20-08-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=\"500\" height=\"190\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/साहित्य-1.webp\" alt=\"साहित्य\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/साहित्य-1.webp 500w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/साहित्य-1-300x114.webp 300w\" sizes=\"(max-width: 500px) 100vw, 500px\" />															\n					Menu\n				<nav data-toggle-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;fas fa-align-justify&quot;&gt;&lt;/i&gt;\" data-close-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;far fa-window-close&quot;&gt;&lt;/i&gt;\" data-full-width=\"yes\"><ul id=\"menu-1-1c150646\"><li id=\"menu-item-158\"><a href=\"https://sahityaonline.in8.cdn-alpha.com/\" class = \"hfe-menu-item\">Home</a></li>\n<li id=\"menu-item-157\"><a href=\"https://sahityaonline.in8.cdn-alpha.com/about-us/\" class = \"hfe-menu-item\">About Us</a></li>\n<li id=\"menu-item-154\"><a href=\"https://sahityaonline.in8.cdn-alpha.com/e-magazine/\" class = \"hfe-menu-item\">E Magazine</a></li>\n<li id=\"menu-item-155\"><a href=\"https://sahityaonline.in8.cdn-alpha.com/creations/\" class = \"hfe-menu-item\">Creations</a></li>\n<li id=\"menu-item-156\"><a href=\"https://sahityaonline.in8.cdn-alpha.com/contact-us/\" class = \"hfe-menu-item\">Contact Us</a></li>\n</ul></nav>','Header','','inherit','closed','closed','','92-revision-v1','','','2023-09-07 10:11:09','2023-09-07 04:41:09','',92,'https://sahityaonline.in8.cdn-alpha.com/?p=180',0,'revision','',0),(181,1,'2023-09-07 10:12:43','2023-09-07 04:42:43','<style>/*! elementor - v3.15.0 - 20-08-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=\"500\" height=\"190\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/साहित्य-1.webp\" alt=\"साहित्य\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/साहित्य-1.webp 500w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/साहित्य-1-300x114.webp 300w\" sizes=\"(max-width: 500px) 100vw, 500px\" />															\n					Menu\n				<nav data-toggle-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;fas fa-align-justify&quot;&gt;&lt;/i&gt;\" data-close-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;far fa-window-close&quot;&gt;&lt;/i&gt;\" data-full-width=\"yes\"><ul id=\"menu-1-1c150646\"><li id=\"menu-item-158\"><a href=\"https://sahityaonline.in8.cdn-alpha.com/\" class = \"hfe-menu-item\">Home</a></li>\n<li id=\"menu-item-157\"><a href=\"https://sahityaonline.in8.cdn-alpha.com/about-us/\" class = \"hfe-menu-item\">About Us</a></li>\n<li id=\"menu-item-154\"><a href=\"https://sahityaonline.in8.cdn-alpha.com/e-magazine/\" class = \"hfe-menu-item\">E Magazine</a></li>\n<li id=\"menu-item-155\"><a href=\"https://sahityaonline.in8.cdn-alpha.com/creations/\" class = \"hfe-menu-item\">Creations</a></li>\n<li id=\"menu-item-156\"><a href=\"https://sahityaonline.in8.cdn-alpha.com/contact-us/\" class = \"hfe-menu-item\">Contact Us</a></li>\n</ul></nav>','Header','','inherit','closed','closed','','92-revision-v1','','','2023-09-07 10:12:43','2023-09-07 04:42:43','',92,'https://sahityaonline.in8.cdn-alpha.com/?p=181',0,'revision','',0),(182,1,'2023-09-07 10:12:43','2023-09-07 04:42:43','<style>/*! elementor - v3.15.0 - 20-08-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=\"500\" height=\"190\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/साहित्य-1.webp\" alt=\"साहित्य\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/साहित्य-1.webp 500w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/साहित्य-1-300x114.webp 300w\" sizes=\"(max-width: 500px) 100vw, 500px\" />															\n					Menu\n				<nav data-toggle-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;fas fa-align-justify&quot;&gt;&lt;/i&gt;\" data-close-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;far fa-window-close&quot;&gt;&lt;/i&gt;\" data-full-width=\"yes\"><ul id=\"menu-1-1c150646\"><li id=\"menu-item-158\"><a href=\"https://sahityaonline.in8.cdn-alpha.com/\" class = \"hfe-menu-item\">Home</a></li>\n<li id=\"menu-item-157\"><a href=\"https://sahityaonline.in8.cdn-alpha.com/about-us/\" class = \"hfe-menu-item\">About Us</a></li>\n<li id=\"menu-item-154\"><a href=\"https://sahityaonline.in8.cdn-alpha.com/e-magazine/\" class = \"hfe-menu-item\">E Magazine</a></li>\n<li id=\"menu-item-155\"><a href=\"https://sahityaonline.in8.cdn-alpha.com/creations/\" class = \"hfe-menu-item\">Creations</a></li>\n<li id=\"menu-item-156\"><a href=\"https://sahityaonline.in8.cdn-alpha.com/contact-us/\" class = \"hfe-menu-item\">Contact Us</a></li>\n</ul></nav>','Header','','inherit','closed','closed','','92-revision-v1','','','2023-09-07 10:12:43','2023-09-07 04:42:43','',92,'https://sahityaonline.in8.cdn-alpha.com/?p=182',0,'revision','',0),(183,1,'2023-09-07 10:12:44','2023-09-07 04:42:44','<style>/*! elementor - v3.15.0 - 20-08-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=\"500\" height=\"190\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/साहित्य-1.webp\" alt=\"साहित्य\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/साहित्य-1.webp 500w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/साहित्य-1-300x114.webp 300w\" sizes=\"(max-width: 500px) 100vw, 500px\" />															\n					Menu\n				<nav data-toggle-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;fas fa-align-justify&quot;&gt;&lt;/i&gt;\" data-close-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;far fa-window-close&quot;&gt;&lt;/i&gt;\" data-full-width=\"yes\"><ul id=\"menu-1-1c150646\"><li id=\"menu-item-158\"><a href=\"https://sahityaonline.in8.cdn-alpha.com/\" class = \"hfe-menu-item\">Home</a></li>\n<li id=\"menu-item-157\"><a href=\"https://sahityaonline.in8.cdn-alpha.com/about-us/\" class = \"hfe-menu-item\">About Us</a></li>\n<li id=\"menu-item-154\"><a href=\"https://sahityaonline.in8.cdn-alpha.com/e-magazine/\" class = \"hfe-menu-item\">E Magazine</a></li>\n<li id=\"menu-item-155\"><a href=\"https://sahityaonline.in8.cdn-alpha.com/creations/\" class = \"hfe-menu-item\">Creations</a></li>\n<li id=\"menu-item-156\"><a href=\"https://sahityaonline.in8.cdn-alpha.com/contact-us/\" class = \"hfe-menu-item\">Contact Us</a></li>\n</ul></nav>','Header','','inherit','closed','closed','','92-revision-v1','','','2023-09-07 10:12:44','2023-09-07 04:42:44','',92,'https://sahityaonline.in8.cdn-alpha.com/?p=183',0,'revision','',0),(184,1,'2023-09-07 10:13:17','2023-09-07 04:43:17','<style>/*! elementor - v3.15.0 - 20-08-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=\"500\" height=\"190\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/साहित्य-1.webp\" alt=\"साहित्य\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/साहित्य-1.webp 500w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/साहित्य-1-300x114.webp 300w\" sizes=\"(max-width: 500px) 100vw, 500px\" />															\n					Menu\n				<nav data-toggle-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;fas fa-align-justify&quot;&gt;&lt;/i&gt;\" data-close-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;far fa-window-close&quot;&gt;&lt;/i&gt;\" data-full-width=\"yes\"><ul id=\"menu-1-1c150646\"><li id=\"menu-item-158\"><a href=\"https://sahityaonline.in8.cdn-alpha.com/\" class = \"hfe-menu-item\">Home</a></li>\n<li id=\"menu-item-157\"><a href=\"https://sahityaonline.in8.cdn-alpha.com/about-us/\" class = \"hfe-menu-item\">About Us</a></li>\n<li id=\"menu-item-154\"><a href=\"https://sahityaonline.in8.cdn-alpha.com/e-magazine/\" class = \"hfe-menu-item\">E Magazine</a></li>\n<li id=\"menu-item-155\"><a href=\"https://sahityaonline.in8.cdn-alpha.com/creations/\" class = \"hfe-menu-item\">Creations</a></li>\n<li id=\"menu-item-156\"><a href=\"https://sahityaonline.in8.cdn-alpha.com/contact-us/\" class = \"hfe-menu-item\">Contact Us</a></li>\n</ul></nav>','Header','','inherit','closed','closed','','92-revision-v1','','','2023-09-07 10:13:17','2023-09-07 04:43:17','',92,'https://sahityaonline.in8.cdn-alpha.com/?p=184',0,'revision','',0),(185,1,'2023-09-07 10:13:18','2023-09-07 04:43:18','<style>/*! elementor - v3.15.0 - 20-08-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=\"500\" height=\"190\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/साहित्य-1.webp\" alt=\"साहित्य\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/साहित्य-1.webp 500w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/साहित्य-1-300x114.webp 300w\" sizes=\"(max-width: 500px) 100vw, 500px\" />															\n					Menu\n				<nav data-toggle-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;fas fa-align-justify&quot;&gt;&lt;/i&gt;\" data-close-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;far fa-window-close&quot;&gt;&lt;/i&gt;\" data-full-width=\"yes\"><ul id=\"menu-1-1c150646\"><li id=\"menu-item-158\"><a href=\"https://sahityaonline.in8.cdn-alpha.com/\" class = \"hfe-menu-item\">Home</a></li>\n<li id=\"menu-item-157\"><a href=\"https://sahityaonline.in8.cdn-alpha.com/about-us/\" class = \"hfe-menu-item\">About Us</a></li>\n<li id=\"menu-item-154\"><a href=\"https://sahityaonline.in8.cdn-alpha.com/e-magazine/\" class = \"hfe-menu-item\">E Magazine</a></li>\n<li id=\"menu-item-155\"><a href=\"https://sahityaonline.in8.cdn-alpha.com/creations/\" class = \"hfe-menu-item\">Creations</a></li>\n<li id=\"menu-item-156\"><a href=\"https://sahityaonline.in8.cdn-alpha.com/contact-us/\" class = \"hfe-menu-item\">Contact Us</a></li>\n</ul></nav>','Header','','inherit','closed','closed','','92-revision-v1','','','2023-09-07 10:13:18','2023-09-07 04:43:18','',92,'https://sahityaonline.in8.cdn-alpha.com/?p=185',0,'revision','',0),(186,1,'2023-09-07 10:13:19','2023-09-07 04:43:19','<style>/*! elementor - v3.15.0 - 20-08-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=\"500\" height=\"190\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/साहित्य-1.webp\" alt=\"साहित्य\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/साहित्य-1.webp 500w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/साहित्य-1-300x114.webp 300w\" sizes=\"(max-width: 500px) 100vw, 500px\" />															\n					Menu\n				<nav data-toggle-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;fas fa-align-justify&quot;&gt;&lt;/i&gt;\" data-close-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;far fa-window-close&quot;&gt;&lt;/i&gt;\" data-full-width=\"yes\"><ul id=\"menu-1-1c150646\"><li id=\"menu-item-158\"><a href=\"https://sahityaonline.in8.cdn-alpha.com/\" class = \"hfe-menu-item\">Home</a></li>\n<li id=\"menu-item-157\"><a href=\"https://sahityaonline.in8.cdn-alpha.com/about-us/\" class = \"hfe-menu-item\">About Us</a></li>\n<li id=\"menu-item-154\"><a href=\"https://sahityaonline.in8.cdn-alpha.com/e-magazine/\" class = \"hfe-menu-item\">E Magazine</a></li>\n<li id=\"menu-item-155\"><a href=\"https://sahityaonline.in8.cdn-alpha.com/creations/\" class = \"hfe-menu-item\">Creations</a></li>\n<li id=\"menu-item-156\"><a href=\"https://sahityaonline.in8.cdn-alpha.com/contact-us/\" class = \"hfe-menu-item\">Contact Us</a></li>\n</ul></nav>','Header','','inherit','closed','closed','','92-revision-v1','','','2023-09-07 10:13:19','2023-09-07 04:43:19','',92,'https://sahityaonline.in8.cdn-alpha.com/?p=186',0,'revision','',0),(187,1,'2023-09-07 10:15:32','2023-09-07 04:45:32','<style>/*! elementor - v3.15.0 - 20-08-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=\"500\" height=\"190\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/साहित्य-1.webp\" alt=\"साहित्य\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/साहित्य-1.webp 500w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/साहित्य-1-300x114.webp 300w\" sizes=\"(max-width: 500px) 100vw, 500px\" />															\n					Menu\n				<nav data-toggle-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;fas fa-align-justify&quot;&gt;&lt;/i&gt;\" data-close-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;far fa-window-close&quot;&gt;&lt;/i&gt;\" data-full-width=\"yes\"><ul id=\"menu-1-1c150646\"><li id=\"menu-item-158\"><a href=\"https://sahityaonline.in8.cdn-alpha.com/\" class = \"hfe-menu-item\">Home</a></li>\n<li id=\"menu-item-157\"><a href=\"https://sahityaonline.in8.cdn-alpha.com/about-us/\" class = \"hfe-menu-item\">About Us</a></li>\n<li id=\"menu-item-154\"><a href=\"https://sahityaonline.in8.cdn-alpha.com/e-magazine/\" class = \"hfe-menu-item\">E Magazine</a></li>\n<li id=\"menu-item-155\"><a href=\"https://sahityaonline.in8.cdn-alpha.com/creations/\" class = \"hfe-menu-item\">Creations</a></li>\n<li id=\"menu-item-156\"><a href=\"https://sahityaonline.in8.cdn-alpha.com/contact-us/\" class = \"hfe-menu-item\">Contact Us</a></li>\n</ul></nav>','Header','','inherit','closed','closed','','92-revision-v1','','','2023-09-07 10:15:32','2023-09-07 04:45:32','',92,'https://sahityaonline.in8.cdn-alpha.com/?p=187',0,'revision','',0),(188,1,'2023-09-07 10:15:33','2023-09-07 04:45:33','<style>/*! elementor - v3.15.0 - 20-08-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=\"500\" height=\"190\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/साहित्य-1.webp\" alt=\"साहित्य\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/साहित्य-1.webp 500w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/साहित्य-1-300x114.webp 300w\" sizes=\"(max-width: 500px) 100vw, 500px\" />															\n					Menu\n				<nav data-toggle-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;fas fa-align-justify&quot;&gt;&lt;/i&gt;\" data-close-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;far fa-window-close&quot;&gt;&lt;/i&gt;\" data-full-width=\"yes\"><ul id=\"menu-1-1c150646\"><li id=\"menu-item-158\"><a href=\"https://sahityaonline.in8.cdn-alpha.com/\" class = \"hfe-menu-item\">Home</a></li>\n<li id=\"menu-item-157\"><a href=\"https://sahityaonline.in8.cdn-alpha.com/about-us/\" class = \"hfe-menu-item\">About Us</a></li>\n<li id=\"menu-item-154\"><a href=\"https://sahityaonline.in8.cdn-alpha.com/e-magazine/\" class = \"hfe-menu-item\">E Magazine</a></li>\n<li id=\"menu-item-155\"><a href=\"https://sahityaonline.in8.cdn-alpha.com/creations/\" class = \"hfe-menu-item\">Creations</a></li>\n<li id=\"menu-item-156\"><a href=\"https://sahityaonline.in8.cdn-alpha.com/contact-us/\" class = \"hfe-menu-item\">Contact Us</a></li>\n</ul></nav>','Header','','inherit','closed','closed','','92-revision-v1','','','2023-09-07 10:15:33','2023-09-07 04:45:33','',92,'https://sahityaonline.in8.cdn-alpha.com/?p=188',0,'revision','',0),(189,1,'2023-09-07 10:15:33','2023-09-07 04:45:33','<style>/*! elementor - v3.15.0 - 20-08-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=\"500\" height=\"190\" src=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/साहित्य-1.webp\" alt=\"साहित्य\" decoding=\"async\" loading=\"lazy\" srcset=\"https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/साहित्य-1.webp 500w, https://sahityaonline.in8.cdn-alpha.com/wp-content/uploads/2023/09/साहित्य-1-300x114.webp 300w\" sizes=\"(max-width: 500px) 100vw, 500px\" />															\n					Menu\n				<nav data-toggle-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;fas fa-align-justify&quot;&gt;&lt;/i&gt;\" data-close-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;far fa-window-close&quot;&gt;&lt;/i&gt;\" data-full-width=\"yes\"><ul id=\"menu-1-1c150646\"><li id=\"menu-item-158\"><a href=\"https://sahityaonline.in8.cdn-alpha.com/\" class = \"hfe-menu-item\">Home</a></li>\n<li id=\"menu-item-157\"><a href=\"https://sahityaonline.in8.cdn-alpha.com/about-us/\" class = \"hfe-menu-item\">About Us</a></li>\n<li id=\"menu-item-154\"><a href=\"https://sahityaonline.in8.cdn-alpha.com/e-magazine/\" class = \"hfe-menu-item\">E Magazine</a></li>\n<li id=\"menu-item-155\"><a href=\"https://sahityaonline.in8.cdn-alpha.com/creations/\" class = \"hfe-menu-item\">Creations</a></li>\n<li id=\"menu-item-156\"><a href=\"https://sahityaonline.in8.cdn-alpha.com/contact-us/\" class = \"hfe-menu-item\">Contact Us</a></li>\n</ul></nav>','Header','','inherit','closed','closed','','92-revision-v1','','','2023-09-07 10:15:33','2023-09-07 04:45:33','',92,'https://sahityaonline.in8.cdn-alpha.com/?p=189',0,'revision','',0);
/*!40000 ALTER TABLE `wp_posts` ENABLE KEYS */;
UNLOCK TABLES;

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

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

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

LOCK TABLES `wp_term_relationships` WRITE;
/*!40000 ALTER TABLE `wp_term_relationships` DISABLE KEYS */;
INSERT INTO `wp_term_relationships` VALUES (1,1,0),(8,2,0),(21,2,0),(31,2,0),(36,2,0),(42,3,0),(59,3,0),(70,3,0),(72,3,0),(78,3,0),(82,3,0),(84,3,0),(85,3,0),(88,3,0),(90,2,0),(154,4,0),(155,4,0),(156,4,0),(157,4,0),(158,4,0);
/*!40000 ALTER TABLE `wp_term_relationships` ENABLE KEYS */;
UNLOCK TABLES;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

LOCK TABLES `wp_usermeta` WRITE;
/*!40000 ALTER TABLE `wp_usermeta` DISABLE KEYS */;
INSERT INTO `wp_usermeta` VALUES (1,1,'nickname','sitemanager'),(2,1,'first_name',''),(3,1,'last_name',''),(4,1,'description',''),(5,1,'rich_editing','true'),(6,1,'syntax_highlighting','true'),(7,1,'comment_shortcuts','false'),(8,1,'admin_color','fresh'),(9,1,'use_ssl','0'),(10,1,'show_admin_bar_front','true'),(11,1,'locale',''),(12,1,'wp_capabilities','a:1:{s:13:\"administrator\";b:1;}'),(13,1,'wp_user_level','10'),(14,1,'dismissed_wp_pointers',''),(15,1,'show_welcome_panel','1'),(16,1,'session_tokens','a:3:{s:64:\"c24f3cd83b0a802413edd8d99e2ec3bef3979f9b108a2f83c4a2954b043129db\";a:4:{s:10:\"expiration\";i:1694076936;s:2:\"ip\";s:12:\"172.69.87.58\";s:2:\"ua\";s:110:\"Mozilla/5.0 (X11; CrOS x86_64 14541.0.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/115.0.0.0 Safari/537.36\";s:5:\"login\";i:1693904136;}s:64:\"7914a895dd4527c6b16c022a1a6d8ad2efd28c88a8b2fd2845c2a242307d131d\";a:4:{s:10:\"expiration\";i:1694171159;s:2:\"ip\";s:12:\"172.69.87.36\";s:2:\"ua\";s:110:\"Mozilla/5.0 (X11; CrOS x86_64 14541.0.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/115.0.0.0 Safari/537.36\";s:5:\"login\";i:1693998359;}s:64:\"1cdde6df52d5913c08eba2f2f0747d067af8589d9ff08b6855cdc098c249b37b\";a:4:{s:10:\"expiration\";i:1694246717;s:2:\"ip\";s:12:\"172.69.86.94\";s:2:\"ua\";s:117:\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/116.0.0.0 Safari/537.36\";s:5:\"login\";i:1694073917;}}'),(17,1,'wp_dashboard_quick_press_last_post_id','4'),(18,1,'community-events-location','a:1:{s:2:\"ip\";s:11:\"172.69.86.0\";}'),(19,1,'hfe-popup','dismissed'),(20,1,'closedpostboxes_elementor-hf','a:1:{i:0;s:12:\"postimagediv\";}'),(21,1,'metaboxhidden_elementor-hf','a:1:{i:0;s:7:\"slugdiv\";}'),(22,1,'header-footer-elementor-rating','delayed-notice'),(23,1,'elementor_introduction','a:3:{s:27:\"ai-get-started-announcement\";b:1;s:7:\"exit_to\";b:1;s:20:\"globals_introduction\";b:1;}'),(24,1,'announcements_user_counter','1'),(25,1,'wp_user-settings','libraryContent=browse'),(26,1,'wp_user-settings-time','1693912780'),(27,1,'wp_persisted_preferences','a:2:{s:14:\"core/edit-post\";a:2:{s:26:\"isComplementaryAreaVisible\";b:1;s:12:\"welcomeGuide\";b:0;}s:9:\"_modified\";s:24:\"2023-09-05T11:20:07.790Z\";}'),(28,1,'managenav-menuscolumnshidden','a:5:{i:0;s:11:\"link-target\";i:1;s:11:\"css-classes\";i:2;s:3:\"xfn\";i:3;s:11:\"description\";i:4;s:15:\"title-attribute\";}'),(29,1,'metaboxhidden_nav-menus','a:2:{i:0;s:28:\"add-post-type-e-landing-page\";i:1;s:12:\"add-post_tag\";}');
/*!40000 ALTER TABLE `wp_usermeta` ENABLE KEYS */;
UNLOCK TABLES;

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

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

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

LOCK TABLES `wp_users` WRITE;
/*!40000 ALTER TABLE `wp_users` DISABLE KEYS */;
INSERT INTO `wp_users` VALUES (1,'sitemanager','$P$B0S/8QbMH2E7TIrzvc.WX7gJGpkK3K.','sitemanager','wp@dxpsites.com','https://sahityaonline.in8.cdn-alpha.com','2023-09-05 06:19:27','',0,'sitemanager');
/*!40000 ALTER TABLE `wp_users` ENABLE KEYS */;
UNLOCK TABLES;
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;

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

-- Dump completed on 2024-06-01 21:02:37